@charset "UTF-8";
/* 
	reset CSS
-------------------------------------------------------------------- */
html, body {
  overflow-x: hidden;
}

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

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

/* :where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
} */

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog) {
  border: none;
  background: none;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open])) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ------------------------------
  スマホ用
------------------------------ */
.u-sp-show {
  display: none;
}
@media screen and (max-width: 639px) {
  .u-sp-show {
    display: block;
  }
}

/* ------------------------------
  ripple
------------------------------ */
#ripple-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  pointer-events: auto; /* ← マウス波紋用に必要 */
  pointer-events: none;
}

#ripple-layer canvas {
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;
  pointer-events: auto !important;
}

#ripple-layer,
canvas {
  pointer-events: none !important;
}

/* ------------------------------
  base
------------------------------ */
body {
  background: #0A0A1C;
  color: #FFFFFF;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  line-height: 1.6;
  font-size: clamp(13px, 2vw, 18px);
  position: relative;
}

/* ------------------------------
  link / button
------------------------------ */
/* link */
a {
  overflow: hidden;
  outline: none;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  background: linear-gradient(90deg, #58c6ff 0%, #076ad9 40%, #ff3bef 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ------------------------------
  contents 共通　
------------------------------ */
#contents .inr {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #contents .inr {
    padding: 100px 0;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #contents .inr {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 639px) {
  #contents .inr {
    padding: 30px 20px;
  }
}

/* 共通セクションスタイル */
.section {
  width: 100%;
  position: relative;
}

/* 高さ100%が必要なセクション用 */
.section--full {
  height: 100vh;
}

/* wrapの高さ制限を解除 */
#wrap, #contents {
  height: auto;
}

/* ------------------------------
  header
------------------------------ */
#main-header {
  position: fixed;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 28, 0.9);
  z-index: 1000;
  transition: top 0.6s ease;
}
@media screen and (min-width: 1024px) {
  #main-header {
    top: -73px;
    height: 73px;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #main-header {
    top: -73px;
    height: 73px;
  }
}
@media screen and (max-width: 639px) {
  #main-header {
    top: -57px;
    height: 57px;
  }
}

@media screen and (min-width: 1024px) {
  #contents {
    padding-top: 73px;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #contents {
    padding-top: 73px;
  }
}
@media screen and (max-width: 639px) {
  #contents {
    padding-top: 57px;
  }
}

#main-header.show {
  top: 0;
}

@media screen and (min-width: 1024px) {
  #main-header.hide {
    top: -73px;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #main-header.hide {
    top: -73px;
  }
}
@media screen and (max-width: 639px) {
  #main-header.hide {
    top: -57px;
  }
}

#main-header .logo {
  position: relative;
  transition: all 0.4s ease;
}

#main-header.sticky-logo .logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 180px;
  z-index: 1100;
  padding: 10px 20px;
}

#main-header.sticky-logo ul {
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 1024px) {
  #main-header h1 {
    width: 200px;
    margin: 15px 25px;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #main-header h1 {
    width: 220px;
    margin: 15px;
  }
}
@media screen and (max-width: 639px) {
  #main-header h1 {
    width: 180px;
    margin: 7px;
  }
}

/* header nav */
#main-header ul {
  display: flex;
  justify-content: space-around;
}
@media screen and (min-width: 1024px) {
  #main-header ul {
    width: 40%;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #main-header ul {
    width: 70%;
  }
}
@media screen and (max-width: 639px) {
  #main-header ul {
    display: none;
  }
}

#main-header li a {
  display: block;
  font-size: 13px;
  transition: 0.3s;
  transform: scale(1);
}

#main-header li a:hover {
  webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* ------------------------------
  heading h2-h6
------------------------------ */
#contents .h2_main {
  text-align: center;
  background: linear-gradient(90deg, #00B6E9 0%, #74B975 40%, #E9BD00 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 1024px) {
  #contents .h2_main {
    font-size: 4rem;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #contents .h2_main {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 639px) {
  #contents .h2_main {
    font-size: 2.5rem;
  }
}

#contents .h2_sub {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #contents .h2_sub {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #contents .h2_sub {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 639px) {
  #contents .h2_sub {
    font-size: 1rem;
  }
}

/* ------------------------------
  contact
------------------------------ */
#contact {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid white;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #contact {
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #contact {
    height: auto;
  }
}

#contact-bg-video {
  opacity: 0.8;
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

#contact .inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 100px;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #contact .inr {
    padding: 100px 40px;
  }
}
@media screen and (max-width: 639px) {
  #contact .inr {
    padding: 50px 15px;
  }
}

.contact__text-box {
  flex: 1; /* 左の幅を可変に */
}

#contact h2 {
  text-align: left;
  font-size: 4rem;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #contact h2 {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 639px) {
  #contact h2 {
    font-size: 2rem;
  }
}

#contact h3 {
  text-align: left;
}
@media screen and (max-width: 639px) {
  #contact h3 {
    font-size: 0.8rem;
  }
}

.contact__arrow-svg {
  width: 160px;
  height: 60px;
  align-items: center;
  z-index: 10;
}
@media screen and (max-width: 639px) {
  .contact__arrow-svg {
    width: 100px;
    height: 60px;
    margin-top: 30px;
  }
}
.contact__arrow-svg:hover .contact__arrow::before {
  width: 60px;
}
.contact__arrow-svg:hover .contact__arrow::after {
  height: 30px;
}
.contact__arrow-svg line {
  stroke: #CCC;
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 0;
  transition: none;
}
@media screen and (max-width: 639px) {
  .contact__arrow-svg line {
    stroke-width: 2;
  }
}
.contact__arrow-svg .line-horizontal {
  stroke-dasharray: 160;
  stroke-dashoffset: 0;
}
.contact__arrow-svg .line-diagonal {
  stroke-dasharray: 70;
  stroke-dashoffset: 0;
}
.contact__arrow-svg.animate .line-horizontal {
  stroke-dashoffset: 160;
  animation: drawLineH 0.6s ease forwards;
}
.contact__arrow-svg.animate .line-diagonal {
  stroke-dashoffset: 70;
  animation: drawLineD 0.6s ease 0.6s forwards;
}

@keyframes drawLineH {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes drawLineD {
  to {
    stroke-dashoffset: 0;
  }
}
/* foot messeage */
#foot-message {
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  overflow: hidden;
  background: black;
  position: relative;
  padding: 30px;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #foot-message {
    padding: 20px;
  }
}
@media screen and (max-width: 639px) {
  #foot-message {
    padding: 20px;
  }
}

.scroll-wrap {
  display: inline-block;
  white-space: nowrap;
  animation: scrollLoop 60s linear infinite;
}

.scroll-wrap p {
  opacity: 0.8;
  display: inline-block;
  font-size: 6rem;
  color: white;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .scroll-wrap p {
    font-size: 4rem;
  }
}
@media screen and (max-width: 639px) {
  .scroll-wrap p {
    font-size: 2rem;
  }
}

@keyframes scrollLoop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ------------------------------
  footer
------------------------------ */
/* pagetop */
.back-to-top {
  position: relative;
  z-index: 10;
  width: 60px;
  height: 113px;
  right: 10px;
  bottom: 10px;
  position: fixed;
  display: none; /* 初めは非表示 */
  color: #FFFFFF;
  text-align: center;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 639px) {
  .back-to-top {
    width: 40px;
    height: 75px;
    right: 10px;
    bottom: 10px;
  }
}

.back-to-top.show {
  display: block; /* 表示 */
  opacity: 1;
}

/* footer */
footer {
  text-align: center;
}

footer ul {
  position: relative;
  z-index: 999;
  max-width: 500px;
  font-size: 0.9rem;
  margin: 50px auto;
  display: flex;
  justify-content: space-around;
}

.footer__logo {
  max-width: 30%;
  margin: clamp(40px, 10vw, 150px) auto 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #FFF;
}

.footer__message {
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: 150px;
}

address {
  padding: 30px 0;
  font-size: 1rem;
}

/* ------------------------------
  fuwat
------------------------------ */
.fuwatAnime {
  animation-fill-mode: both;
  animation-duration: 1.5s;
  animation-name: fuwatAnime;
  visibility: visible !important;
}

@keyframes fuwatAnime {
  0% {
    opacity: 0;
    transform: scale(1.05) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.fuwatAnime {
  animation: fuwatAnime 1.5s ease forwards;
  opacity: 0;
  transform: scale(1.05);
}

.fuwat {
  opacity: 0;
  transform: translateY(20px);
}

/* ------------------------------
  main visual
------------------------------ */
#main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 639px) {
  #main-visual {
    height: 80vh;
  }
}

#main-visual::after {
  content: "";
  display: block;
  height: 10vh; /* または80pxとか */
}

#main-visual {
  overflow: visible;
}

#main-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.main-visual__text-box {
  background-color: rgba(255, 255, 255, 0.1); /* 半透明の白 */
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px); /* 背景ぼかし効果（対応ブラウザ限定） */
  color: white;
  text-align: center;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .main-visual__text-box {
    padding: 5rem 4rem;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .main-visual__text-box {
    padding: 5rem 2rem;
  }
}
@media screen and (max-width: 639px) {
  .main-visual__text-box {
    padding: 5rem 0;
    width: calc(100% - 60px);
    margin: 0 auto;
  }
}

@media screen and (min-width: 1024px) {
  #main-visual h2 {
    width: 90%;
    margin: 0 auto 30px;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #main-visual h2 {
    width: 60%;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 639px) {
  #main-visual h2 {
    width: 70%;
    margin: 0 auto 30px;
  }
}

@media screen and (min-width: 1024px) {
  #main-visual p {
    font-size: 1.4rem;
    line-height: 2;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #main-visual p {
    font-size: 1.2rem;
    line-height: 2;
  }
}
@media screen and (max-width: 639px) {
  #main-visual p {
    font-size: 0.8rem;
    line-height: 2;
  }
}

/* ------------------------------
  thoughts(理念)
------------------------------ */
#thoughts {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#thoughts-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

#thoughts .inr {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

#thoughts .inr h2 {
  margin-bottom: 2rem;
}

#thoughts .inr p {
  line-height: 2;
}

#thoughts {
  text-align: center;
}

#thoughts p span {
  display: block;
}

/* ------------------------------
  business(業務内容)
------------------------------ */
/* 親リストの設定 */
.business-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5rem 6rem;
  margin-top: 8rem;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .business-list {
    grid-gap: 3rem 3rem;
    margin-top: 5rem;
  }
}
@media screen and (max-width: 639px) {
  .business-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 5rem 6rem;
    margin-top: 3rem;
    text-align: center;
  }
}

/* li 全体にずらしを適用 */
.business-list li:nth-child(odd) {
  margin-top: 0;
}

.business-list li:nth-child(even) {
  margin-top: 60px; /* 右列だけ下にずらす */
}
@media screen and (max-width: 639px) {
  .business-list li:nth-child(even) {
    margin-top: 0px;
  }
}

/* li 要素に overflow: visible を追加 */
.business-list li {
  position: relative;
  overflow: visible; /* ← これが重要 */
}

/* img-box は overflow: hidden のままでOK（角丸用） */
.business-list .img-box {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

/* 右上に縦線 */
.business-list li::before {
  content: "";
  position: absolute;
  top: -50px; /* ← 親の上に出す */
  right: 32px; /* 画像右端より少し内側に */
  width: 2px;
  height: 0;
  background: white;
  z-index: 5;
  transition: height 1s ease;
}

.business-list li.line-in::before {
  height: 100px; /* にゅっと伸びる */
}

/* テキスト */
.business-list h3 {
  font-size: 2.5rem;
  margin-top: 1.2rem;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .business-list h3 {
    font-size: 1.5rem;
    margin-top: 0.8rem;
  }
}
@media screen and (max-width: 639px) {
  .business-list h3 {
    font-size: 2rem;
  }
}

.business-list p {
  color: #ccc;
  margin-top: 1rem;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .business-list p {
    margin-top: 0.3rem;
  }
}

/* 初期状態（非表示 & 位置ずらし） */
.business-list li {
  opacity: 0;
  transform: translateX(50px); /* 右からスライド */
  transition: all 0.8s ease;
}

/* 左側の要素 */
.business-list li.slide-in-left {
  transform: translateX(-50px); /* 左からスライド */
}

/* 表示時（中央に & 表示） */
.business-list li.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* ------------------------------
  strengths(特徴・強み)
------------------------------ */
#strengths {
  height: 300vh;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #strengths {
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #strengths {
    height: auto;
  }
}

.strengths-list {
  height: 100vh;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .strengths-list {
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  .strengths-list {
    height: auto;
  }
}

.strengths-container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 3s ease;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .strengths-container {
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  .strengths-container {
    height: auto;
  }
}

.strengths__tex-box {
  text-align: center;
  width: 50%;
  height: 100%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .strengths__tex-box {
    width: 100%;
    padding: 5rem;
  }
}
@media screen and (max-width: 639px) {
  .strengths__tex-box {
    width: 100%;
    padding: 5rem 0;
  }
}

.strengths-1 {
  background: #141433;
  color: white;
}

.strengths-1 .strengths__img-box {
  background-image: url("../images/top/strengths-image-01.jpg");
}

.strengths-2 {
  background: #31557C;
  color: white;
}

.strengths-2 .strengths__img-box {
  background-image: url("../images/top/strengths-image-02.jpg");
}

.strengths-3 {
  background: #D1DCE5;
  color: black;
}

.strengths-3 .strengths__img-box {
  background-image: url("../images/top/strengths-image-03.jpg");
}

.strengths__img-box {
  width: 50%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  background-attachment: fixed;
  background-size: cover;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .strengths__img-box {
    width: 100%;
    height: 400px;
  }
}
@media screen and (max-width: 639px) {
  .strengths__img-box {
    width: 100%;
    height: auto;
    background-position: center center;
  }
}

#strengths .h2_main {
  font-size: 3rem;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #strengths .h2_main {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  #strengths .h2_main {
    font-size: 2rem;
  }
}

#strengths h3 {
  font-size: 1.5rem;
  margin: 50px auto;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #strengths h3 {
    font-size: 1.3rem;
    margin: 30px auto;
  }
}
@media screen and (max-width: 639px) {
  #strengths h3 {
    font-size: 1rem;
    margin: 30px auto;
  }
}

/* ------------------------------
  company
------------------------------ */
#conpany {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#conpany-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

#company .inr {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 639px) {
  #company .inr {
    width: 100%;
  }
}

.company__text-box {
  width: 50%;
  height: 100%;
  box-sizing: border-box;
  padding-right: 4rem;
}
@media screen and (max-width: 639px) {
  .company__text-box {
    width: 100%;
    padding-right: 0;
  }
}

.company__img-box {
  background-image: url("../images/top/company-image.jpg");
  width: 50%;
  height: 400px;
  overflow: hidden;
  box-sizing: border-box;
  background-size: cover;
}
@media screen and (max-width: 639px) {
  .company__img-box {
    width: 100%;
    height: 230px;
  }
}

#company dl {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #A7A7B7;
  margin-top: 30px;
  font-size: 0.8rem;
}
@media screen and (max-width: 639px) {
  #company dl {
    width: 100%;
    margin-bottom: 30px;
  }
}

#company dt, #company dd {
  padding: 15px 0;
  border-bottom: 1px solid #A7A7B7;
}

#company dt {
  width: 20%;
}

#company dd {
  width: 80%;
}