<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Sub Common */
.sec {
  padding:150px 0px;
}

.sec-tit {
  overflow: hidden;
}

.sec-tit__main {
  font-family: 'Raleway Webfont', sans-serif;
  font-size:6rem;
  font-weight:700;
}

.sec-tit__main--02 {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.sec-tit__sub {
  font-size:2.8rem;
  line-height:1.7;
  margin-top:30px;
}

.sec-tit__sub b {
  font-weight:700;
}

@media screen and (max-width:1200px) {
  .sec {
    padding:120px 0px;
  }

  .sec-tit__main {
    font-size:4.8rem;
  }

  .sec-tit__sub {
    font-size:2.4rem;
  }
}
@media screen and (max-width:992px) {
  .sec {
    padding:100px 0px;
  }

  .sec-tit__sub {
    margin-top:22px;
  }
}
@media screen and (max-width:768px) {
  .sec {
    padding:80px 0px;
  }

  .sec-tit__main {
    font-size:3.4rem;
  }

  .sec-tit__sub {
    font-size:2rem;
    line-height:1.5;
    margin-top:16px;
  }
}
@media screen and (max-width:576px) {
  .sec-tit__main {
    font-size:2.8rem;
  }

  .sec-tit__sub {
    font-size:1.8rem;
    margin-top:12px;
  }
}


/* Sub Visual */
.sub-visual {
  width:100%;
  height:500px;
  overflow: hidden;
  position: relative;
}

.sub-visual-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 5;
  animation: sub-visual 1.2s cubic-bezier(0.4, 0.38, 0.26, 0.93) .2s both;
}

.sub-visual-background div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.sv1 .sub-visual-background div {
  background-image: url('/en/img/sub/sv1.png');
}

.sv2 .sub-visual-background div {
  background-image: url('/en/img/sub/sv2.png');
}

.sv3 .sub-visual-background div {
  background-image: url('/en/img/sub/sv3.png');
}

.sv4 .sub-visual-background div {
  background-image: url('/en/img/sub/sv4.png');
}

.sv5 .sub-visual-background div {
  background-image: url('/en/img/sub/sv5.png');
}

.sv6 .sub-visual-background div {
  background-image: url('/en/img/sub/sv6.png');
}

@keyframes sub-visual {
  from {
    transform: scale(1.1);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:992px) {
  .sub-visual {
    height:320px;
  }
}
@media screen and (max-width:768px) {
  .sub-visual {
    height:280px;
  }
}
@media screen and (max-width:576px) {
  .sub-visual {
    height:240px;
  }
}


/* Sub Navigation */
.sub-navi {
  position: relative;
  margin-top:-81px;
  z-index:10;
}

.sub-navi .sub-navi-container {
  max-width:1440px;
  width:100%;
  margin:0 auto;
  background-color:#f5f5f5;
  border-bottom:1px solid #bfbfbf;
}

.sub-navi .sub-navi-inner {
  display: flex;
}

.sub-navi .sub-navi-inner .home {
  /* display: block; */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width:80px;
  padding:28px;
  position: relative;
}

.sub-navi .sub-navi-inner .home::after {
  content: "";
  display: inline-block;
  position: absolute;
  top:50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width:1px;
  height:44px;
  background-color: #bfbfbf;
}

.sub-navi .sub-navi-inner .home a {
  display: inline-block;
  width:24px;
  height:24px;
  background:url('/en/img/sub/home.png') no-repeat center / auto 100%;
}

.sub-navi .sub-navi-inner .depth {
  position: relative;
  max-width:450px;
  width:100%;
}

.sub-navi .sub-navi-inner .depth::after {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width:1px;
  height:44px;
  background-color: #bfbfbf;
}

.sub-navi .sub-navi-inner .depth:last-child::after {
  display: none;
}

.sub-navi .sub-navi-inner .depth span {
  display: block;
  font-size: 2rem;
  font-weight:500;
  margin:0px 30px;
  padding:28px 0px;
  background:url('/en/img/sub/arrow.png') no-repeat right center;
  cursor: pointer;
}

.sub-navi .sub-navi-inner .depth_list {
  position: absolute;
  top:calc(100% + 1px);
  left:0;
  width:100%;
  display: none;
  padding:0px;
  background-color: #f5f5f5;
  max-height: 0;
  overflow: hidden;
  z-index:10;
  transition: max-height 0.3s ease-in-out;
}

.sub-navi .sub-navi-inner .depth_list ul {
  padding:15px 30px;
}

.sub-navi .sub-navi-inner .depth_list li {
  padding:15px 0px;
}

.sub-navi .sub-navi-inner .depth_list a {
  font-size:2rem;
  font-weight:500;
  line-height:1;
}

@media screen and (min-width:1201px){
  .sub-navi .sub-navi-inner .depth_list li:hover a {
    color:#15468d;
  }
}
@media screen and (max-width:1200px) {
  .sub-navi {
    margin-top:-77px;
  }

  .sub-navi .sub-navi-inner .home {
    padding:26px;
  }

  .sub-navi .sub-navi-inner .depth span {
    font-size:1.8rem;
  }

  .sub-navi .sub-navi-inner .depth_list a {
    font-size:1.8rem;
  }
}
@media screen and (max-width:992px) {
  .sub-navi {
    margin-top: -65px;
  }

  .sub-navi .sub-navi-inner .home {
    width:70px;
    padding:16px;
  }

  .sub-navi .sub-navi-inner .depth {
    max-width:460px;
  }

  .sub-navi .sub-navi-inner .depth span {
    margin:0px 22px;
    padding:22px 0px;
  }

  .sub-navi .sub-navi-inner .depth_list ul {
    padding:10px 22px;
  }

  .sub-navi .sub-navi-inner .depth_list li {
    padding:10px 0px;
  }
}
@media screen and (max-width:768px) {
  .sub-navi {
    margin-top:-52px;
  }

  .sub-navi .sub-navi-inner .home a {
    width:18px;
    height:18px;
  }

  .sub-navi .sub-navi-inner .depth span {
    font-size:1.6rem;
    margin:0px 16px;
    padding:16px 0px;
  }

  .sub-navi .sub-navi-inner .depth_list ul {
    padding:10px 18px;
  }

  .sub-navi .sub-navi-inner .depth_list a {
    font-size:1.6rem;
  }
}
@media screen and (max-width:576px) {
  .sub-navi {
    margin-top:-40px;
  }

  .sub-navi .sub-navi-inner .home {
    padding:6px;
    display: none;
  }

  .sub-navi .sub-navi-inner .home::after {
    height:42px;
  }

  .sub-navi .sub-navi-inner .depth::after {
    height:42px;
  }

  .sub-navi .sub-navi-inner .depth span {
    font-size:1.5rem;
    margin:0px 12px;
    padding:12px 0px;
    background-size: auto 6px;
  }

  .sub-navi .sub-navi-inner .depth_list ul {
    padding:6px 12px;
  }
  .sub-navi .sub-navi-inner .depth_list li {
    padding:6px 0px;
  }

  .sub-navi .sub-navi-inner .depth_list a {
    font-size:1.5rem;
  }
}


/* About */
.about .sec--01 .sec-con {
  padding-top:80px;
}

.about .sec--01 .img {
  margin-bottom:60px;
}

.about .sec--01 .img-full {
  overflow: hidden;
  width: 0%;
  /* position: relative;
  width:0;
  height:0;
  padding-top: calc(500/1440*100%);
  overflow: hidden;
  margin-bottom:60px; */
}

.about .sec--01 .img-full img {
  display:block;
  max-width: none;
}

.about .sec--01 .img.aos-animate .img-full {
  animation: feature-image 1s cubic-bezier(0.4, 0.38, 0.26, 0.93) .15s both;
}

.about .sec--01 .img_thumb {
  position: absolute;
  top:50%;
  left:50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width:100%;
  height:100%;
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center;
}

.about .sec--01 .text .t01 {
  font-size:2.8rem;
  line-height:1.7;
}

.about .sec--01 .text .t01 b {
  font-weight:700;
}

.about .sec--02 {
  padding:180px 0px;
  position: relative;
}

.about .sec--02::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:url('/en/img/sub/about/intro/about_bg.png') no-repeat center / cover;
  -webkit-transition: all cubic-bezier(0.4, 0.38, 0.26, 0.93) 1s;
  transition: all cubic-bezier(0.4, 0.38, 0.26, 0.93) 1s;
  transform-origin: top;
  transform: scale(1.1);
  opacity: 0;
}

.about .sec--02.aos-animate::before {
  transform: scale(1);
  opacity: 1;
}

.about .sec--02 .container {
  position: relative;
  z-index:2;
}

.about .sec--02 .list {
  display: flex;
  flex-wrap: wrap;
}

.about .sec--02 .list li {
  flex:1 1 25%;
  max-width:25%;
}

.about .sec--02 .list .box {
  text-align: center;
}

.about .sec--02 .list .name {
  font-size:2.4rem;
  color:#fff;
  margin:30px 0px 10px;
}

.about .sec--02 .list .count {
  font-size:5.2rem;
  font-weight:700;
  color:#fff;
}


@keyframes feature-image {
  from { width: 0%; }
  to { width: 100%; }
}

@media screen and (max-width:1200px) {
  .about .sec--01 .text .t01 {
    font-size:2.4rem;
  }
  
  .about .sec--02 .list .name {
    font-size:2rem;
  }

  .about .sec--02 .list .count {
    font-size:3.8rem;
  }
}
@media screen and (max-width:992px) {
  .about .sec--01 .sec-con {
    padding-top:60px;
  }

  .about .sec--01 .img {
    margin-bottom:40px;
  }

  .about .sec--01 .img-full {
    width:100%;
  }

  .about .sec--01 .img-full img {
    max-width:100%;
    width:100%;
  }

  .about .sec--01 .img.aos-animate .img-full {
    animation: none;
    opacity:1;
  }

  .about .sec--02 {
    padding:140px 0px;
  }

  .about .sec--02 .list img {
    width:96px;
  }

  .about .sec--02 .list .name {
    margin:22px 0px 10px;
  }
}
@media screen and (max-width:768px) {
  .about .sec--01 .sec-con {
    padding-top:40px;
  }

  .about .sec--01 .img {
    margin-bottom:30px;
  }

  .about .sec--01 .text .t01 {
    font-size:2rem;
    line-height:1.5;
  }

  .about .sec--02 {
    padding:120px 0px;
  }

  .about .sec--02 .list {
    border-top:1px solid #fff;
    border-left:1px solid #fff;
  }

  .about .sec--02 .list li {
    flex:1 1 50%;
    max-width:50%;
    padding:22px 0px;
    border-right:1px solid #fff;
    border-bottom:1px solid #fff;
  }

  .about .sec--02 .list img {
    width:76px;
  }

  .about .sec--02 .list .name {
    font-size:1.8rem;
    margin:16px 0px 6px;
  }

  .about .sec--02 .list .count {
    font-size:3rem;
  }
}
@media screen and (max-width:576px) {
  .about .sec--01 .sec-con {
    padding-top:30px;
  }

  .about .sec--01 .img {
    margin-bottom:22px;
  }

  .about .sec--01 .text .t01 {
    font-size:1.8rem;
  }

  .about .sec--02 {
    padding:100px 0px;
  }

  /* .about .sec--02 .list li {
    flex:1 1 100%;
    max-width:100%;
  } */

  .about .sec--02 .list li  {
    height:180px;
  }

  .about .sec--02 .list .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height:100%;
  }

  .about .sec--02 .list img {
    width:54px;
  }

  .about .sec--02 .list .name {
    font-size:1.6rem;
    margin:12px 0px 4px;
  }

  .about .sec--02 .list .count {
    font-size:2.6rem;
  }
}


/* History */
.history .sec-con {
  padding-top:80px;
}

.history .din {
  display: flex;
}

.history .lt,
.history .rt {
  flex:1 1 50%;
  max-width:50%;
}

.history .lt .history-tit {
  font-size:4.8rem;
  font-weight:700;
  margin-bottom: 100px;
}

.history .rt .history-area {
  position: relative;
}

.history .rt .history-item {
  position: relative;
  padding-bottom:160px;
}

.history .rt .history-item::after {
  content:"";
  display: block;
  position: absolute;
  top:0;
  left:11px;
  width:1px;
  height:100%;
  background-color: #f7b249;
}

.history .rt .history-item dl {
  position: relative;
  padding-left:160px;
}

.history .rt .history-item dl::before {
  content:"";
  display: block;
  position: absolute;
  top:10px;
  left:0;
  width:23px;
  height:23px;
  border-radius:50%;
  background-color: #f7b249;
  border:6px solid #fde8c8;
}

.history .rt .history-item dt {
  font-size:4.2rem;
  font-weight:700;
  line-height:1;
  color:#f7b249;
  margin-bottom:40px;
  position: relative;
}

.history .rt .history-item dt::before {
  content:"";
  display: block;
  position: absolute;
  top:50%;
  left:-110px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width:80px;
  height:1px;
  background-color: #f7b249;
}

.history .rt .history-item dd {
  display: flex;
  font-size:2.4rem;
  margin-bottom:20px;
}

.history .rt .history-item dd b {
  display: block;
  font-weight:700;
  margin-right:4px;
}

.history .rt .history-item dd:last-child {
  margin-bottom:0px;
}

@media screen and (max-width:1200px) {
  .history .lt .history-tit {
    font-size:3.4rem;
  }

  .history .rt .history-item dt {
    font-size:3rem;
  }

  .history .rt .history-item dd {
    font-size:2rem;
  }
}
@media screen and (max-width:992px) {
  .history .sec-con {
    padding-top:60px;
  }  

  .history .lt .history-tit {
    margin-bottom:80px;
  }

  .history .rt .history-item {
    padding-bottom:120px;
  }

  .history .rt .history-item dl {
    padding-left:120px;
  }

  .history .rt .history-item dl::before {
    top:4px;
  }

  .history .rt .history-item dt {
    margin-bottom:30px;
  }

  .history .rt .history-item dt::before {
    width:60px;
    left:-80px;
  }

  .history .rt .history-item dd {
    margin-bottom:16px;
  }
}
@media screen and (max-width:768px) {
  .history .sec-con {
    padding-top:40px;
  }

  .history .din {
    flex-wrap: wrap;
  }

  .history .lt, .history .rt {
    flex:1 1 100%;
    max-width:100%;
  }

  .history .lt {
    margin-bottom:60px;
  }

  .history .lt .history-tit {
    font-size:2.8rem;
    margin-bottom:30px;
  }

  .history .lt .history-img {
    text-align: center;
  }

  .history .rt .history-item {
    padding-bottom:100px;
  }

  .history .rt .history-item dl {
    padding-left:100px;
  }

  .history .rt .history-item dt {
    font-size:2.4rem;
    margin-bottom:22px;
  }

  .history .rt .history-item dt::before {
    width:40px;
    left:-60px;
  }

  .history .rt .history-item dd {
    font-size:1.8rem;
    margin-bottom:12px;
  }
}
@media screen and (max-width:576px) {
  .history .sec-con {
    padding-top:30px;
  }  

  .history .lt {
    margin-bottom:40px;
  }

  .history .rt .history-item {
    padding-bottom:60px;
  }

  .history .rt .history-item::after {
    left:8px;
  }

  .history .rt .history-item:first-child::after {
    top:6px;
  }

  .history .rt .history-item dl {
    padding-left:30px;
  }

  .history .rt .history-item dl::before {
    top:0px;
    left:-2px;
    width:20px;
    height:20px;
  }

  .history .rt .history-item dt {
    font-size:2rem;
    margin-bottom:16px;
  }

  .history .rt .history-item dt::before  {
    display: none;
  }

  .history .rt .history-item dd {
    font-size:1.6rem;
    margin-bottom:6px;
  }
}


/* Sustainability */
.sustainability .sustainability_tit {
  font-size:4.8rem;
  font-weight:700;
  margin-bottom:60px;
}

.sustainability .sec--01 {
  padding-bottom:0px;
}

.sustainability .sec--01 .sec-con {
  padding-top:80px;
}

.sustainability .sec--01 .list {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
  margin:-60px;
}

.sustainability .sec--01 .list li {
  padding:60px;
  position: relative;
}

.sustainability .sec--01 .list li::after {
  content:"";
  display: block;
  position: absolute;
  top:50%;
  left:-20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width:40px;
  height:40px;
  background:url('/en/img/sub/about/sustainability/sec01_plus.png') no-repeat center;
}

.sustainability .sec--01 .list li:first-child::after {
  display: none;
}

.sustainability .sec--01 .list .link {
  display: block;
  padding:60px;
  border-radius:50%;
  position: relative;
}

.sustainability .sec--01 .list .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width:260px;
  height:260px;
  border-radius:50%;
}

.sustainability .sec--01 .list .box::after {
  content:"";
  display: block;
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width:100%;
  height:100%;
  border-radius:50%;
  z-index:-1;
}

.sustainability .sec--01 .list .txt {
  margin:24px 0px 18px;
}

.sustainability .sec--01 .list .t01 {
  font-family: 'Raleway Webfont', sans-serif;
  font-size:2rem;
  font-weight:700;
  color:#fff;
}

.sustainability .sec--01 .list .t02 {
  font-size:1.8rem;
  color:#fff;
  margin-top:10px;
}

.sustainability .sec--01 .list .box--01 {
  background-color: rgba(247,178,73,1);
}

.sustainability .sec--01 .list .box--01::after {
  background-color: rgba(247,178,73,.2);
}

.sustainability .sec--01 .list .box--02 {
  background-color: rgba(40,177,111,1);
}

.sustainability .sec--01 .list .box--02::after {
  background-color: rgba(40,177,111,.2);
}

.sustainability .sec--01 .list .box--03 {
  background-color: rgba(19,69,141,1);
}

.sustainability .sec--01 .list .box--03::after {
  background-color: rgba(19,69,141,.2);
}

.sustainability .sec--02 .list {
  margin:-10px 0px;;
}

.sustainability .sec--02 .list li {
  padding:10px 0px;
}

.sustainability .sec--02 .list .box {
  display: flex;
  flex-wrap: wrap;
}

.sustainability .sec--02 .list .num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width:80px;
  height:80px;
  background-color: #f7b249;
}

.sustainability .sec--02 .list .num span {
  font-size:3rem;
  color:#fff;
}

.sustainability .sec--02 .list .txt {
  display: inline-flex;
  align-items: center;
  width:calc(100% - 80px);
  padding:0px 30px;
  background-color: #f5f5f5;
}

.sustainability .sec--02 .list .txt .t01 {
  font-size:2.4rem;
  line-height:1.4;
}

.sustainability .sec--03 {
  background-color: #f5f5f5;
}

.sustainability .sec--03 .list {
  display: flex;
  flex-wrap: wrap;
  margin:-15px;
  padding-bottom:150px;
}

.sustainability .sec--03 .list li {
  flex:0 0 33.33%;
  max-width:33.33%;
  padding:15px;
}

.sustainability .sec--03 .list img {
  display: block;
}

.sustainability .sec--03 .icon {
  display: flex;
  flex-wrap: wrap;
}

.sustainability .sec--03 .icon-item {
  text-align: center;
  flex:0 0 50%;
  max-width:50%;
  padding:0px 50px;
  border-right:2px solid #c9c9c9;
}

.sustainability .sec--03 .icon-item:last-child {
  border:0px;
}

.sustainability .sec--03 .icon-item .txt {
  margin-top:50px;
}

.sustainability .sec--03 .icon-item .txt .t01 {
  font-size:2.4rem;
}

.sustainability .sec--03 .icon-item .txt .t02 {
  font-size:2.4rem;
}

.sustainability .sec--03 .icon-item .txt .t02 span {
  font-size:5.2rem;
  font-weight:700;
  color:#f7b249;
}

.sustainability .sec--04 .list {
  border-top:3px solid #959595;
}

.sustainability .sec--04 .question {
  display: flex;
  align-items: center;
  position: relative;
  padding:40px 80px 40px 20px;
  cursor: pointer;
  border-bottom:1px solid #d2d2d2;
}

.sustainability .sec--04 .question::before {
  content:"";
  display: block;
  position: absolute;
  top:0;
  right:20px;
  bottom: 0;
  width:23px;
  height:12px;
  margin:auto;
  background:url('/en/img/sub/about/sustainability/sec04_arrow.png') no-repeat center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.sustainability .sec--04 .question_tit {
  font-size:2.8rem;
  font-weight:700;
}

.sustainability .sec--04 .answer {
  max-height:0;
  background-color: #f5f5f5;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
}

.sustainability .sec--04 .answer_txt {
  padding:80px 60px;
}

.sustainability .sec--04 .answer_txt p {
  font-size:2rem;
  line-height:2;
  margin-bottom:50px;
}

.sustainability .sec--04 .answer_txt p:last-child {
  margin-bottom:0px;
}

.sustainability .sec--04 .question.active::before {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

@media screen and (max-width:1200px) {
  .sustainability .sustainability_tit {
    font-size:3.4rem;
  }
  
  .sustainability .sec--01 .list .box {
    width:220px;
    height:220px;
  }

  .sustainability .sec--01 .list {
    margin:-40px;
  }

  .sustainability .sec--01 .list li {
    padding:40px;
  }

  .sustainability .sec--01 .list .link {
    padding:30px;
  }

  .sustainability .sec--01 .list .t01 {
    font-size:1.8rem;
  }

  .sustainability .sec--01 .list .t02 {
    font-size:1.6rem;
  }

  .sustainability .sec--02 .list .num span {
    font-size:2.4rem;
  }

  .sustainability .sec--02 .list .txt .t01 {
    font-size:2rem;
  }

  .sustainability .sec--03 .list {
    padding-bottom:120px;
  }

  .sustainability .sec--03 .icon-item .txt .t01 {
    font-size:2rem;
  }
  
  .sustainability .sec--03 .icon-item .txt .t02 {
    font-size:2rem;
  }
  
  .sustainability .sec--03 .icon-item .txt .t02 span {
    font-size:3.8rem;
  }

  .sustainability .sec--04 .question_tit {
    font-size:2.4rem;
  }

  .sustainability .sec--04 .answer_txt p {
    font-size:1.8rem;
  }
}
@media screen and (max-width:992px) {
  .sustainability .sustainability_tit {
    margin-bottom:40px;
  }

  .sustainability .sec--01 .sec-con {
    padding-top:60px;
  }
  
  .sustainability .sec--01 .list {
    flex-wrap: wrap;
    margin:-10px;
  }

  .sustainability .sec--01 .list li {
    flex:1 1 33.33%;
    max-width:33.33%;
    padding:10px;
  }

  .sustainability .sec--01 .list li::after {
    display: none;
  }

  .sustainability .sec--01 .list .link {
    width:100%;
    padding:10px;
    border-radius:0px;
  }

  .sustainability .sec--01 .list .box {
    width:100%;
    border-radius:0px;
  }

  .sustainability .sec--01 .list .box::after {
    border-radius:0px;
  }

  .sustainability .sec--01 .list .txt {
    margin:20px 0px 12px;
  }

  .sustainability .sec--01 .list .t02 {
    margin-top:6px;
  }

  .sustainability .sec--02 .list {
    margin:-6px 0px;
  }

  .sustainability .sec--02 .list li {
    padding:6px 0px;
  }

  .sustainability .sec--02 .list .num {
    width:60px;
    height:60px;
  }

  .sustainability .sec--02 .list .txt {
    width:calc(100% - 60px);
    padding:0px 22px;
  }

  .sustainability .sec--03 .list {
    margin:-12px;
    padding-bottom:100px;
  }

  .sustainability .sec--03 .list li {
    padding:12px;
  }

  .sustainability .sec--03 .icon-item {
    padding:0px 40px;
  }

  .sustainability .sec--03 .icon-item .img img {
    width: 105px;
  }

  .sustainability .sec--03 .icon-item .txt {
    margin-top:40px;
  }

  .sustainability .sec--04 .question {
    padding:30px 60px 30px 16px;
  }

  .sustainability .sec--04 .question::before {
    right:16px;
  }

  .sustainability .sec--04 .answer_txt {
    padding:60px 40px;
  }

  .sustainability .sec--04 .answer_txt p {
    margin-bottom:40px;
  }
}
@media screen and (max-width:768px) {
  .sustainability .sustainability_tit {
    font-size:2.8rem;
    margin-bottom:30px;
  }

  .sustainability .sec--01 .sec-con {
    padding-top:40px;
  }

  .sustainability .sec--01 .list {
    margin:-6px;
  }

  .sustainability .sec--01 .list li {
    padding:6px;
  }

  .sustainability .sec--01 .list .link {
    padding:6px;
  }

  .sustainability .sec--01 .list .box {
    height:180px;
  }

  .sustainability .sec--01 .list .icon img {
    width:55px;
  }

  .sustainability .sec--01 .list .txt {
    margin:16px 0px 6px;
  }

  .sustainability .sec--01 .list .t01 {
    font-size:1.6rem;
  }

  .sustainability .sec--01 .list .t02 {
    font-size:1.4rem;
    margin-top:4px;
  }

  .sustainability .sec--02 .list {
    margin:-4px 0px;
  }

  .sustainability .sec--02 .list li {
    padding:4px 0px;
  }

  .sustainability .sec--02 .list .num {
    width:100%;
    height:44px;
    padding:10px 0px;
  }

  .sustainability .sec--02 .list .num span {
    font-size:2rem;
  }

  .sustainability .sec--02 .list .txt {
    width:100%;
    padding:10px 16px;
  }

  .sustainability .sec--02 .list .txt .t01 {
    font-size:1.8rem;
  }

  .sustainability .sec--03 .list {
    margin:-6px;
    padding-bottom:80px;
  }

  .sustainability .sec--03 .list li {
    padding:6px;
  }

  .sustainability .sec--03 .icon-item {
    padding:0px 30px;;
  }

  .sustainability .sec--03 .icon-item .txt {
    margin-top:30px;
  }

  .sustainability .sec--03 .icon-item .txt .t01 {
    font-size:1.8rem;
  }

  .sustainability .sec--03 .icon-item .txt .t02 {
    font-size:1.8rem;
  }

  .sustainability .sec--03 .icon-item .txt .t02 span {
    font-size:3rem;
  }

  .sustainability .sec--04 .question {
    padding:22px 40px 22px 12px;
  }

  .sustainability .sec--04 .question::before {
    right:12px;
    width:18px;
    background-size:18px auto;
  }

  .sustainability .sec--04 .question_tit {
    font-size:2rem;
  }

  .sustainability .sec--04 .answer_txt {
    padding:40px 30px;
  }

  .sustainability .sec--04 .answer_txt p {
    font-size:1.6rem;
    margin-bottom:30px;
  }
}
@media screen and (max-width:576px) {
  .sustainability .sustainability_tit {
    font-size:2.4rem;
    margin-bottom:22px;
  }

  .sustainability .sec--01 .sec-con {
    padding-top:30px;
  }

  .sustainability .sec--01 .list {
    margin:-4px;
  }

  .sustainability .sec--01 .list li {
    flex:1 1 100%;
    max-width:100%;
    padding:4px;
  }

  .sustainability .sec--01 .list .icon img {
    width:45px;
  }

  .sustainability .sec--01 .list .box {
    flex-direction: row;
    height:auto;
    padding:10px 20px;
  }

  .sustainability .sec--01 .list .txt {
    width:calc(100% - 60px);
    margin:0px 12px;
    text-align: left;
  }

  .sustainability .sec--01 .list .t01 {
    font-size:1.4rem;
  }

  .sustainability .sec--01 .list .t02 {
    font-size:1.3rem;
  }

  .sustainability .sec--01 .list .arrow img {
    width:24px;
  }

  .sustainability .sec--02 .list .num {
    padding:6px 0px;
    height:34px;
  }

  .sustainability .sec--02 .list .num span {
    font-size:1.8rem;
  }

  .sustainability .sec--02 .list .txt {
    padding:6px 12px;
  }

  .sustainability .sec--02 .list .txt .t01 {
    font-size:1.6rem;
  }

  .sustainability .sec--03 .list {
    margin:-4px;
    padding-bottom:60px;
  }

  .sustainability .sec--03 .list li {
    flex:1 1 100%;
    max-width:100%;
    padding:4px;
  }

  .sustainability .sec--03 .list img {
    width:100%;
  }

  .sustainability .sec--03 .icon {
    margin:-22px 0px;
    border-top:1px solid #c9c9c9;
    border-bottom:1px solid #c9c9c9;
  }

  .sustainability .sec--03 .icon-item  {
    flex:1 1 100%;
    max-width:100%;
    border-right:0px;
    border-bottom:1px solid #c9c9c9;
    padding:22px 15px;
  }

  .sustainability .sec--03 .icon-item .img img {
    width:75px;
  }

  .sustainability .sec--03 .icon-item .txt {
    margin-top:22px;
  }

  .sustainability .sec--03 .icon-item .txt .t01 {
    font-size:1.6rem;
  }

  .sustainability .sec--03 .icon-item .txt .t02 {
    font-size:1.6rem;
  }

  .sustainability .sec--03 .icon-item .txt .t02 span {
    font-size:2.6rem;
  }

  .sustainability .sec--04 .question {
    padding:16px 30px 16px 6px;
  }

  .sustainability .sec--04 .question::before {
    right:6px;
    width:14px;
    background-size:14px auto;
  }

  .sustainability .sec--04 .question_tit {
    font-size:1.8rem;
  }

  .sustainability .sec--04 .answer_txt {
    padding:30px 22px;
  }

  .sustainability .sec--04 .answer_txt p {
    font-size:1.4rem;
    margin-bottom:22px;
  }
}


/* Global */
.global .sec-con {
  padding-top:80px;
}

.global .global-maps {
  position: relative;
}

.global .global-maps .img img {
  display: block;
  position: relative;
  left:50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width:none;
}

.global .global-maps .img .img_mo {
  display: none;
}

.global .global-maps__pin {
  position: absolute;
  top:0;
  left:50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width:100%;
  height:100%;
  z-index:2;
}

.global .global-maps__pin .pin-item {
  position: absolute;
  cursor: pointer;
}

.global .global-maps__pin .pin-item--01 {
  top:268px;
  left:70px;
}

.global .global-maps__pin .pin-item--02 {
  right: 570px;
  bottom:216px;
}

.global .global-maps__pin .pin-item--03 {
  top:260px;
  right: 510px;
}

.global .global-maps__pin .pin-item--04 {
  top:223px;
  right: 212px;
}

.global .global-maps__pin .pin-item--05 {
  right: 20px;
  bottom:200px;
}

.global .global-maps__pin .pin-item__title {
  text-align: center;
  position: relative;
}

.global .global-maps__pin .pin-item__title span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width:150px;
  height:40px;
  border-radius:50px;
  background-color: #fff;
  box-shadow: 0px 6px 6.48px 1.52px rgba(96, 96, 96, 0.3);
  font-size:1.8rem;
}

.global .global-maps__pin .pin-item__title::after {
  content:"";
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left:50%;
  bottom:-40px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width:28px;
  height:28px;
  background:url('/en/img/main/m_global__pin.png') no-repeat center;
  opacity:0;
  animation:global-pin 1.5s ease-out infinite;
}

.global .global-maps .pin-item__menu {
  width:calc(100% + 40px);
  position: absolute;
  top:64px;
  left:50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color:rgba(67,67,67,.8);
  padding:20px;
  text-align: left;
  opacity:0;
  visibility: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  pointer-events: none;
}

.global .global-maps .pin-item__menu li {
  font-size: 1.5rem;
  line-height:1.2;
  color:#fff;
  padding-bottom:8px;
}

.global .global-maps .pin-item__menu li:last-child {
  padding-bottom:0px;
}

.global .global-maps .info {
  display: none;
}

@keyframes global-pin {
  0% {
    opacity:0;
  }
  50% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}
@media screen and (min-width:1201px) {
  .global .global-maps .pin-item__menu.on {
    opacity:1;
    visibility: visible;
  }
}
@media screen and (max-width:1200px) {
  .global .global-maps__pin {
    display: none;
  }

  .global .global-maps .img img {
    display: none;
    max-width:100%;
    left:unset;
    -webkit-transform: none;
    transform: none;
  }

  .global .global-maps .img .img_mo {
    display:block;
  }

  .global .global-maps .img .img_mo .st0 {
    fill:#A1A2A5;
  }

  .global .global-maps .img .img_mo .st1 {
    opacity:0.3;
    fill:#F6B248;
  }

  .global .global-maps .img .img_mo .st2 {
    fill:#F6B248;
  }

  .global .global-maps .img .img_mo .st3 {
    fill:#FFFFFF;
  }

  .global .global-maps .img .img_mo .cicle-text--font {
    font-size:3rem;
    font-weight:700;
    color:#000;
  }

  .global .global-maps .img .img_mo .cicle-ani {
    animation:global-pin 1.5s ease-out infinite;
  }

  .global .global-maps .info {
    display: flex;
    flex-wrap: wrap;
    margin:0px -15px -20px;
  }

  .global .global-maps .info-item {
    flex:0 0 50%;
    max-width:50%;
    text-align: left;
    padding:20px 15px;
  }

  .global .global-maps .info-item__tit {
    border-bottom:1px solid #aaa;
  }

  .global .global-maps .info-item__tit span {
    display: inline-block;
    font-size:1.8rem;
    font-weight:700;
    color:#15468d;
    padding-bottom:16px;
  }

  .global .global-maps .info-item__list {
    display: flex;
    flex-wrap: wrap;
    margin:0px -6px;
    padding-top:16px;
  }

  .global .global-maps .info-item__list dd {
    flex:0 0 33.33%;
    max-width:33.33%;
    font-size:1.4rem;
    padding:0px 6px 6px;
  }

  .global .global-maps .info-item__list dd:last-child {
    padding-bottom:0px;
  }
}
@media screen and (max-width:992px) {
  .global .sec-con {
    padding-top:60px;
  }
}
@media screen and (max-width:768px) {
  .global .sec-con {
    padding-top:40px;
  }

  .global .global-maps .img .img_mo .cicle-text--font {
    font-size:3.8rem;
  }

  .global .global-maps .info {
    margin:0px -15px -16px;
  }

  .global .global-maps .info-item {
    flex:0 0 100%;
    max-width:100%;
    padding:16px 15px;
  }

  .global .global-maps .info-item__tit span {
    font-size:1.6rem;
    padding-bottom:10px;
  }

  .global .global-maps .info-item__list {
    padding-top:10px;
  }

  .global .global-maps .info-item__list dd {
    font-size:1.3rem;
    padding-bottom:4px;
  }
}
@media screen and (max-width:576px) {
  .global .sec-con {
    padding-top:30px;
  }

  .global .global-maps .img .img_mo .cicle-text--font {
    font-size:4.6rem;
  }

  .global .global-maps .info-item__list dd {
    flex:0 0 50%;
    max-width:50%;
  }
}


/* Contact Us */
.location .sec-con {
  padding-top:80px;
}

.location .tab-menu {
  display: flex;
  max-width:620px;
  margin:0px -5px;
}

.location .tab-menu &gt; li {
  flex:1 1 50%;
  max-width:50%;
  padding:0px 5px;
}

.location .tab-menu .button {
  width:100%;
  height:60px;
  font-size:2.4rem;
  color:#8c8c8c;
  background-color: #f5f5f5;
  border-radius:0px;
}

.location .tab-area {
  position: relative;
}

.location .tab-area &gt; li {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.location .tab-area .block {
  padding-top:100px;
}

.location .tab-area .din {
  display: flex;
  margin-bottom:100px;
}

.location .tab-area .din:last-child {
  margin-bottom:0px;
}

.location .tab-area .lt,
.location .tab-area .rt {
  flex:1 1 50%;
  max-width:50%;
}

.location .tab-area .rt {
  padding:50px 0px 50px 100px;
}

.location .tab-area .map {
  position: relative;
  width:100%;
  height:576px;
  /* padding-top: calc(576/720*100%); */
  overflow: hidden;
}

.location .tab-area .map iframe {
  position: absolute;
  top:50%;
  left:50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width:100%;
  height:100%;
}

.location .tab-area .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height:100%;
}

.location .tab-area .info_tit p {
  font-size:3.2rem;
  font-weight:700;
}

.location .tab-area .info_con dl {
  display: flex;
  padding-bottom:30px;
}

.location .tab-area .info_con dl:last-child {
  padding-bottom:0px;
}

.location .tab-area .info_con dt {
  display: block;
  width:120px;
  font-size:2.4rem;
  line-height:1.7;
  font-weight:700;
}

.location .tab-area .info_con dd {
  display: block;
  width:calc(100% - 120px);
  font-size:2.4rem;
  line-height:1.7;
}

.location .tab-menu &gt; li.on .button {
  color:#fff;
  background-color: #f7b249;
}

.location .tab-area &gt; li.on {
  display: block;
  height:auto;
  position:relative;
  animation: contents-on ease-in-out .5s forwards;
}

@keyframes contents-on {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media screen and (max-width:1200px) {
  .location .tab-menu .button {
    height:50px;
    font-size:2rem;
  }

  .location .tab-area .info_tit p {
    font-size:2.4rem;
  }

  .location .tab-area .info_con dt {
    font-size:2rem;
  }

  .location .tab-area .info_con dd {
    font-size:2rem;
  }
}
@media screen and (max-width:992px) {
  .location .sec-con {
    padding-top:60px;
  }

  .location .tab-menu .button {
    height:46px;
  }

  .location .tab-area .block {
    padding-top:80px;
  }

  .location .tab-area .din {
    flex-wrap: wrap;
    margin-bottom:80px;
  }

  .location .tab-area .lt, .location .tab-area .rt {
    flex:1 1 100%;
    max-width:100%;
  }

  .location .tab-area .rt {
    padding:50px 0px 0px;
  }

  .location .tab-area .map {
    height:0;
    padding-top: calc(576/720*100%);
  }

  .location .tab-area .info_tit {
    margin-bottom:30px;
  }

  .location .tab-area .info_con dl {
    padding-bottom:22px;
  }
}
@media screen and (max-width:768px) {
  .location .sec-con {
    padding-top:40px;
  }

  .location .tab-menu {
    margin:0px -2px;
  }

  .location .tab-menu &gt; li {
    padding:0px 2px;
  }

  .location .tab-menu .button {
    height:42px;
    font-size:1.8rem;
  }

  .location .tab-area .block {
    padding-top:60px;
  }

  .location .tab-area .din {
    margin-bottom:60px;
  }

  .location .tab-area .rt {
    padding:40px 0px 0px;
  }

  .location .tab-area .info_tit {
    margin-bottom:22px;
  }

  .location .tab-area .info_tit p {
    font-size:2rem;
  }

  .location .tab-area .info_con dl {
    padding-bottom:16px;
  }

  .location .tab-area .info_con dt {
    font-size:1.8rem;
    line-height:1.5;
  }

  .location .tab-area .info_con dd {
    font-size:1.8rem;
    line-height:1.5;
  }
}
@media screen and (max-width:576px) {
  .location .sec-con {
    padding-top:30px;
  }

  .location .tab-menu .button {
    height:38px;
    font-size:1.6rem;
  }

  .location .tab-area .block {
    padding-top:40px;
  }

  .location .tab-area .din {
    margin-bottom:40px;
  }

  .location .tab-area .rt {
    padding:30px 0px 0px;
  }

  .location .tab-area .info_tit {
    margin-bottom:16px;
  }

  .location .tab-area .info_tit p {
    font-size:1.8rem;
  }

  .location .tab-area .info_con dl {
    flex-wrap: wrap;
    padding-bottom:12px;
  }

  .location .tab-area .info_con dt {
    font-size:1.6rem;
    /* margin-bottom:4px; */
  }

  .location .tab-area .info_con dd {
    width:100%;
    font-size:1.6rem;
  }
} 


/* Business */
.business .sec-con--list {
  padding-top:80px;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:992px) {
  .business .sec-con--list {
    padding-top:60px;
  }
}
@media screen and (max-width:768px) {
  .business .sec-con--list {
    padding-top:40px;
  }
}
@media screen and (max-width:576px) {
  .business .sec-con--list {
    padding-top:30px;
  }
} 


/* Rnd */
.rnd .rnd_tit {
  font-size:3.2rem;
  font-weight:700;
  margin-bottom:60px;
}

.rnd .rnd_txt {
  font-size:2.8rem;
  line-height:1.7;
  margin-top:60px;
}

.rnd .sec--01 .sec-con {
  padding-top:80px;
}

.rnd .sec--01 .list {
  display: flex;
  flex-wrap: wrap;
  margin:0px -15px;
}

.rnd .sec--01 .list li {
  flex:1 1 25%;
  max-width:25%;
  padding:0px 15px;
}

.rnd .sec--01 .list .box {
  display: flex;
  align-items: center;
  position: relative;
  width:100%;
  height:100%;
  padding:45px 30px;
  background-color: #f5f5f5;
}

.rnd .sec--01 .list .img img {
  display: block;
}

.rnd .sec--01 .list .txt {
  width:calc(100% - 69px);
  margin-left:30px;
}

.rnd .sec--01 .list .txt .t01 {
  font-size:2.4rem;
  line-height:1.4;
}

.rnd .sec--02 {
  background-color: #f5f5f5;
}

.rnd .sec--02 .list {
  display: flex;
  flex-wrap: wrap;
  margin:0px -15px;
}

.rnd .sec--02 .list li {
  flex:1 1 16.6667%;
  max-width:16.6667%;
  padding:0px 15px;
}

.rnd .sec--02 .list .box {
  display: block;
  position: relative;
  width:100%;
  height:0;
  padding-top:calc(215/215*100%);
  background-color: #fff;
  overflow: hidden;
}

.rnd .sec--02 .list .txt {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  padding:0px 30px;
  text-align: center;
}

.rnd .sec--02 .list .txt .t01 {
  font-size:2.4rem;
  font-weight:700;
  line-height:1.3;
}

.rnd .sec--03 .din {
  display: flex;
  flex-wrap: wrap;
  padding-bottom:100px;
}

.rnd .sec--03 .din:last-child {
  padding-bottom:0px;
}

.rnd .sec--03 .lt,
.rnd .sec--03 .rt {
  flex:1 1 50%;
  max-width:50%;
}

.rnd .sec--03 .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height:100%;
  padding-left:120px;
  background-color: #f5f5f5;
}

.rnd .sec--03 .txt .t01 {
  font-size:3.2rem;
  font-weight:700;
  padding-bottom:40px;
}

.rnd .sec--03 .txt .t02 {
  font-size:2.8rem;
  line-height:1.7;
}

.rnd .sec--03 .img img {
  display: block;
}

@media screen and (max-width:1200px) {
  .rnd .rnd_tit {
    font-size:2.4rem;  
  }

  .rnd .rnd_txt {
    font-size:2.4rem;
  }

  .rnd .sec--01 .list {
    margin:-15px;
  }
  
  .rnd .sec--01 .list li {
    flex:1 1 50%;
    max-width:50%;
    padding:15px;
  }

  .rnd .sec--01 .list .box  {
    padding:32px 22px;
  }

  .rnd .sec--01 .list .txt {
    margin-left:22px;
  }

  .rnd .sec--01 .list .txt .t01 {
    font-size:2rem;
  }

  .rnd .sec--02 .list .txt .t01 {
    font-size:2rem;
  }

  .rnd .sec--03 .txt {
    padding-left:70px;
  }

  .rnd .sec--03 .txt .t01 {
    font-size:2.4rem;
  }

  .rnd .sec--03 .txt .t02 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width:992px) {
  .rnd .sec--01 .sec-con {
    padding-top:60px;
  }

  .rnd .rnd_tit {
    margin-bottom:40px;
  }

  .rnd .rnd_txt {
    margin-top:40px;
  }

  .rnd .sec--01 .list {
    margin:-12px;
  }

  .rnd .sec--01 .list li {
    padding:12px;
  }

  .rnd .sec--01 .list .box {
    padding:22px 16px;
  }

  .rnd .sec--01 .list .txt {
    margin-left:16px;
  }

  .rnd .sec--02 .list {
    margin:-12px;
  }

  .rnd .sec--02 .list li {
    flex:1 1 33.33%;
    max-width:33.33%;
    padding:12px;
  }

  .rnd .sec--02 .list .txt {
    padding:0px 22px;
  }

  .rnd .sec--03 .din {
    padding-bottom:80px;
  }

  .rnd .sec--03 .lt, .rnd .sec--03 .rt {
    flex:1 1 100%;
    max-width:100%;
  }

  .rnd .sec--03 .din--01 .rt,
  .rnd .sec--03 .din--03 .rt {
    order:1;
  }

  .rnd .sec--03 .din--01 .lt,
  .rnd .sec--03 .din--03 .lt {
    order:2;
  }

  .rnd .sec--03 .img img {
    width:100%;
  }

  .rnd .sec--03 .txt {
    padding:50px 40px;
  }

  .rnd .sec--03 .txt .t01 {
    padding-bottom:30px;
  }
}
@media screen and (max-width:768px) {
  .rnd .sec--01 .sec-con {
    padding-top:40px;
  }

  .rnd .rnd_tit {
    font-size:2rem;
    margin-bottom:30px;
  }

  .rnd .rnd_txt {
    font-size:2rem;
    line-height:1.5;
    margin-top:30px;
  }

  .rnd .sec--01 .list {
    margin:-6px;
  }

  .rnd .sec--01 .list li {
    padding:6px;
  }

  .rnd .sec--01 .list .box {
    padding:16px 12px;
  }

  .rnd .sec--01 .list .img img {
    width:49px;
  }

  .rnd .sec--01 .list .txt {
    width:calc(100% - 49px);
    margin-left:12px;
  }

  .rnd .sec--01 .list .txt .t01 {
    font-size:1.8rem;
  }

  .rnd .sec--02 .list {
    margin:-6px;
  }

  .rnd .sec--02 .list li {
    padding:6px;
  }

  .rnd .sec--02 .list .txt {
    padding:0px 16px;
  }

  .rnd .sec--02 .list .txt .t01 {
    font-size:1.8rem;
  }

  .rnd .sec--03 .din {
    padding-bottom:60px;
  }

  .rnd .sec--03 .txt {
    padding:40px 30px;
  }

  .rnd .sec--03 .txt .t01 {
    font-size:2rem;
    padding-bottom:22px;
  }

  .rnd .sec--03 .txt .t02 {
    font-size:2rem;
    line-height:1.5;
  }
}
@media screen and (max-width:576px) {
  .rnd .sec--01 .sec-con {
    padding-top:30px;
  }

  .rnd .rnd_tit {
    font-size: 1.8rem;
    margin-bottom:22px;
  }

  .rnd .rnd_txt {
    font-size: 1.8rem;
    margin-top:22px;
  }

  .rnd .sec--01 .list {
    margin:-4px;
  }

  .rnd .sec--01 .list li {
    flex:1 1 100%;
    max-width:100%;
    padding:4px;
  }

  .rnd .sec--01 .list .box {
    padding:12px;
  }

  .rnd .sec--01 .list .txt .t01 {
    font-size:1.6rem;
  }

  .rnd .sec--02 .list {
    margin:-4px;
  }

  .rnd .sec--02 .list li {
    flex:1 1 50%;
    max-width:50%;
    padding:4px;
  }

  .rnd .sec--02 .list .txt {
    padding:0px 12px;
  }

  .rnd .sec--02 .list .txt .t01 {
    font-size:1.6rem;
  }

  .rnd .sec--03 .din {
    padding-bottom:40px;
  }

  .rnd .sec--03 .txt {
    padding:30px 22px;
  }

  .rnd .sec--03 .txt .t01 {
    font-size:1.8rem;
    padding-bottom:16px;
  }

  .rnd .sec--03 .txt .t02 {
    font-size:1.8rem;
  }
} 


/* Natural */
.natural .natural_txt {
  font-size:2.8rem;
  line-height:1.7;
  margin-top:60px;
}

.natural .sec--01 {
  padding-bottom:0px;
}

.natural .sec--01 .sec-con {
  padding-top:80px;
}

.natural .sec--01 .list {
  display: flex;
  flex-wrap: wrap;
  margin:0px -15px;
}

.natural .sec--01 .list li {
  flex:1 1 50%;
  max-width:50%;
  padding:0px 15px;
}

.natural .sec--01 .list .box {
  display: flex;
  align-items: center;
  position: relative;
  height:100%;
  padding:45px 30px;
  background-color: #f5f5f5;
}

.natural .sec--01 .list .img img {
  display: block;
}

.natural .sec--01 .list .txt {
  width:calc(100% - 69px);
  margin-left:30px;
}

.natural .sec--01 .list .txt .t01 {
  font-size:2.4rem;
}

.natural .sec--02 .din {
  display: flex;
  flex-wrap: wrap;
  padding-bottom:100px;
}

.natural .sec--02 .din:last-child {
  padding-bottom:0px;
}

.natural .sec--02 .lt,
.natural .sec--02 .rt {
  flex:1 1 50%;
  max-width:50%;
}

.natural .sec--02 .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height:100%;
  padding-left:120px;
  background-color: #f5f5f5;
}

.natural .sec--02 .txt .t01 {
  font-size:3.2rem;
  font-weight:700;
  padding-bottom:40px;
}

.natural .sec--02 .txt .t02 {
  font-size:2.8rem;
  line-height:1.7;
}

.natural .sec--02 .img img {
  display: block;
}

@media screen and (max-width:1200px) {
  .natural .natural_txt {
    font-size:2.4rem;
  }

  .natural .sec--01 .list .box {
    padding:32px 22px;
  }

  .natural .sec--01 .list .txt {
    margin-left:22px;
  }

  .natural .sec--01 .list .txt .t01 {
    font-size:2rem;
  }

  .natural .sec--02 .txt {
    padding-left:70px;
  }

  .natural .sec--02 .txt .t01 {
    font-size:2.4rem;
  }
  
  .natural .sec--02 .txt .t02 {
    font-size:2.4rem;
  }  
}
@media screen and (max-width:992px) {
  .natural .sec--01 .sec-con {
    padding-top:60px;
  }

  .natural .natural_txt {
    margin-top:40px;
  }

  .natural .sec--01 .list {
    margin:-12px;
  }

  .natural .sec--01 .list li {
    padding:12px;
  }

  .natural .sec--01 .list .box {
    padding:22px 16px;
  }
  
  .natural .sec--01 .list .txt {
    margin-left:16px;
  }

  .natural .sec--02 .din {
    padding-bottom:80px;
  }

  .natural .sec--02 .lt, .natural .sec--02 .rt {
    flex:1 1 100%;
    max-width:100%;
  }

  .natural .sec--02 .din--01 .lt,
  .natural .sec--02 .din--03 .lt {
    order:2;
  }

  .natural .sec--02 .din--01 .rt,
  .natural .sec--02 .din--03 .rt {
    order:1;
  }

  .natural .sec--02 .img img {
    width:100%;
  }

  .natural .sec--02 .txt {
    padding:50px 40px;
  }

  .natural .sec--02 .txt .t01 {
    padding-bottom:30px;
  }
}
@media screen and (max-width:768px) {
  .natural .sec--01 .sec-con {
    padding-top:40px;
  }

  .natural .natural_txt {
    font-size:2rem;
    line-height:1.5;
    margin-top:30px;
  }

  .natural .sec--01 .list {
    margin:-6px;
  }

  .natural .sec--01 .list li {
    padding:6px;
  }

  .natural .sec--01 .list .box {
    padding:16px 12px;
  }

  .natural .sec--01 .list .img img {
    width:49px; 
  }
  
  .natural .sec--01 .list .txt {
    width:calc(100% - 49px);
    margin-left:12px;
  }

  .natural .sec--01 .list .txt .t01 {
    font-size:1.8rem;
  }

  .natural .sec--02 .din {
    padding-bottom:60px;
  }

  .natural .sec--02 .txt {
    padding:40px 30px;
  }

  .natural .sec--02 .txt .t01 {
    font-size:2rem;
    padding-bottom:22px;
  }

  .natural .sec--02 .txt .t02 {
    font-size:2rem;
    line-height:1.5;
  }
}
@media screen and (max-width:576px) {
  .natural .sec--01 .sec-con {
    padding-top:30px;
  }

  .natural .natural_txt {
    font-size:1.8rem;
    margin-top:22px;
  }

  .natural .sec--01 .list {
    margin: -4px;
  }

  .natural .sec--01 .list li {
    flex:1 1 100%;
    max-width:100%;
    padding:4px;
  }

  .natural .sec--01 .list .box {
    padding:12px;
  }

  .natural .sec--01 .list .txt .t01 {
    font-size:1.6rem;
  }

  .natural .sec--02 .din {
    padding-bottom:40px;
  }

  .natural .sec--02 .txt {
    padding:30px 22px;
  }

  .natural .sec--02 .txt .t01 {
    font-size:1.8rem;
    padding-bottom:16px;
  }

  .natural .sec--02 .txt .t02 {
    font-size:1.8rem;
  }
} 


/* Technology */
.technology .technology_tit {
  font-size:3.2rem;
  font-weight:700;
  margin-bottom:60px;
}

.technology .technology_txt {
  font-size:2.8rem;
  line-height:1.7;
  margin-top:60px;
}

.technology .sec--01 {
  padding-bottom:0px;
}

.technology .sec--01 .sec-con {
  padding-top:80px;
}

.technology .sec--01 .list {
  display: flex;
  flex-wrap: wrap;
  margin:0px -15px;
}

.technology .sec--01 .list li {
  flex:1 1 50%;
  max-width:50%;
  padding:0px 15px;
}

.technology .sec--01 .list .box {
  display: flex;
  align-items: center;
  position: relative;
  height:100%;
  padding:45px 30px;
  background-color: #f5f5f5;
}

.technology .sec--01 .list .img img {
  display: block;
}

.technology .sec--01 .list .txt {
  width:calc(100% - 69px);
  margin-left:30px;
}

.technology .sec--01 .list .txt .t01 {
  font-size:2.4rem;
}

.technology .sec--02 .block {
  padding-bottom:90px;
}

.technology .sec--02 .block:last-child {
  padding-bottom:0px;
}

.technology .sec--02 .list {
  display: flex;
  flex-wrap: wrap;
  margin:-15px;
}

.technology .sec--02 .list--01 li {
  flex:1 1 25%;
  max-width:25%;
  padding:15px;
}

.technology .sec--02 .list--01 li:last-child .img::after {
  display: none;
}

.technology .sec--02 .list--01 .img {
  position: relative;
}

.technology .sec--02 .list--01 .img::after {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  right:-20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width:10px;
  height:17px;
  background:url('/en/img/sub/center/technology/sec02_arrow.png') no-repeat center;
}

.technology .sec--02 .list--01 .img img {
  display: block;
}

.technology .sec--02 .list--02 li {
  flex:1 1 50%;
  max-width:50%;
  padding:15px;
}

.technology .sec--02 .list--02 .box {
  height:100%;
  padding:30px;
  background-color: #f5f5f5;
}

.technology .sec--02 .list--02 .txt {
  text-align: center;
  margin:20px 0px 50px;
}

.technology .sec--02 .list--02 .txt .t01 {
  font-size:2.7rem;
}

.technology .sec--02 .list--02 .img img {
  display: block;
}

@media screen and (max-width:1200px) {
  .technology .technology_tit {
    font-size:2.4rem;
  }
  
  .technology .technology_txt {
    font-size:2.4rem;
  }

  .technology .sec--01 .list .box {
    padding:32px 22px;
  }

  .technology .sec--01 .list .txt {
    margin-left:22px;
  }

  .technology .sec--01 .list .txt .t01 {
    font-size:2rem;
  }

  .technology .sec--02 .list--02 .box {
    padding:22px;
  }

  .technology .sec--02 .list--02 .txt {
    margin:16px 0px 40px;
  }

  .technology .sec--02 .list--02 .txt .t01 {
    font-size:2.4rem;
  }
}
@media screen and (max-width:992px) {
  .technology .sec--01 .sec-con {
    padding-top:60px;
  }

  .technology .technology_tit {
    margin-bottom:40px;
  }
  

  .technology .technology_txt {
    margin-top:40px;
  }

  .technology .sec--01 .list {
    margin:-12px;
  }
  
  .technology .sec--01 .list li {
    padding:12px;
  }

  .technology .sec--01 .list .box {
    padding:22px 16px;
  }

  .technology .sec--01 .list .txt {
    margin-left:16px;
  }

  .technology .sec--02 .list {
    margin:-12px;
  }

  .technology .sec--02 .list--01 li {
    padding:12px;
  }

  .technology .sec--02 .list--01 .img::after {
    right:-18px;
  }

  .technology .sec--02 .list--02 li {
    padding:12px;
  }

  .technology .sec--02 .list--02 .box {
    padding:16px;
  }

  .technology .sec--02 .list--02 .txt {
    margin:12px 0px 30px;
  }
}
@media screen and (max-width:768px) {
  .technology .sec--01 .sec-con {
    padding-top:40px;
  }

  .technology .technology_tit {
    font-size:2rem;
    margin-bottom:30px;
  }
  

  .technology .technology_txt {
    font-size:2rem;
    line-height:1.5;
    margin-top:30px;
  }

  .technology .sec--01 .list {
    margin:-6px;
  }

  .technology .sec--01 .list li {
    padding:6px;
  }

  .technology .sec--01 .list .box {
    padding:16px 12px;
  }

  .technology .sec--01 .list .img img {
    width:49px;
  }

  .technology .sec--01 .list .txt {
    width:calc(100% - 49px);
    margin-left:12px;
  }

  .technology .sec--01 .list .txt .t01 {
    font-size:1.8rem;
  }

  .technology .sec--02 .list {
    margin:-6px;
  }

  .technology .sec--02 .list--01 li {
    flex:1 1 50%;
    max-width:50%;
    padding:6px;
  }

  .technology .sec--02 .list--01 .img::after {
    display: none;
  }

  .technology .sec--02 .list--01 .img img {
    width:100%;
  }

  .technology .sec--02 .list--02 li {
    padding:6px;
  }

  .technology .sec--02 .list--02 .box {
    padding:12px;
  }

  .technology .sec--02 .list--02 .txt {
    margin:6px 0px 22px;
  }

  .technology .sec--02 .list--02 .txt .t01 {
    font-size:2rem;
  }
}
@media screen and (max-width:576px) {
  .technology .sec--01 .sec-con {
    padding-top:30px;
  }

  .technology .technology_tit {
    font-size:1.8rem;
    margin-bottom:22px;
  }

  .technology .technology_txt {
    font-size:1.8rem;
    margin-top:22px;
  }

  .technology .sec--01 .list {
    margin:-4px;
  }

  .technology .sec--01 .list li {
    flex:1 1 100%;
    max-width:100%;
    padding:4px;
  }

  .technology .sec--01 .list .box {
    padding:12px;
  }

  .technology .sec--01 .list .txt .t01 {
    font-size:1.6rem;
  }

  .technology .sec--02 .list {
    margin:-4px;
  }

  .technology .sec--02 .list--01 li {
    padding:4px;
  }

  .technology .sec--02 .list--02 li {
    flex:1 1 100%;
    max-width:100%;
  }

  .technology .sec--02 .list--02 .txt {
    margin:6px 0px 16px;
  }

  .technology .sec--02 .list--02 .txt .t01 {
    font-size:1.8rem;
  }
}


/* Careers */
.careers .careers_tit {
  font-size:3.2rem;
  font-weight:700;
  margin-bottom:60px;
}

.careers .careers_tit span {
  font-weight:400;
}

.careers .sec--01 .sec-con {
  padding-top:80px;
}

.careers .sec--01 .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin:-30px;
}

.careers .sec--01 .list li {
  flex:0 0 20%;
  max-width:20%;
  padding:30px;
  text-align: center;
}

.careers .sec--01 .list .img {
  position: relative;
}

.careers .sec--01 .list .img::after {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  right:-34px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width:10px;
  height:17px;
  background:url('/en/img/sub/with/careers_arrow.png') no-repeat center;
}

.careers .sec--01 .list li:last-child .img::after {
  display: none;
}

.careers .sec--01 .list .img img {
  display: block;
}

.careers .sec--01 .list .txt {
  padding-top:40px;
}

.careers .sec--01 .list .txt .t01 {
  font-size:2.4rem;
}

.careers .sec--02 {
  background-color: #f5f5f5;
}

.careers .sec--02 .guide {
  border-top:3px solid #bfbfbf;
}

.careers .sec--02 .guide dl {
  display: flex;
  align-items: center;
  padding:50px 40px;
  border-bottom:1px solid #bfbfbf;
}

.careers .sec--02 .guide dt {
  display: inline-flex;
  width:320px;
  font-size:2.4rem;
  font-weight:700;
}

.careers .sec--02 .guide dd {
  display: inline-flex;
  align-items: center;
  width:calc(100% - 320px);
  font-size:2.4rem;
}

.careers .sec--02 .guide dd span {
  display: inline-block;
  position: relative;
  width:2px;
  height:20px;
  margin:0 30px;
  background-color: #434343;
}

.careers .sec--02 .guide .caution {
  display: flex;
  justify-content: flex-end;
  font-size:1.6rem;
  color:#808080;
  padding-top:20px;
}

.careers .sec--02 .btns {
  display: flex;
  justify-content: center;
  margin-top:60px;
}

.careers .sec--02 .btns .button {
  max-width:350px;
  width:100%;
  height:80px;
  font-size:2.4rem;
  font-weight:700;
  border-radius:0px;
}

.careers .sec--03 .form-table {
  display: block;
  border-top:3px solid #bfbfbf;
}

.careers .sec--03 .form-table .row {
  display: flex;
  align-items: center;
  width:100%;
  border-bottom:1px solid #bfbfbf;
}

.careers .sec--03 .form-table .th {
  display: block;
  width:180px;
  font-size:2.4rem;
  font-weight:700;
  padding:40px 0px 40px 40px;
}

.careers .sec--03 .form-table .td {
  width:calc(100% - 180px);
  height:120px;
  padding:35px 0px;
}

.careers .sec--03 .form-table .td--w100 {
  display: flex;
  align-items: center;
  width:100%;
}

.careers .sec--03 .form-table input {
  max-width:540px;
  width:100%;
  height:50px;
  font-size:1.8rem;
  background-color: #f5f5f5;
  padding:0px 15px;
}

.careers .sec--03 .form-table .radio-list {
  margin:0px -30px;
  padding:0px 40px;
}

.careers .sec--03 .form-table .radio-list li {
  display: inline-block;
  vertical-align: middle;
  padding:0px 30px;
}

.careers .sec--03 .form-table .radio-list label {
  cursor: pointer;
  font-size:2.4rem;
  font-weight:700;
}

.careers .sec--03 .form-table .radio-list label span {
  font-size: inherit;
  font-weight: inherit;
  color:inherit;
}

.careers .sec--03 .form-table .radio-list input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.careers .sec--03 .form-table .radio-list input[type="radio"]+label {
  display: inline-block;
  position: relative;
  padding-right: 45px;
  cursor: pointer;
}

.careers .sec--03 .form-table .radio-list input[type="radio"]+label::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('/en/img/sub/with/careers_radio__off.png');
}

.careers .sec--03 .form-table .radio-list input[type="radio"]:checked+label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('/en/img/sub/with/careers_radio__on.png');
  transition:all .15s ease;
}

.careers .sec--03 .form-table .file-wrap {
  display: flex;
  align-items: center;
}

.careers .sec--03 .form-table .file-box {
  position: relative;
  max-width:540px;
  width:100%;
  height:50px;
  background-color: #f5f5f5;
}

.careers .sec--03 .form-table .file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
  /* cursor: pointer; */
  border: 0px;
  padding: 0px;
  pointer-events: none;
}

.careers .sec--03 .form-table .file-label {
  display: inline-flex;
  align-items: center;
  width:100%;
  height:100%;
  font-size:1.8rem;
  color:#434343;
  padding:0px 15px;
}

.careers .sec--03 .form-table .file-btn {
  display:inline-flex;
  justify-content: center;
  align-items: center;
  max-width:160px;
  width:100%;
  height:50px;
  background-color: #d9d9d9;
  font-size:2rem;
  margin-left:16px;
  cursor: pointer;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.careers .sec--03 .form-table .file-guide {
  font-size:1.6rem;
  color:#808080;
  margin-left:20px;
}

.careers .sec--03 .form-btn {
  display: flex;
  justify-content: center;
  margin-top:60px;
}

.careers .sec--03 .form-btn .button {
  max-width:350px;
  width:100%;
  height:80px;
  font-size:2.4rem;
  font-weight:700;
  border-radius:0px;
}

@media screen and (min-width:1201px){
  .careers .sec--03 .form-table .file-btn:hover {
    background-color: #aaa;
  }
}
@media screen and (max-width:1200px) {
  .careers .careers_tit {
    font-size:2.4rem;
  }

  .careers .sec--01 .list .txt .t01 {
    font-size:2rem;
  }

  .careers .sec--02 .guide dl {
    padding:40px 30px;
  }

  .careers .sec--02 .guide dt {
    width:240px;
    font-size:2rem;
  }

  .careers .sec--02 .guide dd {
    width:calc(100% - 240px);
    font-size:2rem;
  }

  .careers .sec--02 .guide dd span {
    height:18px;
    margin:0px 22px;
  }

  .careers .sec--02 .guide .caution {
    font-size:1.4rem;
  }

  .careers .sec--02 .btns .button {
    max-width:280px;
    height:60px;
    font-size:2rem;
  }

  .careers .sec--03 .form-table .th {
    font-size:2rem;
    padding:30px 0px 30px 30px;
  }

  .careers .sec--03 .form-table .td {
    height:auto;
    padding:28px 0px;
  }
  
  .careers .sec--03 .form-table .td--w100 {
    padding:38px 0px;
  }

  .careers .sec--03 .form-table .radio-list {
    margin:0px -22px;
    padding:0px 30px;
  }

  .careers .sec--03 .form-table .radio-list li {
    padding:0px 22px;
  }

  .careers .sec--03 .form-table .radio-list label {
    font-size:2rem;
  }

  .careers .sec--03 .form-table input {
    height:44px;
    font-size:1.6rem;
  }

  .careers .sec--03 .form-table .file-box {
    height:44px;
  }

  .careers .sec--03 .form-table .file-label {
    font-size:1.6rem;
  }

  .careers .sec--03 .form-table .file-btn {
    max-width:120px;
    height:44px;
    font-size:1.8rem;
  }

  .careers .sec--03 .form-table .file-guide {
    font-size:1.4rem;
  }

  .careers .sec--03 .form-btn .button {
    max-width: 280px;
    height: 60px;
    font-size: 2rem;
  }
}
@media screen and (max-width:992px) {
  .careers .sec--01 .sec-con {
    padding-top:60px;
  }

  .careers .careers_tit {
    margin-bottom:40px;
  }

  .careers .sec--01 .list {
    margin:-22px;
  }

  .careers .sec--01 .list li {
    padding:22px;
  }

  .careers .sec--01 .list .img::after {
    right:-28px;
  }

  .careers .sec--01 .list .txt {
    padding-top:30px;
  }

  .careers .sec--02 .guide dl {
    padding:30px 22px;
  }

  .careers .sec--02 .guide .caution {
    padding-top:16px;
  }

  .careers .sec--02 .btns {
    margin-top:40px;
  }

  .careers .sec--03 .form-table .row {
    flex-wrap: wrap;
  }

  .careers .sec--03 .form-table .th {
    width:100%;
    padding:16px;
    background-color: #f5f5f5;
  }

  .careers .sec--03 .form-table .td {
    width:100%;
    padding:16px 0px;
  }

  .careers .sec--03 .form-table .td--w100 {
    padding:26px 0px;
  }

  .careers .sec--03 .form-table .radio-list {
    margin:0px -16px;
    padding:0px 16px;
  }

  .careers .sec--03 .form-table .radio-list li {
    padding:0px 16px;
  }

  .careers .sec--03 .form-table .radio-list input[type="radio"]+label {
    padding-right:32px;
  }

  .careers .sec--03 .form-table .radio-list input[type="radio"]+label::before {
    width:20px;
    height:20px;
    background-size:auto 20px;
  }

  .careers .sec--03 .form-table .radio-list input[type="radio"]:checked+label::after {
    width:20px;
    height:20px;
    background-size:auto 20px;
  }

  .careers .sec--03 .form-table input {
    max-width:100%;
  }

  .careers .sec--03 .form-table .file-wrap {
    flex-wrap: wrap;
  }

  .careers .sec--03 .form-table .file-box {
    max-width:100%;
  }

  .careers .sec--03 .form-table .file-btn {
    max-width:100%;
    margin-left:0px;
    margin-top:6px;
  }

  .careers .sec--03 .form-table .file-guide {
    margin-left:0px;
    margin-top:16px;
  }

  .careers .sec--03 .form-btn {
    margin-top:40px;
  }
}
@media screen and (max-width:768px) {
  .careers .sec--01 .sec-con {
    padding-top:40px;
  }

  .careers .careers_tit {
    font-size:2rem;
    margin-bottom:30px;
  }

  .careers .sec--01 .list {
    justify-content: center;
    margin:-12px;
  }

  .careers .sec--01 .list li {
    flex:0 0 33.33%;
    max-width:33.33%;
    padding:12px;
  }

  .careers .sec--01 .list .img::after {
    display: none;
  }

  .careers .sec--01 .list .txt {
    padding-top:16px;
  }

  .careers .sec--01 .list .txt .t01 {
    font-size:1.8rem;
  }

  .careers .sec--02 .guide dl {
    padding:22px 16px;
  }

  .careers .sec--02 .guide dt {
    width:200px;
    font-size:1.8rem;
  }

  .careers .sec--02 .guide dd {
    width:calc(100% - 200px);
    font-size:1.8rem;
  }

  .careers .sec--02 .guide dd span {
    height:16px;
    margin:0px 16px;
  }

  .careers .sec--02 .guide .caution {
    font-size:1.3rem;
    padding-top:12px;
  }

  .careers .sec--02 .btns {
    margin-top:30px;
  }

  .careers .sec--02 .btns .button {
    max-width:240px;
    height:50px;
    font-size:1.8rem;
  }

  .careers .sec--03 .form-table .th {
    font-size:1.8rem;
    padding:12px;
  }

  .careers .sec--03 .form-table .td {
    padding:12px 0px;
  }

  .careers .sec--03 .form-table .td--w100 {
    padding:20px 0px;
  }

  .careers .sec--03 .form-table .radio-list {
    margin:0px -12px;
    padding:0px 12px;
  }

  .careers .sec--03 .form-table .radio-list li {
    padding:0px 12px;
  }

  .careers .sec--03 .form-table .radio-list label {
    font-size:1.8rem;
  }

  .careers .sec--03 .form-table input {
    font-size:1.4rem;
  }

  .careers .sec--03 .form-table .file-label {
    font-size:1.4rem;
  }

  .careers .sec--03 .form-table .file-btn {
    font-size:1.6rem;
  }

  .careers .sec--03 .form-table .file-guide {
    font-size:1.3rem;
    margin-top:12px;
  }

  .careers .sec--03 .form-btn {
    margin-top:30px;
  }

  .careers .sec--03 .form-btn .button {
    max-width: 240px;
    height: 50px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width:576px) {
  .careers .sec--01 .sec-con {
    padding-top:30px;
  }

  .careers .careers_tit {
    font-size:1.8rem;
    margin-bottom:22px;
  }

  .careers .sec--01 .list {
    margin:-6px;
  }

  .careers .sec--01 .list li {
    flex:0 0 50%;
    max-width:50%;
    padding:6px;
  }

  .careers .sec--01 .list .txt {
    padding-top:12px;
  }

  .careers .sec--01 .list .txt .t01 {
    font-size:1.6rem;
  }

  .careers .sec--02 .guide dl {
    flex-wrap: wrap;
    padding:16px 12px;
  }

  .careers .sec--02 .guide dt {
    font-size:1.6rem;
  }

  .careers .sec--02 .guide dd {
    display: block;
    width:100%;
    margin-top:6px;
    font-size:1.6rem;
    line-height:1.3;
  }

  .careers .sec--02 .guide dd span {
    display: block;
    width:0px;
    height:0px;
  }

  .careers .sec--02 .guide .caution {
    font-size:1.2rem;
    padding-top:6px;
  }

  .careers .sec--02 .btns {
    margin-top:22px;
  }

  .careers .sec--02 .btns .button {
    /* max-width:180px; */
    height:44px;
    font-size:1.6rem;
  }

  .careers .sec--03 .form-table .th {
    font-size:1.6rem;
    padding:8px;
  }

  .careers .sec--03 .form-table .td {
    padding:8px 0px;
  }

  .careers .sec--03 .form-table .td--w100 {
    padding:16px 0px;
  }

  .careers .sec--03 .form-table .radio-list {
    padding:0px 8px;
  }

  .careers .sec--03 .form-table .radio-list label {
    font-size:1.6rem;
  }

  .careers .sec--03 .form-table input {
    height:38px;
    font-size:1.3rem;
  }

  .careers .sec--03 .form-table .file-box {
    height:38px;
  }

  .careers .sec--03 .form-table .file-label {
    font-size:1.3rem;
  }

  .careers .sec--03 .form-table .file-btn {
    height:38px;
    font-size: 1.4rem;
  }

  .careers .sec--03 .form-table .file-guide {
    font-size:1.2rem;
    margin-top:6px;
  }

  .careers .sec--03 .form-btn .button {
    max-width:180px;
    height:44px;
    font-size:1.6rem;
  }
} 


/* News */
.news .sec-con--list {
  padding-top:80px;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:992px) {
  .news .sec-con--list {
    padding-top:60px;
  }
}
@media screen and (max-width:768px) {
  .news .sec-con--list {
    padding-top:40px;
  }
}
@media screen and (max-width:576px) {
  .news .sec-con--list {
    padding-top:30px;
  }
} 


/* Notice */
.notice .sec-con--list {
  padding-top:80px;
}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:992px) {
  .notice .sec-con--list {
    padding-top:60px;
  }
}
@media screen and (max-width:768px) {
  .notice .sec-con--list {
    padding-top:40px;
  }
}
@media screen and (max-width:576px) {
  .notice .sec-con--list {
    padding-top:30px;
  }
} 



/* Privacy */
.privacy .sec-con {
  padding-top:80px;
}

.privacy .privacy-text {
  width:100%;
}

.privacy .textarea {
  width: 100%;
  height: 600px;
  background-color: #f3f6f8;
  border: 1px solid #b9bdc1;
  border-radius: 0px;
  padding: 30px;
  overflow-x: hidden;
  overflow-y: auto;
}

.privacy .textarea p {
  font-size:1.8rem;
}

@media screen and (max-width:1200px) {
  .privacy .textarea p {
    font-size:1.6rem;
  }
  
}
@media screen and (max-width:992px) {
  .privacy .sec-con {
    padding-top:60px;
  }

  .privacy .textarea {
    height: 540px;
    padding: 22px;
  }
}
@media screen and (max-width:768px) {
  .privacy .sec-con {
    padding-top:40px;
  }

  .privacy .textarea {
    padding: 16px;
  }

  .privacy .textarea p {
    font-size:1.4rem;
  }
}
@media screen and (max-width:576px) {
  .privacy .sec-con {
    padding-top:30px;
  }

  .privacy .textarea {
    height:440px;
    padding: 12px;
  }

  .privacy .textarea p {
    font-size:1.3rem;
  }
  
} 

</pre></body></html>