:root {
  --color-main: #006AAA;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-border: #e0e0e0;
  --th-background: #f9f9f9;
  --th-fontColor: #111;
  --th-fontSize: 1.7rem;
  --td-background: #f9f9f9;
  --td-fontColor: #222;
  --td-fontSize: 1.6rem;
}

.font56 {
  --fontsize: 5.6rem;
  font-size: var(--fontsize);
}

.font48 {
  --fontsize: 4.8rem;
  font-size: var(--fontsize);
}

.font46 {
  --fontsize: 4.6rem;
  font-size: var(--fontsize);
}

.font44 {
  --fontsize: 4.4rem;
  font-size: var(--fontsize);
}

.font40 {
  --fontsize: 4.0rem;
  font-size: var(--fontsize);
}

.font32 {
  --fontsize: 3.2rem;
  font-size: var(--fontsize);
}

main > .paddingBox {
  padding: 100px 0;
}
main .gridBox {
  gap: 40px 20px;
}
main .visual .box {
  position: relative;
}
main .visual .contents,
main .visual .flexBox {
  width: 100%;
  height: 100%;
}
main .visual .contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main .visual .contents span {
  color: var(--color-white);
  font-weight: 700;
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
}
main .visual .flexBox {
  justify-content: space-between;
  display: flex;
  flex-direction: row;
  align-items: center;
}
main .visual .flexBox button {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .visual .flexBox button::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background: var(--color-white);
  border-radius: 50%;
  transition: all 0.6s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main .visual .flexBox button img {
  width: 22px;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
  filter: brightness(0) invert(1);
}
main .visual .flexBox button:hover::before {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
}
main .visual .flexBox button:hover img {
  filter: inherit;
}
main .visual .title h2 {
  color: var(--color-white);
  font-weight: 700;
}
main .visual .title h2 em {
  font-size: 0.73em;
  font-weight: 400;
}
main .visual .title .symbol {
  width: 30px;
  height: 30px;
  margin: 40px auto 0;
}
main .news {
  position: relative;
}
main .news::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 100px);
  background: linear-gradient(180deg, #f5f5f5 80%, #fff);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
main .news .itemWrap {
  max-width: 1500px;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  margin: 0 auto;
}
main .news .more {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  margin: -60px 0 10px auto;
}
main .news .more span {
  display: inline-block;
  background: var(--color-black);
  transition: all 0.4s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main .news .more span:first-child {
  width: 100%;
  height: 4px;
}
main .news .more span:last-child {
  width: 4px;
  height: 100%;
}
main .news .more:hover span {
  background: var(--color-main);
}
main .news .itemBox,
main .news .notice {
  background: var(--color-white);
  padding: 0 40px;
}
main .news .item a,
main .news .notice a {
  width: 100%;
  gap: 0 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
main .news .item a span,
main .news .notice a span {
  display: inline-block;
  width: 140px;
  flex-shrink: 0;
}
main .news .item a h6,
main .news .notice a h6 {
  color: #333;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  transition: all 0.4s;
  /* 
  height: 1.3em;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;

   display: -webkit-box;
  
  max-width: calc(100% - 180px);
  display: inline-block;
  */
   text-underline-position: under;
}
main .news .item a h6::after,
main .news .notice a h6::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-main);
  position: absolute;
  left: 0;
  bottom: -1px;
  opacity: 0;
  transition: all 0.4s;

  display: none;
}
main .news .item a:hover h6,
main .news .notice a:hover h6 {
  color: var(--color-main);
  font-weight: 700;
  text-decoration: underline;
}
main .news .item a:hover h6::after,
main .news .notice a:hover h6::after {
  opacity: 1;
}
main .news .item {
  padding: 20px 0;
  position: relative;
}
main .news .item:not(:last-child)::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: url("/img/main/dot_news.png") repeat-x center/6px 2px;
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
}
main .news .item span {
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
}
main .news .item p {
  max-height: 2.6em;
  color: #666;
  font-size: 1.5rem;
  margin: 10px 0 0;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
main .news .text {
  width: 100%;
}
main .news .notice {
  height: 80px;
}
main .news .notice * {
  font-size: 1.6rem;
}
main .news .notice a {
  height: 100%;
}
main .news .notice span {
  color: var(--color-main);
  font-weight: 700;
}
main .business .gridBox .img {
  padding: 36.4965% 0;
}
main .online {
  background: url("/img/main/bg_online.jpg") no-repeat center/cover;
  margin: 100px 0;
}
main .online .box {
  padding: 55px 0;
}
main .online .logo {
  width: 126px;
}
main .online .logo * {
  fill: var(--color-white);
}
main .online .logo .symbolB {
  fill: #ccc;
}
main .online dl {
  margin: 10px 0 30px;
}
main .online dl * {
  color: var(--color-white);
}
main .online dl dt {
  font-weight: 700;
  margin: 0 0 20px;
}
main .online dl dd {
  font-size: 2rem;
  font-weight: 500;
}
main .company .gridBox .img {
  padding: 49.505% 0;
}