/* ========================================
   variables.css — デザイントークン
   ======================================== */
:root {
  --color-primary: #1976d2;
  --color-primary-dark: #0d47a1;
  --color-primary-accent: #1976d2;
  --color-primary-light: #42a5f5;
  --color-btn-career: #1976d2;
  --gradient-blue: linear-gradient(to bottom, #004a99 0%, #00aaff 100%);
  --gradient-blue-horizontal: linear-gradient(to right, #0044b2 0%, #00aaff 100%);
  --color-text: #222;
  --color-text-muted: #333;
  --color-text-light: #555;
  --color-text-white: #fff;
  --color-border: #e0e0e0;
  --color-border-light: #e0e9f5;
  --color-bg-gray: #f5f8fc;
  --color-bg-white: #fff;
  --header-height: 62px;
  --content-max-width: 1280px;
  --content-max-width-wide: 1440px;
  --font-family-base: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --transition-fast: 0.2s;
  --transition-normal: 0.35s;
  --transition-slow: 0.5s;
  --shadow-sm: 0 1px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   shared.css — 共通コンポーネント
   ======================================== */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-family-base);
  background: var(--color-bg-white);
  color: #111;
}
a { color: inherit; text-decoration: none; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  height: var(--header-height);
  display: flex;
  align-items: stretch;
  transition: background var(--transition-normal) ease, box-shadow var(--transition-normal) ease;
}
.header--scrolled {
  background: linear-gradient(to right, #fff 0%, #fff 55%, rgba(126, 202, 255, 0.15) 75%, rgba(25, 118, 210, 0.25) 100%);
  box-shadow: var(--shadow-sm);
}
.header__inner { display: flex; align-items: center; flex: 1; padding: 0 36px; }
.header__logo {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: auto;
  transition: color var(--transition-normal) ease;
  display: flex;
  align-items: center;
}
.header__logo img { height: 46px; width: auto; max-width: 216px; display: block; object-fit: contain; }
.header--scrolled .header__logo { color: var(--color-text); }
.header__nav { display: flex; align-items: center; gap: 32px; }
.header__nav a { font-size: 13px; color: #fff; font-weight: 500; white-space: nowrap; transition: color var(--transition-normal) ease; }
.header__nav a:hover { opacity: 0.75; }
.header--scrolled .header__nav a { color: var(--color-text-muted); }
.header--scrolled .header__nav a:hover { opacity: 1; color: var(--color-primary-accent); }
.header__tabs { display: flex; align-items: stretch; flex-shrink: 0; height: 100%; margin-left: 32px; }
.header__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  transition: filter var(--transition-fast);
  letter-spacing: 0.03em;
}
.header__tab:hover { filter: brightness(1.12); }
.header__tab--recruit { background: var(--color-primary-accent); }
.header__tab--career { background: var(--color-primary-dark); }
@media (max-width: 768px) { .header__nav { display: none; } }

.fv .pickup, .hero .pickup {
  position: absolute;
  bottom: 24px;
  right: 60px;
  z-index: 10;
  background: #fff;
  display: flex;
  align-items: center;
  width: 560px;
  min-height: 62px;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08), 0 2px 12px rgba(0, 0, 0, 0.08);
}
.fv .pickup__label, .hero .pickup__label {
  flex-shrink: 0;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-right: 2px solid var(--color-border-light);
  height: 100%;
  display: flex;
  align-items: center;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #004a99;
}
.fv .pickup__body, .hero .pickup__body { flex: 1; padding: 10px 16px; overflow: hidden; }
.fv .pickup__date, .hero .pickup__date { font-size: 10.5px; color: #888; margin-bottom: 2px; letter-spacing: 0.05em; }
.fv .pickup__title, .hero .pickup__title { font-size: 12.5px; color: #1565c0; text-decoration: underline; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; cursor: pointer; display: block; }
.fv .pickup__title:hover, .hero .pickup__title:hover { color: var(--color-primary-dark); }
.fv .pickup__arrows, .hero .pickup__arrows { flex-shrink: 0; display: flex; gap: 2px; padding: 0 14px; }
.fv .pickup__arrow, .hero .pickup__arrow {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  transition: background 0.15s, color 0.15s;
  user-select: none;
}
.fv .pickup__arrow:hover, .hero .pickup__arrow:hover { background: var(--color-primary-accent); color: #fff; border-color: var(--color-primary-accent); }
@media (max-width: 768px) {
  .fv .pickup, .hero .pickup { width: calc(100% - 24px); right: 12px; left: 12px; flex-wrap: wrap; min-height: auto; padding: 12px 0; }
  .fv .pickup__label, .hero .pickup__label { padding: 0 12px; font-size: 10px; width: 100%; border-right: none; border-bottom: 1px solid var(--color-border-light); }
  .fv .pickup__body, .hero .pickup__body { padding: 8px 12px; width: 100%; }
  .fv .pickup__arrows, .hero .pickup__arrows { padding: 0 12px; margin: 0 auto; }
  .fv .pickup__title, .hero .pickup__title { white-space: normal; }
}

.btn--gradient-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 50px;
  background: transparent;
  text-decoration: none;
  position: relative;
  z-index: 1;
  color: #004a99;
  transition: color 0.3s ease;
  border: none;
}
.btn--gradient-outline::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -2; background: var(--gradient-blue); }
.btn--gradient-outline::after { content: ""; position: absolute; top: 3px; right: 3px; bottom: 3px; left: 3px; z-index: -1; background: #fff; transition: opacity 0.3s; }
.btn--gradient-outline span { font-family: var(--font-en); font-weight: 700; font-size: 14px; letter-spacing: 0.05em; color: inherit; }
.btn--gradient-outline:hover { color: #fff; }
.btn--gradient-outline:hover::after { opacity: 0; }
.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 50px;
  position: relative;
  color: var(--color-btn-career);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  background: transparent;
  border: none;
  transition: color 0.3s;
  cursor: pointer;
  z-index: 1;
}
.btn--outline::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -2; background: linear-gradient(to bottom, var(--color-btn-career) 0%, #00aaff 100%); }
.btn--outline::after { content: ""; position: absolute; top: 3px; right: 3px; bottom: 3px; left: 3px; z-index: -1; background: #fff; transition: opacity 0.3s; }
.btn--outline:hover { background-color: transparent; color: #fff; }
.btn--outline:hover::after { opacity: 0; }

.footer { width: 100%; background-color: #061e31; color: #fff; padding: 80px 4vw 20px; font-size: 14px; }
.footer__inner { max-width: var(--content-max-width); margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 60px; margin-bottom: 30px; }
.footer__info { width: 40%; }
.footer__logo { font-size: 32px; font-weight: 700; font-family: var(--font-en); margin-bottom: 15px; letter-spacing: 0.05em; }
.footer__logo img { height: 58px; width: auto; max-width: 288px; display: block; object-fit: contain; }
.footer__company-name { font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer__address, .footer__contact { line-height: 1.8; opacity: 0.8; }
.footer__contact { margin-top: 15px; }
.footer__sitemap { width: 50%; display: flex; justify-content: space-between; }
.footer__nav-col { width: 30%; }
.footer__nav-list { list-style: none; margin: 0; padding: 0; }
.footer__nav-list li { margin-bottom: 15px; }
.footer__nav-list a { font-weight: 500; opacity: 0.9; transition: opacity 0.3s; }
.footer__nav-list a:hover { opacity: 0.6; }
.footer__copyright { text-align: center; opacity: 0.5; font-size: 12px; font-family: var(--font-en); letter-spacing: 0.05em; }
@media (max-width: 768px) {
  .footer { padding-top: 60px; }
  .footer__inner { flex-direction: column; gap: 40px; }
  .footer__info { width: 100%; }
  .footer__sitemap { width: 100%; flex-direction: column; gap: 20px; }
  .footer__nav-col { width: 100%; }
}

/* ========================================
   index.css — TOPページ固有スタイル
   ======================================== */
.fv {
  min-height: calc(100vh - var(--header-height));
  padding-top: var(--header-height);
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.fv__img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; z-index: 0; }
.fv__inner { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 60px 80px 40px; max-width: var(--content-max-width-wide); position: relative; z-index: 2; }
.fv__headline { margin: 0; font-size: clamp(36px, 5.5vw, 64px); font-weight: 700; color: #111; letter-spacing: 0.05em; line-height: 1.35; }
.fv__line { display: block; }
.fv__subtitle { margin: 20px 0 0; font-size: 13px; font-weight: 400; color: var(--color-text-muted); letter-spacing: 0.15em; text-transform: uppercase; }
@media (max-width: 768px) {
  .fv__inner { padding: 40px 24px 30px; }
  .fv__headline { font-size: 32px; }
}

.message { width: 100%; padding: 120px 0; background-color: #fff; overflow: hidden; }
.message__inner { max-width: var(--content-max-width); margin: 0 auto; padding: 0 4vw; display: flex; justify-content: space-between; align-items: center; position: relative; }
.message__text-area { width: 45%; padding-right: 40px; z-index: 2; }
.message__text { font-size: 16px; line-height: 2.2; color: var(--color-text); margin-bottom: 40px; letter-spacing: 0.05em; font-feature-settings: "palt"; }
.message__text:last-child { margin-bottom: 0; }
.message__image-area { width: 50%; height: 600px; position: relative; }
.collage { position: relative; width: 100%; height: 100%; }
.collage__item { position: absolute; overflow: hidden; margin: 0; box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1); }
.collage__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.collage__item--01 { width: 60%; height: 55%; top: 0; right: 0; z-index: 1; }
.collage__item--02 { width: 55%; height: 45%; top: 25%; left: 0; z-index: 2; }
.collage__item--03 { width: 50%; height: 40%; bottom: 0; right: 10%; z-index: 3; }
.collage:hover .collage__item img { transform: scale(1.05); }
@media (max-width: 768px) {
  .message { padding: 80px 0; }
  .message__inner { flex-direction: column-reverse; gap: 60px; padding: 0 20px; }
  .message__text-area, .message__image-area { width: 100%; padding: 0; }
  .message__image-area { height: 350px; }
  .collage__item--01 { width: 65%; right: 0; }
  .collage__item--02 { width: 60%; top: 15%; left: -10px; }
  .collage__item--03 { width: 55%; right: 0; bottom: 0; }
  .message__text { font-size: 15px; text-align: justify; }
}

.business { width: 100%; background-color: #fff; overflow: hidden; }
.business__inner { width: 100%; max-width: 100%; padding: 0; display: flex; align-items: stretch; }
.business__image-area { width: 50%; position: relative; flex-shrink: 0; }
.business__image-area img { width: 100%; height: 100%; object-fit: cover; display: block; }
.business__content-wrapper { width: 50%; display: flex; justify-content: center; align-items: center; background-color: #fff; }
.business__content-area { width: 100%; max-width: 640px; padding: 80px 4vw 80px 60px; }
.business__block { padding: 40px 0 24px; border-bottom: 4px solid var(--color-border); }
.business__block:first-child { padding-top: 0; }
.business__block:last-child { padding-bottom: 24px; }
.business__title { font-size: 32px; font-weight: 700; margin-bottom: 20px; line-height: 1.4; font-feature-settings: "palt"; }
.business__subtitle { font-size: 14px; font-weight: 700; margin-bottom: 15px; color: var(--color-text); }
.business__desc { font-size: 14px; line-height: 1.8; margin-bottom: 30px; color: var(--color-text-light); }
.business__btn-wrapper { text-align: right; }
@media (max-width: 768px) {
  .business__inner { flex-direction: column; }
  .business__image-area { width: 100%; height: 300px; }
  .business__content-wrapper { width: 100%; }
  .business__content-area { padding: 60px 4vw; }
  .business__title { font-size: 24px; }
  .business__btn-wrapper { text-align: center; }
  .btn--gradient-outline { width: 100%; max-width: 240px; margin: 0 auto; }
}

.column { width: 100%; padding: 100px 0; background-color: #fff; text-align: center; overflow: hidden; }
.column__header { margin-bottom: 60px; }
.column__label { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-en); font-weight: 700; font-size: 19px; letter-spacing: 0.1em; margin-bottom: 10px; background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: #004a99; }
.icon-feather { width: 24px; height: 24px; fill: currentColor; }
.column__title { font-size: 38px; font-weight: 700; color: var(--color-text); letter-spacing: 0.05em; }
.column__slider { display: flex; justify-content: center; align-items: center; gap: 30px; padding: 20px 0; width: 100%; margin-bottom: 60px; flex-wrap: nowrap; }
.column__card { position: relative; flex-shrink: 0; width: 400px; height: 400px; background-color: #000; overflow: hidden; transition: all 0.5s ease; }
.column__card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: transform 0.5s; }
.column__card--center { width: 500px; height: 500px; z-index: 2; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); }
.column__card--side { opacity: 0.8; }
.column__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.3); display: flex; flex-direction: column; justify-content: center; align-items: center; }
.column__sample-text { font-family: var(--font-en); font-size: 24px; color: rgba(255, 255, 255, 0.8); letter-spacing: 0.1em; font-weight: 500; }
.column__card-title { position: absolute; bottom: 30px; left: 30px; width: calc(100% - 60px); text-align: left; color: #fff; font-size: 14px; line-height: 1.6; font-weight: 500; }
.column__card:hover img { transform: scale(1.1); }
@media (max-width: 768px) {
  .column { padding: 60px 0; }
  .column__slider { gap: 15px; }
  .column__card { width: 60vw; height: 60vw; }
  .column__card--center { width: 80vw; height: 80vw; }
  .column__title { font-size: 29px; }
}

.recruit { width: 100%; padding: 80px 4vw 120px; background-color: #fff; }
.recruit__inner { max-width: var(--content-max-width); margin: 0 auto; }
.recruit__box { position: relative; background: linear-gradient(135deg, #0070cc 0%, #0056b3 100%); padding: 80px 60px; display: flex; justify-content: space-between; align-items: center; color: #fff; }
.recruit__content { width: 55%; }
.recruit__label { display: flex; align-items: center; gap: 10px; font-family: var(--font-en); font-weight: 700; font-size: 18px; letter-spacing: 0.1em; margin-bottom: 15px; }
.icon-suitcase { width: 20px; height: 20px; fill: #fff; }
.recruit__title { font-size: 40px; font-weight: 700; margin-bottom: 50px; letter-spacing: 0.05em; }
.recruit__sub { font-size: 22px; font-weight: 700; margin-bottom: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.3); padding-bottom: 10px; display: inline-block; }
.recruit__desc { font-size: 14px; line-height: 1.8; opacity: 0.9; }
.recruit__links { width: 40%; display: flex; gap: 20px; position: relative; }
.recruit__card { display: flex; align-items: center; justify-content: center; width: 240px; height: 320px; background-color: #fff; color: var(--color-btn-career); font-weight: 700; font-size: 16px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }
.recruit__card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); }
.recruit__card--newgrad { margin-top: 50px; }
.recruit__card--career { margin-top: -50px; }
@media (max-width: 768px) {
  .recruit { padding: 60px 4vw; }
  .recruit__box { flex-direction: column; padding: 40px 20px; text-align: center; }
  .recruit__content { width: 100%; margin-bottom: 40px; }
  .recruit__label { justify-content: center; }
  .recruit__title { font-size: 32px; margin-bottom: 30px; }
  .recruit__links { width: 100%; flex-direction: column; gap: 15px; }
  .recruit__card { width: 100%; height: 80px; margin: 0 !important; }
}

.news { width: 100%; padding: 100px 0; background-color: #fff; text-align: center; overflow: hidden; }
.news__header { margin-bottom: 50px; }
.news__label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-en); font-weight: 700; font-size: 19px; letter-spacing: 0.1em; margin-bottom: 10px; background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: #004a99; }
.icon-star { width: 20px; height: 20px; fill: currentColor; }
.news__title { font-size: 38px; font-weight: 700; color: var(--color-text); letter-spacing: 0.05em; }
.news__carousel-wrapper { position: relative; max-width: 1360px; margin: 0 auto; padding: 0 60px; }
.news__slider { display: flex; gap: 30px; padding: 10px 0 50px; width: 100%; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; }
.news__slider::-webkit-scrollbar { display: none; }
.news__card { flex-shrink: 0; width: 320px; text-align: left; transition: transform 0.3s; cursor: pointer; scroll-snap-align: start; }
.news__card:hover { transform: translateY(-5px); }
.news__img { width: 100%; height: 200px; position: relative; overflow: hidden; margin-bottom: 15px; }
.news__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news__card:hover .news__img img { transform: scale(1.1); }
.news__img-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: rgba(255, 255, 255, 0.8); font-family: var(--font-en); font-size: 24px; letter-spacing: 0.1em; }
.news__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.news__tag { background-color: var(--color-btn-career); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px; font-family: var(--font-en); }
.news__date { font-family: var(--font-en); color: var(--color-btn-career); font-weight: 700; font-size: 14px; }
.news__card-title { font-size: 15px; line-height: 1.6; font-weight: 500; color: var(--color-text); }
.carousel-arrow { position: absolute; top: 40%; transform: translateY(-50%); width: 50px; height: 50px; border: 1px solid #ddd; border-radius: 50%; background-color: #fff; cursor: pointer; z-index: 10; transition: all 0.3s; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); }
.carousel-arrow:hover { background-color: var(--color-btn-career); border-color: var(--color-btn-career); }
.carousel-arrow::after { content: ""; display: block; width: 10px; height: 10px; border-top: 2px solid #333; border-right: 2px solid #333; transition: border-color 0.3s; }
.carousel-arrow:hover::after { border-color: #fff; }
.carousel-arrow--prev { left: 0; }
.carousel-arrow--prev::after { transform: rotate(-135deg); margin-left: 4px; }
.carousel-arrow--next { right: 0; }
.carousel-arrow--next::after { transform: rotate(45deg); margin-right: 4px; }
.news__btn { margin-top: 20px; }
@media (max-width: 768px) {
  .news { padding: 60px 0; }
  .news__carousel-wrapper { padding: 0; max-width: 100%; }
  .news__slider { padding-left: calc(50% - 130px); padding-right: calc(50% - 130px); gap: 20px; scroll-snap-type: x mandatory; }
  .news__card { width: 260px; scroll-snap-align: center; }
  .news__title { font-size: 29px; }
  .carousel-arrow { display: none; }
}

.entry { width: 100%; padding: 100px 4vw; background: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?q=80&w=2070&auto=format&fit=crop") no-repeat center / cover; text-align: center; color: #fff; position: relative; }
.entry::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 50, 100, 0.4); z-index: 1; }
.entry__inner { position: relative; z-index: 2; max-width: var(--content-max-width); margin: 0 auto; }
.entry__title { font-family: var(--font-en); font-size: 40px; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 60px; }
.entry__links { display: flex; justify-content: center; gap: 30px; }
.entry__card { display: flex; flex-direction: column; justify-content: center; align-items: center; width: 48%; max-width: 600px; height: 180px; background-color: #fff; border-radius: 6px; padding: 0 40px; text-decoration: none; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.entry__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.entry__label { font-family: var(--font-en); font-weight: 700; font-size: 14px; letter-spacing: 0.1em; margin-bottom: 15px; background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: #004a99; display: inline-block; }
.entry__card-title { font-size: 32px; font-weight: 700; letter-spacing: 0.05em; background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: #004a99; display: inline-block; }
.entry__arrow { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; fill: #004a99; transition: transform 0.3s; }
.entry__card:hover .entry__arrow { transform: translate(5px, -50%); }
@media (max-width: 768px) {
  .entry { padding: 60px 4vw; }
  .entry__title { margin-bottom: 40px; font-size: 32px; }
  .entry__links { flex-direction: column; align-items: center; gap: 20px; }
  .entry__card { width: 100%; max-width: none; height: 140px; padding: 0 20px; }
  .entry__card-title { font-size: 24px; }
  .entry__arrow { right: 20px; width: 20px; height: 20px; }
}
