* {
  box-sizing: border-box;
  font-family: 'SourceHanSansSC', Arial, sans-serif;
}
@font-face {
  font-family: 'SourceHanSansSC Heavy';
  src: url('../plugin/font/SourceHanSansSC-Heavy.otf');
  font-weight: bold;
}
@font-face {
  font-family: 'SourceHanSansSC';
  src: url('../plugin/font/SourceHanSansSC-Regular.otf');
  font-weight: normal;
}
html,
body {
  width: 100%;
  height: 100%;
}
html {
  font-size: 16px;
}
@media screen and (max-width: 800px) {
  html {
    font-size: 12px;
  }
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 21px;
  }
}
body {
  background: url("../img/background.png") center 0 / cover;
}
.dialog.video {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.dialog.video > .background {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.dialog.video > .body {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #000000;
  transform: translate(-50%, -50%);
}
.dialog.video > .body .close {
  position: absolute;
  top: -40px;
  right: -50px;
  background: none;
  border: none;
  outline: none;
}
.dialog.video > .body .close img {
  width: 20px;
}
.dialog.video > .body #video {
  width: 75vw;
  height: 75vh;
}
@media screen and (max-width: 800px) {
  .dialog.video > .body .close {
    top: 70vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .dialog.video > .body #video {
    width: 96vw;
    height: 50vw;
  }
}
.container {
  margin: 2.5rem auto 0 auto;
  width: calc(100% - 100px);
  max-width: 1120px;
}
.container > .title {
  position: relative;
  left: -30px;
  margin: 0 0 1.875rem 0;
  padding-left: 25px;
  color: #4e4d4d;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.2;
  border-left: 5px solid #e60012;
}
.container > .title p {
  margin: 0;
}
.container > .title p:nth-child(2) {
  margin-top: 1.875rem;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.8;
}
.container.full {
  margin: 0;
  width: 100%;
  max-width: 100%;
}
.container.full > .content {
  margin: 0 auto;
  width: calc(100% - 100px);
  max-width: 1120px;
}
@media screen and (max-width: 800px) {
  .container.full > .content {
    width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .container.full > .content {
    max-width: 1400px;
  }
}
@media screen and (max-width: 800px) {
  .container {
    width: 100%;
    max-width: unset;
    padding: 0 1.25rem;
  }
  .container > .title {
    position: static;
    padding: 0;
    border: none;
  }
  .container > div.title p:nth-child(1) {
    display: none;
  }
  .container > div.title p:nth-child(2) {
    margin: 0;
    font-size: 1.4rem;
  }
  .container > p.title {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
}
.primary-button {
  padding: 0.625rem 2.8125rem;
  font-size: 0.875rem;
  color: #ffffff;
  background: #e60012;
  border: none;
  border-radius: 1.125rem;
  cursor: pointer;
  outline: none;
  transition: 200ms;
  text-decoration: none;
}
.primary-button:hover {
  filter: brightness(1.2);
}
@media screen and (max-width: 800px) {
  .primary-button {
    padding: 1rem 3rem;
    font-size: 1.4rem;
    border-radius: 2rem;
  }
}
.play-button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 200ms;
}
.play-button img {
  width: 5rem;
}
.play-button:focus,
.play-button:hover {
  filter: brightness(1.1);
}
.news {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.news > a {
  display: block;
  position: relative;
  margin-bottom: 7rem;
  padding-bottom: 20%;
  width: 32%;
  background: no-repeat center 0 / cover;
  transition: 200ms;
}
.news > a:nth-child(3n),
.news > a:nth-child(3n-1) {
  margin-left: 2%;
}
.news > a div {
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateY(100%);
}
.news > a div p {
  margin: 0;
  color: #4e4d4d;
  line-height: 1.6;
}
.news > a div p.title {
  padding: 0.625rem 0;
}
.news > a div p.date {
  color: #898989;
}
@keyframes progressing {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes black {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  100% {
    background: rgba(0, 0, 0, 0.32);
  }
}
.news > a:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: black 200ms forwards;
}
.news > a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  background: #e60012;
  animation: progressing 5s forwards;
}
.news > a:hover p {
  color: #e60012;
}
@media screen and (max-width: 800px) {
  .news {
    display: block;
  }
  .news > a {
    position: static;
    margin: 0;
    padding: 1.8rem 0 1.8rem calc(40% + 1rem);
    width: 100%;
    border-top: 2px solid #bfbfbf;
    background-position: center left;
    background-size: 40% 90px;
    text-decoration: none;
  }
  .news > a:nth-child(3n),
  .news > a:nth-child(3n-1) {
    margin-left: 0;
  }
  .news > a div {
    position: static;
    transform: none;
  }
  .news > a div p.title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 0.625rem;
    padding: 0;
    height: 4.48rem;
    font-size: 1.4rem;
    font-weight: bold;
    overflow: hidden;
  }
  .news > a div p.date {
    font-size: 1.2rem;
  }
  .news > a:hover::before {
    display: none;
  }
  .news > a:hover::after {
    display: none;
  }
}
body {
  position: relative;
  overflow-y: scroll;
}
.container {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 800px) {
  .container[container="1"] {
    display: none;
  }
}
.container[container="2"] {
  height: 500px;
  background: url("../img/service/background.png") no-repeat center 0 / cover;
}
.container[container="2"] .content {
  position: relative;
  height: 100%;
}
.container[container="2"] .content .desc {
  position: absolute;
  top: 50%;
  width: 70%;
  transform: translateY(-50%);
}
.container[container="2"] .content .desc p {
  margin: 5px 0;
  color: #494343;
  line-height: 1.8;
}
.container[container="2"] .content .desc p.title {
  position: relative;
  margin-bottom: 3.75rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}
.container[container="2"] .content .desc p.title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2.125rem;
  width: 4.375rem;
  height: 4px;
  background: #C1272D;
}
@media screen and (max-width: 800px) {
  .container[container="2"] {
    height: auto;
	background: none;
  }
  .container[container="2"] .content {
    width: 86%;
  }
  .container[container="2"] .content .desc {
    position: static;
    margin-top: 1rem;
    width: 100%;
    transform: none;
  }
  .container[container="2"] .content .desc p {
    color: #444444;
    font-size: 1.4rem;
  }
  .container[container="2"] .content .desc p.title {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .container[container="2"] .content .desc p.title::before {
    background: #e60012;
  }
}
@media screen and (min-width: 1440px) {
  .container[container="2"] {
    height: 700px;
  }
}
.container[container="3"] {
  padding: 1.875rem;
  background: #ffffff;
}
.container[container="3"] .menu {
  display: flex;
  justify-content: flex-start;
  padding: 0;
  background: #ffffff;
}
.container[container="3"] .menu > ul {
  margin-right: 3.125rem;
  cursor: pointer;
}
.container[container="3"] .menu > ul img {
  /*position: relative;*/
  /*left: 50%;*/
  /*width: 3.125rem;*/
  height: 3.125rem;
  /*transform: translateX(-50%);*/
  /*transition: 200ms;*/
  /*object-fit: cover;*/
  /*filter: grayscale(1);*/
}
.container[container="3"] .menu > ul p {
  margin: 0.625rem 0 0 0;
  color: #4e4d4d;
  text-align: center;
}
.container[container="3"] .menu > ul .nav-link.active img {
  filter: none;
}
.container[container="3"] .menu > ul .nav-link.active p {
  color: #e60012;
  font-weight: bold;
}
.container[container="3"] .contents {
  position: relative;
  margin: 0 0 2.5rem 0;
}
.container[container="3"] .contents p {
  position: relative;
  top: -3.5rem;
  margin: 0;
  color: #4e4d4d;
  line-height: 1.8;
}
.container[container="3"] .contents p.subtitle {
  position: relative;
  margin-bottom: 2rem;
  /*padding-top: 4rem;*/
  font-size: 1rem;
  line-height: 2rem;
  font-weight: bold;
}
.container[container="3"] .contents p.subtitle img {
  margin-right: 20px;
  height: 2rem;
  vertical-align: text-bottom;
}
.container[container="3"] .contents p.subtitle::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 60%;
  height: 2px;
  background: #e60012;
}
.container[container="3"] .contents p.sub-content-title {
  position: relative;
  margin: 1.875rem 0 0.3125rem 1rem;
  font-weight: bold;
  list-style: circle;
}
.container[container="3"] .contents p.sub-content-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -0.75rem;
  width: 0.3125rem;
  height: 0.3125rem;
  background: #4e4d4d;
  border-radius: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .container[container="3"] {
    background: none;
  }
  .container[container="3"] > div {
    background: #ffffff;
  }
  .container[container="3"] .menu {
    justify-content: space-around;
    padding: 0.8rem 0;
  }
  .container[container="3"] .menu > ul {
    margin: 0;
  }
  .container[container="3"] .menu > ul a {
    padding: 0.5rem;
  }
  .container[container="3"] .menu > ul img {
    width: 2.5rem;
    height: auto;
  }
  .container[container="3"] .menu > ul p {
    font-size: 1rem;
  }
  .container[container="3"] .contents {
    margin: 0;
    padding: 0  1rem 2.5rem 1rem;
  }
  .container[container="3"] .contents > div p {
    font-size: 1.4rem;
  }
  .container[container="3"] .contents > div p.subtitle {
    font-size: 1.8rem;
  }
}
