/* Sub Common */
.sec-title {
  position: relative;
  padding-left:50px;
}

.sec-title i {
  display: block;
  position: absolute;
  top:50%;
  left:0;
  transform: translateY(-50%);
  width: 43px;
  height:29px;
  background: url('../img/icon/ico_star.png') no-repeat center;
}

.sec-title h5 {
  font-size: 4.8rem;
}

.sec-text p {
  font-size: 2rem;
  line-height:1.4;
}

@media screen and (max-width:1200px) {
  .sec-title h5 {
    font-size: 3.6rem;
  }

  .sec-title i {
    height:27px;
    background-size: auto 27px;
  }

  .sec-text p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
  .sec-title {
    padding-left: 36px;
  }

  .sec-title h5 {
    font-size: 2.8rem;
  }

  .sec-title i {
    width: 30px;
    height:21px;
    background-size: auto 21px;
  }

  .sec-text p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:576px) {
  .sec-title {
    padding-left: 24px;
  }

  .sec-title h5 {
    font-size: 2.4rem;
  }

  .sec-title i {
    width: 22px;
    height:15px;
    background-size: auto 15px;
  }

  .sec-text p {
    font-size: 1.4rem;
  }
}


/* Sub Visual */
.sub-visual-inner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.sub-visual-context {
  display: flex;
  align-items: center;
  position: relative;
  max-width:1500px;
  width: 95%;
  height: 100%;
  margin: 0 auto;
  z-index:5;
}

.sub-visual-title {
  font-size: 4.8rem;
  font-weight: 700;
  color:#fff;
  opacity:0;
  transform: translateY(60px);
  animation:titleFadeUp 1.4s ease forwards;
}

.sub-visual-lnb {
  background-color: #f5f5f5;
  border-bottom: 1px solid #c9c9c9;;
}

.sub-visual-lnb dl {
  display: flex;
  max-width:1500px;
  width: 100%;
  margin:0 auto;
}

.sub-visual-lnb dd {
  border-right:1px solid #c9c9c9;
}

.sub-visual-lnb dd.home {
  width: 70px;
  height:70px;
  border-left:1px solid #c9c9c9;
}

.sub-visual-lnb dd.home a {
  display: block;
  width: 100%;
  height:100%;
  background: url('../img/icon/ico_home.png') no-repeat center;
}

.sub-visual-lnb dd.depth {
  position: relative;
  max-width:250px;
  width: 100%;
}

.sub-visual-lnb dd.depth::after {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  right:20px;
  transform: translateY(-50%);
  width: 9px;
  height:6px;
  background: url('../img/sub/arr.png') no-repeat center; 
}

.sub-visual-lnb dd.depth span {
  display: block;
  margin:0px 20px;
  padding:26px 0px;
  font-size:1.8rem;
  line-height:1;
  color:#434343;
  cursor: pointer;
}

.sub-visual-lnb .depth_list {
  display: none;
  position: absolute;
  top:100%;
  left:-1px;
  width:calc(100% + 2px);
  padding:0px;
  background-color: #f5f5f5;
  border:1px solid #c9c9c9;
  max-height: 0;
  overflow: hidden;
  z-index:10;
  transition: max-height .4s ease-in-out;
}

.sub-visual-lnb .depth_list ul {
  padding: 30px 20px;
}

.sub-visual-lnb .depth_list li:not(:last-child) {
  margin-bottom:20px;
}

.sub-visual-lnb .depth_list a {
  font-size:1.8rem;
  line-height: 1;
  color:#434343;
}

.sub-visual-background {
  position: absolute;
  top:0;
  left:0;
  transform: scale(1.05);
  width: 100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  animation: imageScale 2.4s ease-in-out .1s forwards;
}

.sub-visual-background.sv1 {
  background-image: url('../img/sub/sv1.jpg');
}

.sub-visual-background.sv2 {
  background-image: url('../img/sub/sv2.jpg');
}

.sub-visual-background.sv3 {
  background-image: url('../img/sub/sv3.jpg');
}

.sub-visual-background.sv4 {
  background-image: url('../img/sub/sv4.jpg');
}

.sub-visual-background.sv5 {
  background-image: url('../img/sub/sv4.jpg');
}

@media screen and (max-width:1200px) {
  .sub-visual-title {
    font-size: 3.6rem;
  }

  .sub-visual-lnb dd.home {
    height: 68px;
  }

  .sub-visual-lnb dd.depth span {
    font-size: 1.6rem;
  }

  .sub-visual-lnb .depth_list a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:1024px) {
  .sub-visual-inner {
    height:360px;
  }

  .sub-visual-lnb dd.home {
    width: 56px;
    height:56px;
  }

  .sub-visual-lnb dd.home a {
    background-size: auto 20px;
  }

  .sub-visual-lnb dd.depth::after {
    right:16px;
  }

  .sub-visual-lnb dd.depth span {
    margin:0px 16px;
    padding: 20px 0px;
  }

  .sub-visual-lnb .depth_list ul {
    padding: 20px 16px;
  }

  .sub-visual-lnb .depth_list li:not(:last-child) {
    margin-bottom: 12px;
  }
}
@media screen and (max-width:768px) {
  .sub-visual-inner {
    height:280px;
  }

  .sub-visual-context {
    justify-content: center;
  }

  .sub-visual-title {
    font-size: 2.8rem;
  }

  .sub-visual-lnb dd.home {
    width: 54px;
    height:54px;
  }

  .sub-visual-lnb dd.depth {
    max-width:100%;
    width:  calc(50% - 27px);
  }

  .sub-visual-lnb dd.depth::after {
    width: 8px;
    height: 5px;
    background-size: auto 5px;
  }

  .sub-visual-lnb dd.depth span {
    font-size: 1.4rem;
  }

  .sub-visual-lnb .depth_list a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width:576px) {
  .sub-visual-inner {
    height:220px;
  }

  .sub-visual-title {
    font-size: 2.4rem;
  }

  .sub-visual-lnb dd.home {
    width: 40px;
    height: 44px;
  }

  .sub-visual-lnb dd.home a {
    background-size: auto 16px;
  }

  .sub-visual-lnb dd.depth {
    width:  calc(50% - 20px);
  }

  .sub-visual-lnb dd.depth span {
    font-size: 1.2rem;
    margin:0px 12px;
    padding: 16px 0px;
  }

  .sub-visual-lnb .depth_list ul {
    padding: 16px 12px;
  }

  .sub-visual-lnb .depth_list li:not(:last-child) {
    margin-bottom: 8px;
  }

  .sub-visual-lnb .depth_list a {
    font-size: 1.2rem;
  }
}


/* Overview */
.overview .sec01 {
  position: relative;
}

.overview .sec01::after {
  content: "";
  display: block;
  position: absolute;
  left:0;
  bottom:0;
  width: 100%;
  height: 68.75%;
  background: url('../img/sub/about/overview_sec01_bak.png') no-repeat center / cover;
  z-index:-1;
}

.overview .sec01 .img {
  padding: 150px 20px;
  background: url('../img/sub/about/overview_sec01_img.jpg') no-repeat center / cover;
  border-radius:10px;
}

.overview .sec01 .img-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overview .sec01 .img-wrap i {
  display: block;
  width: 2px;
  height: 80px;
  background-color: #fff;
  opacity: 0;
  transform: translateY(-60px);
  transition: all .8s ease;
}

.overview .sec01 .img-wrap p {
  font-size: 7rem;
  line-height:.8;
  margin:50px 0px 40px;
  opacity: 0;
  transform: translateY(-60px);
  transition: all .8s ease .2s;
}

.overview .sec01 .img-wrap span {
  display: block;
  font-size: 3rem;
  opacity: 0;
  transform: translateY(-60px);
  transition: all .8s ease .4s;
}

.overview .sec01 .img-wrap.aos-animate i,
.overview .sec01 .img-wrap.aos-animate p,
.overview .sec01 .img-wrap.aos-animate span {
  opacity: 1;
  transform: translateY(0);
}

.overview .sec01 .t01 {
  line-height:1.6;
}

.overview .sec02 .hd {
  position: relative;
}

.overview .sec02 .btns {
  display: flex;
  align-items: center;
  gap:10px;
  position: absolute;
  top:50%;
  right:0;
  transform: translateY(-50%);
  transition: all .3s ease;
}

.overview .sec02 .btns a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap:10px;
  width: 170px;
  height:50px;
  border:1px solid #bfbfbf;
  border-radius:5px;
  font-size:1.8rem;
  transition: all .3s ease;
}

.overview .sec02 .btns i {
  display: inline-block;
  width:16px;
  height:16px;
  background: url('../img/icon/ico_download.png') no-repeat center;
  transition: all .3s ease;
}

.overview .sec02 .box {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background-color: #f5f5f5;
  border-radius:10px;
}

.overview .sec02 .box::before {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  left:0;
  transform: translateY(-50%);
  width: 100%;
  height:1px;
  background-color: #d9d9d9;
}

.overview .sec02 .box::after {
  content: "";
  display: block;
  position: absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);
  width:1px;
  height:100%;
  background-color: #d9d9d9;
}

.overview .sec02 .box dl {
  flex:1 1 50%;
  max-width:50%;
}

.overview .sec02 .line {
  display: block;
  width: 100%;
  height:1px;
  margin:50px 0px;
  background-color: #ccc;
}

.overview .sec02 .item .txt .t02 {
  line-height:1.4;
}

.overview .sec02 .item .info {
  padding-left:20px;
}

.overview .sec02 .item .info dt {
  position: relative;
}

.overview .sec02 .item .info dt::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left:-20px;
  transform: translateY(-50%);
  width: 7px;
  height:7px;
  background-color: #227fc4;
}

.overview .sec02 .item .info dd {
  line-height:1.4;
}

@media screen and (min-width:1201px){
  .overview .sec02 .btns a:hover {
    background-color: #19599e;
    border-color: #19599e;
    color:#fff;
  }

  .overview .sec02 .btns a:hover i {
    transform: translateX(-6px);
    background-image: url('../img/icon/ico_download_on.png');
  }
}
@media screen and (max-width:1200px) {
  .overview .sec01::after {
    background-position: right center;
  }

  .overview .sec01 .img-wrap p {
    font-size: 5.2rem;
  }

  .overview .sec01 .img-wrap span {
    font-size:2.4rem;
  }

  .overview .sec02 .btns a {
    font-size:1.6rem;
  }
}
@media screen and (max-width:1024px) {
  .overview .sec01 .img {
    padding: 120px 16px;
  }

  .overview .sec01 .img-wrap i {
    height: 60px;
  }

  .overview .sec01 .img-wrap p {
    margin: 36px 0px 28px;
  }

  .overview .sec02 .btns {
    gap:6px;
  }

  .overview .sec02 .btns a {
    gap:6px;
    width: 140px;
    height:40px;
  }

  .overview .sec02 .btns i {
    width: 13px;
    height:13px;
    background-size: auto 13px;
  }

  .overview .sec02 .line {
    margin:36px 0px;
  }

  .overview .sec02 .item .info {
    padding-left:16px;
  }

  .overview .sec02 .item .info dt::before {
    left: -16px;
    width:5px;
    height:5px;
  }
}
@media screen and (max-width:768px) {
  .overview .sec01 .img {
    padding: 100px 16px;
  }

  .overview .sec01 .img-wrap p {
    font-size:4rem;

  }

  .overview .sec01 .img-wrap span {
    font-size:2rem;
  }

  .overview .sec02 .btns a {
    width: 120px;
    height:34px;
    font-size:1.4rem;
  }

  .overview .sec02 .btns i {
    width: 11px;
    height:11px;
    background-size: auto 11px;
  }

  .overview .sec02 .box {
    background-color: transparent;
    gap:10px;
  }

  .overview .sec02 .box::before {
    display: none;
  }

  .overview .sec02 .box::after {
    display: none;
  }

  .overview .sec02 .box dl {
    flex:1 1 100%;
    max-width: 100%;
    background-color: #f5f5f5;
  }

  .overview .sec02 .item img {
    width: 303px;
  }
}
@media screen and (max-width:576px) {
  .overview .sec01 .img {
    padding: 80px 10px;
  }

  .overview .sec01 .img-wrap i {
    height: 40px;
  }

  .overview .sec01 .img-wrap p {
    font-size:2.8rem;
    margin:26px 0px 20px;

  }

  .overview .sec01 .img-wrap span {
    font-size:1.8rem;
  }

  .overview .sec02 .btns a {
    gap:4px;
    width: 100px;
    height:28px;
    font-size:1.2rem;
  }

  .overview .sec02 .btns i {
    width: 9px;
    height:9px;
    background-size: auto 9px;
  }

  .overview .sec02 .box {
    gap:6px;
  }

  .overview .sec02 .line {
    margin:24px 0px;
  }

  .overview .sec02 .item img {
    width: 263px;
  }

  .overview .sec02 .item .info {
    padding-left:10px;
  }

  .overview .sec02 .item .info dt::before {
    left: -10px;
    width:3px;
    height:3px;
  }
}


/* Vision */
.vision .sec01 .list {
  display: flex;
  gap:20px;
}

.vision .sec01 .list Li {
  flex:1 1 calc(50% - 10px);
}

.vision .sec01 .list .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding:85px 6.21621%;
  background-color:#f5f5f5;
  border-radius:10px;
  text-align: center;
}

.vision .sec01 .list .txt .t02 {
  line-height:1.5;
}

.vision .sec02 .list {
  display: flex;
  justify-content: space-between;
  gap:140px;
  padding:0px 50px;
}

.vision .sec02 .list li {
  flex:1 1;
}

.vision .sec02 .list .img {
  position: relative;
}

.vision .sec02 .list .t01 {
  line-height:1.7;
}

.vision .sec02 .list li:not(:last-child) .img::after {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  right:-80px;
  transform: translateY(-50%);
  width: 40px;
  height:40px;
  background: url('../img/sub/about/vision_sec02_plus.png') no-repeat center;
}

@media screen and (max-width:1200px) {
  .vision .sec02 .list {
    gap:100px;
    padding:0px;
  }

  .vision .sec02 .list li:not(:last-child) .img::after {
    right: -67px;
  }
}
@media screen and (max-width:1024px) {
  .vision .sec01 .list {
    gap:12px;
  }

  .vision .sec01 .list Li {
    flex:1 1 calc(50% - 6px);
  }

  .vision .sec01 .list .card {
    padding:60px 20px;
  }

  .vision .sec01 .list img {
    width: 108px;
  }

  .vision .sec02 .list {
    gap:60px;
  }

  .vision .sec02 .list li:not(:last-child) .img::after {
    right:-42px;
    width:24px;
    height:24px;
    background-size: auto 23px;
  }
}
@media screen and (max-width:768px) {
  .vision .sec01 .list {
    flex-wrap: wrap;
  }

  .vision .sec01 .list Li {
    flex:1 1 100%;
  }

  .vision .sec01 .list .card {
    justify-content: center;
    min-height:370px;
  }

  .vision .sec02 .list {
    flex-wrap: wrap;
  }

  .vision .sec02 .list li {
    flex:1 1 100%;
  }

  .vision .sec02 .list .card {
    text-align: center;
    position: relative;
  }

  .vision .sec02 .list li:not(:last-child) .card::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom:-35px;
    transform: translateX(-50%);
    width: 21px;
    height:18px;
    background: url('../img/sub/about/vision_sec02_plus.png') no-repeat center / auto 20px;
  }

  .vision .sec02 .list img {
    width: 280px;
  }

  .vision .sec02 .list li:not(:last-child) .img::after {
    display: none;
  }
}
@media screen and (max-width:576px) {
  .vision .sec01 .list {
    gap:6px;
  }

  .vision .sec01 .list .card {
    min-height:320px;
    padding: 0px 16px;
  }

  .vision .sec01 .list img {
    width: 88px;
  }

  .vision .sec02 .list {
    gap:40px;
  }

  .vision .sec02 .list img {
    width: 180px;
  }

  .vision .sec02 .list li:not(:last-child) .card::after {
    bottom: -26px;
    width: 17px;
    height:16px;
    background-size: auto 16px;
  }
}


/* History */
.history .bd {
  position: relative;
  padding:40px 0px 0px;
  overflow: hidden;
}

.history .bd::before {
  content: "";
  display: block;
  position: absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);
  width: 2px;
  height:60px;
  background-color: #227fc4;
  z-index:2;
}

.history .bd::after {
  content: "";
  display: block;
  position: absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);
  width: 2px;
  height:100%;
  background-color: #c9c9c9;
}

.history .line {
  display: block;
  position: absolute;
  top:60px;
  left:50%;
  transform: translateX(-50%);
  width: 2px;
  height:0;
  background-color: #227fc4;
  z-index:2;
  transition: all .6s ease;
}

.history .item {
  position: relative;
  padding-left: 56.6667%;
}

.history .his-year {
  position: absolute;
  top:-20px;
  left:0;
  width: 43.333%;
  text-align:right;
}

.history .his-year h5 {
  font-size: 9rem;
  font-weight:700;
  line-height:.8;
  color:#d9d9d9;
  transition: all .8s ease;
}

.history .his-con dl:not(:last-child) {
  padding-bottom:100px;
}

.history .his-con dl:last-child {
  padding-bottom: 100px;
}

.history .his-con dt {
  position: relative;
  padding-bottom:20px;
  margin-bottom:40px;
  border-bottom: 2px solid #d2d2d2;
}

.history .his-con dt .dot {
  display: block;
  position: absolute;
  top:10px;
  left: -16.2%;
  width:10px;
  height:10px;
  background-color: #c9c9c9;
  border-radius:50%;
  z-index:2;
  transition: all .6s ease;
}

.history .his-con dt .dot::before {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%) scale(0);
  width: 28px;
  height:28px;
  border-radius:50%;
  background-color: rgba(34,127,1946,.3);
  opacity:0;
  transition: all .6s ease;
}

.history .his-con dd {
  position: relative;
  padding-left:14px;
  font-size:2rem;
  line-height:1.7;
}

.history .his-con dd:not(:last-child) {
  margin-bottom:10px;
}

.history .his-con dd::before {
  content: "•";
  display: block;
  position: absolute;
  top:14px;
  left:0px;
  font-size:1.8rem;
  line-height:.1;
}

.history .item.active .his-year h5 {
  color:#227fc4;
}

.history .his-con dl.active dt .dot {
  background-color: #227fc4;
}

.history .his-con dl.active dt .dot::before {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
}

@media screen and (max-width:1200px) {
  .history .his-year {
    top:10px;
  }

  .history .his-year h5 {
    font-size: 6.2rem;
  }

  .history .his-con dd {
    font-size:1.8rem;
  }

  .history .his-con dd::before {
    font-size:1.6rem;
  }
}
@media screen and (max-width:1024px) {
  .history .bd {
    padding: 28px 0px 0px;
  }

  .history .bd::before {
    height: 40px;
  }

  .history .line {
    top:40px;
  }

  .history .item {
    padding-left: 54%;
  }

  .history .his-year {
    top:-8px;
  }

  .history .his-year h5 {
    font-size:5rem;
  }

  .history .his-con dl:last-child {
    padding-bottom: 80px;
  }

  .history .his-con dl:not(:last-child) {
    padding-bottom: 80px;
  }

  .history .his-con dt {
    padding-bottom:16px;
    margin-bottom:28px;
  }

  .history .his-con dt .dot {
    left: -9.5%;
    width: 8px;
    height:8px;
  }

  .history .his-con dt .dot::before {
    width: 20px;
    height:20px;
  }

  .history .his-con dd {
    padding-left:12px;
  }

  .history .his-con dd::before {
    top: 12px;
  }
}
@media screen and (max-width:768px) {
  .history .bd {
    padding: 0px;
  }

  .history .bd::after {
    left:20px;
    transform: none;
  }

  .history .bd::before {
    left: 20px;
    transform: none;
    height: 70px;
  }

  .history .line {
    top:70px;
    left: 20px;
    transform: none;
  }

  .history .item {
    padding-left:50px;
  }
  
  .history .his-year {
    top:0px;
    left:50px;
    width: 100%;
    text-align: left;
  }

  .history .his-year h5 {
    font-size:4rem;
  }

  .history .his-con dl {
    padding-top: 60px;
  }

  .history .his-con dl:not(:last-child) {
    padding-bottom: 0px;
  }

  .history .his-con dl:last-child {
    padding-bottom:60px;
  }

  .history .his-con dt .dot {
    top:6px;
    left: -33px;
  }

  .history .his-con dd {
    font-size:1.6rem;
  }

  .history .his-con dd:not(:last-child) {
    margin-bottom:6px;
  }

  .history .his-con dd::before {
    font-size:1.4rem;
  }
}
@media screen and (max-width:576px) {
  .history .bd::before {
    width: 1px;
    left: 12px;
    height: 60px;
  }

  .history .bd::after {
    width:1px;
    left:12px;
  }

  .history .line {
    top:60px;
    left: 12px;
    width: 1px;
  }

  .history .item {
    padding-left:30px;
  }

  .history .his-year {
    left:30px;
  }

  .history .his-con dl {
    padding-top: 50px;
  }

  .history .his-con dl:last-child {
    padding-bottom:50px;
  }

  .history .his-con dt {
    padding-bottom:10px;
    margin-bottom:16px;
  }

  .history .his-con dt .dot {
    left: -20px;
    width: 6px;
    height:6px;
  }

  .history .his-con dt .dot::before {
    width: 14px;
    height:14px;
  }

  .history .his-con dd {
    padding-left:10px;
    font-size:1.4rem;
    line-height:1.5;
  }

  .history .his-con dd::before {
    top:9px;
    font-size: 1.2rem;
  }

  .history .his-con dd:not(:last-child) {
    margin-bottom: 4px;
  }
}


/* Location */
.location .anchor {
  display: flex;
  justify-content: center;
  gap:10px;
  max-width: 730px;
  width: 100%;
  margin:0 auto;
  padding:10px;
  border-radius:40px;
  background-color: #eef5fb;
}

.location .anchor li {
  flex:1 1;
}

.location .anchor a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  border-radius:30px;
  background-color: #fff;
  font-size: 2rem;
  transition: all .3s ease;
}

.location .list .card {
  display: flex;
  justify-content: space-between;
}

.location .list .map {
  position: relative;
  width: 49.2%;
  height:0;
  padding-top: calc(500/1500*100%);
  overflow: hidden;
}

.location .list .map iframe {
  display: block;
  position: absolute;
  top:0;
  left: 0;
  right:0;
  bottom:0;
  width: 100%;
  height: 100%;
}

.location .list .info {
  width: 40.66667%;
  margin-top:50px;
}

.location .list .info dt {
  padding-bottom:20px;
  margin-bottom:40px;
  border-bottom: 2px solid #d2d2d2;
}

.location .list .info dd {
  display: flex;
  font-size:2rem;
  line-height:1.6;
}

.location .list .info p {
  position: relative;
  width: 150px;
  padding-left: 30px;
}

.location .list .info span {
  display: block;
  width: calc(100% - 150px);
}

.location .list .info .icon {
  display: block;
  position: absolute;
  top:5px;
  left:0;
  width:22px;
  height:22px;
  background-repeat: no-repeat;
  background-position: center;
}

.location .list .info .icon01 {
  background-image: url('../img/icon/ico_address.png');
}

.location .list .info .icon02 {
  background-image: url('../img/icon/ico_tel.png');
}

.location .list .info .icon03 {
  background-image: url('../img/icon/ico_fax.png');
}

@media screen and (min-width:1201px) {
  .location .anchor li:hover a {
    color:#fff;
    background-color: #227fc4;
  }
}
@media screen and (max-width:1200px) {
  .location .anchor a {
    font-size: 1.8rem;
  }

  .location .list .info {
    width: 46%;
  }

  .location .list .info dd {
    font-size:1.8rem;
  }

  .location .list .info .icon {
    top:3px;
  }
}
@media screen and (max-width:1024px) {
  .location .anchor {
    gap:6px;
    max-width: 580px;
    padding: 6px;
  }

  .location .anchor a {
    height: 48px;
  }

  .location .list .info {
    margin-top: 30px;
  }

  .location .list .info dt {
    padding-bottom:16px;
    margin-bottom: 28px;
  }

  .location .list .info p {
    width: 70px;
    padding-left:22px;
  }

  .location .list .info .icon {
    top:5px;
    width: 18px;
    height:18px;
    background-size: auto 18px;
  }

  .location .list .info span {
    width: calc(100% - 70px);
  }
}
@media screen and (max-width:768px) {
  .location .anchor a {
    height: 40px;
    font-size: 1.6rem;
  }

  .location .list .card {
    flex-wrap: wrap;
  }

  .location .list .map {
    width: 100%;
    padding-top: 72.25%;
  }

  .location .list .info {
    width: 100%;
  }

  .location .list .info dt {
    margin-bottom:16px;
  }

  .location .list .info dd {
    font-size:1.6rem;
  }

  .location .list .info .icon {
    top:3px;
  }

  .location .list .info br {
    display: none;
  }
}
@media screen and (max-width:576px) {
  .location .anchor {
    gap:4px;
    max-width:360px;
    padding: 4px;
    border-radius:0px;
  }

  .location .anchor a {
    height: 34px;
    border-radius: 0px;
    font-size: 1.2rem;
    text-align: center;
  }

  .location .list .info {
    margin-top: 24px;
  }

  .location .list .info dt {
    padding-bottom: 10px;
    margin-bottom:10px;
  }

  .location .list .info dd {
    font-size: 1.4rem;
  }

  .location .list .info p {
    width:50px;
    padding-left: 18px;
  }

  .location .list .info .icon {
    width:14px;
    height:14px;
    background-size: auto 14px;
  }

  .location .list .info span {
    width: calc(100% - 50px);
  }
}


/* Story */
.story .img {
  position: relative;
  border-radius:10px;
  overflow: hidden;
}

.story .txt {
  position: relative;
  padding-left: 25.3333%;
}

.story .txt .lt {
  position: absolute;
  top:0;
  left:0;
}

.story .txt .rt {
  width: 91%;
}

.story .txt .t01 {
  line-height:1.4;
}

.story .txt .t02 {
  line-height:1.6;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
  .story .txt {
    padding-left: 280px;
  }

  .story .txt .rt {
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .story .txt {
    padding-left:0px;
  }

  .story .txt .lt {
    position: relative;
    top:unset;
    left: unset;
    margin-bottom:20px;
  }

  .story .txt .t01 br {
    display: none;
  }
}
@media screen and (max-width:576px) {
  .story .txt .lt  {
    margin-bottom: 16px;
  }
}


/* Laboratory */
.laboratory .sec01 .img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height:350px;
  padding:60px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius:10px;
  overflow: hidden;
}

.laboratory .sec01 .img p {
  line-height:1.6;
}

.laboratory .sec02 p {
  position: relative;
  padding-left:30px;
}

.laboratory .sec02 p::before {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height:8px;
  background-color: #191919;
}

.laboratory .sec02 table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}

.laboratory .sec02 table tr {
  border-bottom: 1px solid #fff;
}

.laboratory .sec02 table th,
.laboratory .sec02 table td {
  font-size: 2rem;
  line-height:1.3;
  border-right: 1px solid #fff;
}

.laboratory .sec02 table th {
  padding: 10px;
  background-color: #227fc4;
  color:#fff;
}

.laboratory .sec02 table td {
  height: 70px;
  padding: 6px 10px;
  background-color: #e8f2f9;
}

.laboratory .sec02 table td:first-child {
  background-color: #a7cce7;
}

.laboratory .sec03 p {
  position: relative;
  padding-left:30px;
}

.laboratory .sec03 p::before {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height:8px;
  background-color: #191919;
}

.laboratory .sec03 .img {
  border:1px solid #d2d2d2;
  border-radius:10px;
  overflow: hidden;
}

.laboratory .sec03 dd {
  position: relative;
  padding-left:14px;
  line-height:1.6;
}

.laboratory .sec03 dd::before {
  content: "•";
  display: block;
  position: absolute;
  top:13px;
  left:0;
  line-height:.1;
}

.laboratory .sec04 .img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height:350px;
  padding:60px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius:10px;
  overflow: hidden;
}

.laboratory .sec04 .img p {
  line-height: 1.6;
}

.laboratory .sec04 .con {
  padding: 60px 80px;
  background-color: #f5f5f5;
  border-radius:10px;
}

.laboratory .sec04 dt {
  position: relative;
  padding-left:24px;
  font-size:2.8rem;
}

.laboratory .sec04 dt::before {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height:8px;
  background-color: #191919;
}

.laboratory .sec04 dd {
  display: flex;
  gap:6px;
  font-size: 2rem;
  line-height:1.6;
}

.laboratory .sec04 .line {
  display: block;
  width: 100%;
  height:1px;
  background-color: #bfbfbf;
  margin: 60px 0px;
}

@media screen and (max-width:1200px) {
  .laboratory .sec02 table th,
  .laboratory .sec02 table td {
    font-size: 1.8rem;
  }

  .laboratory .sec04 .con {
    padding:40px;
  }

  .laboratory .sec04 .line {
    margin:40px 0px;
  }

  .laboratory .sec04 dt {
    font-size:2.4rem;
  }

  .laboratory .sec04 dd {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:1024px) {
  .laboratory .sec01 .img {
    min-height:300px;
    padding:40px 16px;
  }

  .laboratory .sec02 p {
    padding-left:20px;
  }

  .laboratory .sec02 p::before {
    width: 6px;
    height:6px;
  }

  .laboratory .sec02 .table-scrolled {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .laboratory .sec02 .scrolled-wrap {
    overflow-x: auto;
  }

  .laboratory .sec02 .scrolled-wrap::after {
    content: "";
    display:block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 50px;
    height: 100%;
    border-radius: 10px 0 0 10px/50% 0 0 50%;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.25);
  }

  .laboratory .sec02 table {
    min-width:1200px;
  }

  .laboratory .sec02 table td {
    height:60px;
  }

  .laboratory .sec03 p {
    padding-left:20px;
  }

  .laboratory .sec03 p::before {
    width: 6px;
    height:6px;
  }

  .laboratory .sec04 .img {
    min-height:300px;
    padding:40px 16px;
  }

  .laboratory .sec04 .con {
    padding:30px;
  }

  .laboratory .sec04 .line {
    margin: 30px 0px;
  }

  .laboratory .sec04 dt {
    padding-left:16px;
  }
  
  .laboratory .sec04 dt::before {
    width: 6px;
    height:6px;
  }
}
@media screen and (max-width:768px) {
  .laboratory .sec01 .img {
    min-height:240px;
  }

  .laboratory .sec02 table {
    min-width:1000px;
  }

  .laboratory .sec02 table th,
  .laboratory .sec02 table td {
    font-size: 1.6rem;
    height:50px;
  }

  .laboratory .sec03 dd::before {
    top: 10px;
  }

  .laboratory .sec04 .img {
    min-height:240px;
  }

  .laboratory .sec04 dt {
    font-size: 2rem;
  }

  .laboratory .sec04 dd {
    font-size:1.6rem;
  }
}
@media screen and (max-width:576px) {
  .laboratory .sec01 .img {
    min-height:160px;
    padding:20px 12px;
  }

  .laboratory .sec02 p {
    padding-left:8px;
  }

  .laboratory .sec02 p::before {
    width: 3px;
    height:3px;
  }

  .laboratory .sec02 table th,
  .laboratory .sec02 table td {
    font-size: 1.2rem;
    height:36px;
  }

  .laboratory .sec03 p {
    padding-left:8px;
  }

  .laboratory .sec03 p::before {
    width: 3px;
    height:3px;
  }

  .laboratory .sec03 dd {
    line-height: 1.4;
    padding-left:8px;
  }

  .laboratory .sec04 .img {
    min-height: 160px;
    padding:20px 12px;
  }

  .laboratory .sec04 .con {
    padding:16px;
  }

  .laboratory .sec04 .line {
    margin:16px 0px;
  }

  .laboratory .sec04 dt {
    font-size:1.4rem;
    padding-left:8px;
  }

  .laboratory .sec04 dt::before {
    width: 3px;
    height:3px;
  }

  .laboratory .sec04 dd {
    font-size:1.2rem;
  }
}


/* Inquiry */
.inquiry .hd {
  position: relative;
}

.inquiry .hd .essential {
  display: block;
  position: absolute;
  right:0;
  bottom: 0;
  font-size:1.8rem;
}

@media screen and (max-width:1200px) {
  .inquiry .hd .essential {
    font-size:1.6rem;
  }
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
  .inquiry .hd .essential {
    font-size:1.4rem;
  }
}
@media screen and (max-width:576px) {
  .inquiry .hd .essential {
    font-size:1.2rem;
    bottom: -20px;
  }
}


/* Privacy */
.privacy {
  display: flex;
  align-items: center;
  height: calc(var(--vh, 1vh)*100);
	height: 100svh;
}

.privacy .sec {
  width: 100%;
  height:100%;
  padding:16px 0px;
}

.privacy .container {
  height: 100%;
}

.privacy .textarea {
  width: 100%;
  height:100%;
  border:1px solid #aaa;
  border-radius:10px;
  padding:20px;
  overflow-y: auto;
}


/* Animation */
@keyframes titleFadeUp {
  form {
    opacity:0;
    transform: translateY(40px);
  }
  to {
    opacity:1;
    transform: translateY(0px);
  }
}

@keyframes imageScale {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}