@charset "utf-8";

/* -----------------------------------------------------------
　common
----------------------------------------------------------- */

* {box-sizing:border-box;}
img {
  max-width:100%;
  vertical-align: top;
}
.fwbold {font-weight:bold;}
.left {float:left;}
.right {float:right;}
.center {text-align:center;}
.clear {clear: both;}
.italic {font-style:italic;}
.clearfix::after {
	display: block;
	clear: both;
	content: "";
}
a {
  color:inherit;
  text-decoration:none;
}
body {
  font-family: 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size:17px;
  font-weight: 400;
  line-height:1.7;
  color:#000;  
  font-feature-settings: "palt";
} 
body.zh-CN {
  font-family: 'Noto Sans SC',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (min-width: 961px){ 
  .pc_cont {display:block!important;} 
  .sp_cont {display:none!important;} 
  .sp_br {display: none;}
}

a:hover {
  text-decoration:underline;
  color:inherit;
}
hr.anc {
  font-size: 0!important;
  border:none!important;
  height:0!important;
  margin-top:0!important;
  padding-top:0!important;
}

.ff_outfit {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}
.ff_montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

.scrollin.bottom {
  opacity: 0;
  transform: translateY(25px);
  transition: 1s;
}
.scrollin.bottom.active {
  opacity: 1;
  transform: translateY(0);
}
:root {
  --main_color: #de1a28;
}
.v2 .box {
  width: 100%;
  max-width: 1220px;
  padding: 0 50px;
  margin: auto;
}

/* -----------------------------------------------------------
  PC
----------------------------------------------------------- */
@media screen and (min-width: 961px){
  
  /* :::::::::: .v2 header :::::::::: */  

  .v2 header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    height: 90px;
    width: 100%;
    transition-property: top;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  }
  .v2 header .h1 {
    position: absolute;
    top: 50%;
    left: 40px;
    z-index: 2;
    transform: translateY(-50%);
    width: auto;
  }
  .v2 header .h1 a {
    transition: opacity 0.3s;
  }
  .v2 header .h1 a:hover {
    opacity: 0.6;
  }
  
  /* :::::::::: nav :::::::::: */

  .v2 header nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: auto;
    padding: 0;
  }
  .v2 header nav::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 90px;
    background: #fff;
    z-index: -1;
    transition: .3s;
    opacity: 0.9;
  }
  .v2 header nav > .main_nav {
    order: 1;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    z-index: auto;
    height: 100%;
  }
  .v2 header nav > .main_nav > li {
    position: relative;
    z-index: auto;
  }
  .v2 header nav > .main_nav > li > a {
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 15px;
  }
  .v2 header nav > .main_nav > li > a:hover {
    text-decoration: none;
  }
  .v2 header nav > .main_nav > li > a > span {
    position: relative;
    font-size: 15px;
    color: #000;
    z-index: 0;
    transition: color 0.3s;
  }
  .v2 header nav > .main_nav > li > a:hover > span {
    color: var(--main_color);
  }
  .v2 header nav > .main_nav > li > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 6px;
    bottom: 0;
    right: 0;
    margin: auto;
    background-color: var(--main_color);
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    pointer-events: none;
  }
  .v2 header nav > .main_nav > li.current > a::before {
    width: calc(100% - 25px);
  }
  .v2 header nav > .main_nav > li > .nav_ac {
    display: none;
  }
  .v2 header nav > .main_nav > li > .navHover {
    position: absolute;
    top: 63px;
    left: 0;
    width: auto;
    height: auto;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    transition: 0.4s;
    z-index: -1;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
  }
  .v2 header nav > .main_nav > li.active > .navHover {
    opacity: 1;
    visibility: visible;
  }
  .v2 header nav > .main_nav > li > .navHover > .navHover_wrapper {
    width: auto;
    padding: 25px 15px;
    margin: auto;
  }
  .v2 header nav > .main_nav > li > .navHover .navHover_columns {
    padding: 0;
  }

  .v2 header nav > .main_nav > li > .navHover .page_list {
    transition: .3s;
    opacity: 0;
    transform: translateY(10px);
  }
  .v2 header nav > .main_nav > li.active > .navHover .page_list {
    opacity: 1;
    transform: translateY(0);
    transition: .4s .2s;
  }
  .v2 header nav > .main_nav > li > .navHover .page_list > li {
    margin-bottom: 13px;
  }
  .v2 header nav > .main_nav > li > .navHover .page_list > li:last-of-type {
    margin-bottom: 0;
  }
  .v2 header nav > .main_nav > li > .navHover .page_list > li a {
    font-size: 14px;
    white-space: nowrap;
    color: #231815;
    transition: 0.2s;
  }
  .v2 header nav > .main_nav > li > .navHover .page_list > li a:hover {
    text-decoration: none;
    color: var(--main_color);
  }

  .v2 header nav > .sub_nav {
    order: 3;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    z-index: auto;
    height: 100%;
  }
  .v2 header nav > .sub_nav li {
    display: inline-block;
  }
  .v2 header nav > .sub_nav li.contact {
    vertical-align: middle;
    height: 100%;
    margin-left: 55px;
  }
  .v2 header nav > .sub_nav li.contact a {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 100%;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    background: var(--main_color);
    border-radius: 0 0 0 20px;
    text-decoration: none;
  }
  /* underlineアニメーション */
  .v2 header nav > .sub_nav li.contact a .en {
    position: relative;
    z-index: 1;
  }
  .v2 header nav > .sub_nav li.contact a .en::before {
    content: "";
    position: absolute;
    right: 0;
    left: auto;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: .3s;
  }
  .v2 header nav > .sub_nav li.contact a:hover .en::before {
    width: 100%;
    right: auto;
    left: 0;
  }
}

.v2 header nav > .lang_nav,
.v2 header nav > .bogo-language-switcher {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  order: 2;
  margin-left: 15px;
  padding-left: 22px;
}
.v2 header nav > .lang_nav::before,
.v2 header nav > .bogo-language-switcher::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 17px;
  height: 17px;
  margin: auto;
  background: url(../img/top/lang_icon.png) no-repeat center center / contain;
}
.v2 header nav > .lang_nav > li,
.v2 header nav > .bogo-language-switcher > li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;    
}
.v2 header nav > .lang_nav > li a,
.v2 header nav > .bogo-language-switcher > li a {
  font-size: 14px;
  font-weight: 200;
  margin-right: 4px;
  padding-right: 4px;
  border-right: 1px solid #bfbfbf;
}
.v2 header nav > .lang_nav > li:last-of-type a,
.v2 header nav > .bogo-language-switcher > li:last-of-type a {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.v2 header nav > .lang_nav > li.current a,
.v2 header nav > .bogo-language-switcher > li.current a {
  color: var(--main_color);
}
.v2 header nav > .bogo-language-switcher > li a {
  display: inline-block;
  font-size: 0;
  height: 20px;
}
.v2 header nav > .bogo-language-switcher > li.ja a::before {
  font-size: 14px;
  content: "JP";
}
.v2 header nav > .bogo-language-switcher > li.zh-CN a::before {
  font-size: 14px;
  content: "CH";
}

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

/* KV */
.v2 .kv_cont {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-height: 855px;
  height: 50%;
  background: url(../img/top/kv_bg.png) no-repeat center top / cover;
  padding-top: 90px;
}
.v2 .kv_cont .img_cont {
  position: relative;
  order: 2;
  z-index: 1;
  max-width: 825px;
  width: 50%;  
  aspect-ratio: 1 / 1.191;
}
.v2 .kv_cont .img_cont > p,
.v2 .kv_cont .img_cont > .video_cont {
  position: absolute;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: 1.2s;
}
.v2 .kv_cont.active .img_cont > p,
.v2 .kv_cont.active .img_cont > .video_cont {
  opacity: 1;
  transform: translateX(0);
}
.v2 .kv_cont .img_cont .front {
  top: 19.1%;
  left: 32.6%;
  width: 36.8%;
  z-index: 2;
  transition-delay: 0.3s;
}
.v2 .kv_cont .img_cont .video_cont {
  aspect-ratio: 9 / 17.3;
  width: 35%;
  left: 33.3%;
  top: 19.6%;
  border-radius: 12%;
  overflow: hidden;
  transition-delay: 0.3s;
}
.v2 .kv_cont .img_cont .video_cont > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v2 .kv_cont .img_cont .left-top {
  top: 9.3%;
  left: 16.6%;
  width: 20.8%;
  transition-delay: 0.6s;
}
.v2 .kv_cont .img_cont .right-bottom {
  top: 46.27%;
  left: 67%;
  width: 22.2%;
  transition-delay: 0.6s;
}
.v2 .kv_cont .img_cont .left-bottom {
  top: 58.27%;
  left: 0;
  width: 26.3%;
  transition-delay: 0.9s;
}
.v2 .kv_cont .img_cont .right-top {
  top: 5.6%;
  right: 0;
  width: 26.3%;
  transition-delay: 0.9s;
}

.v2 .kv_cont .copy_cont {
  display: flex;
  align-items: center;
  order: 1;
  max-width: 825px;
  width: 50%;
  padding: 0 0 0 30px;
}
.v2 .kv_cont .copy_cont .copy_item {
  width: 100%;
}

.v2 .kv_cont .copy_cont .main_copy,
.v2 .kv_cont .copy_cont .sub_copy {
  opacity: 0;
  transform: translateX(-30px);
  transition: 1s;
}
.v2 .kv_cont.active .copy_cont .main_copy,
.v2 .kv_cont.active .copy_cont .sub_copy {
  opacity: 1;
  transform: translateX(0);
}
.v2 .kv_cont .copy_cont .main_copy {
  margin-bottom: 35px;
  max-width: 84.5%;
}
.v2 .kv_cont .copy_cont .sub_copy {
  font-size: min(20px, 1.6vw);
  font-weight: 300;
  line-height: 1.575;
  margin-left: 10px;
  transition-delay: .2s;
}

.v2 .kv_cont .kv_scroll {
  position: absolute;
  left: 0;
  bottom: 14%;
  font-size: 12px;
  font-weight: 300;
  color: var(--main_color);
  transform: rotate(90deg);
}

/* top content */
.v2 main article {
  width: 100%;
  /* overflow: hidden; */
  overflow: clip;
}
.v2 .top_mission {
  position: relative;
  z-index: 1;
  background: url(../img/top/mission_bg.jpg) no-repeat center center / cover;
  padding: 140px 0 120px;
}
.v2 .top_mission .mission_before,
.v2 .top_mission .mission_after {
  position: absolute;
  z-index: 1;
}
.v2 .top_mission .mission_before {
  right: calc(50% + 439px);
  top: -95px;
}
.v2 .top_mission .mission_after {
  left: calc(50% + 600px);
  bottom: -67px;
}
.v2.home h2 {
  position: relative;
  z-index: 1;
  padding-top: 10px;
  line-height: 1;
}
.v2.home h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 6px;
  background: var(--main_color);
  border-radius: 10px;
}
.v2.home h2 .en {
  display: block;
  font-size: 60px;
  color: var(--main_color);
}
.v2.home h2 .jp {
  display: block;
  font-size: 15px;
  font-weight: 300;
}

.v2 .top_mission h2 {
  text-align: center;
  margin: 0 auto 45px;
}
.v2 .top_mission h2::before {
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
}
.v2 .top_mission h2 .en,
.v2 .top_mission h2 .jp {
  color: #fff;
}
.v2 .top_mission .mission {
  font-size: 33px;
  color: #fff;
  text-align: center;
  font-weight: 400;
  margin: 0 auto 45px;
}
.v2 p.more > a,
.v2 p.more > span {
  position: relative;
  font-size: 14px;
  /*font-weight: 300;*/
  color: var(--main_color);
  padding: 10px 0 10px 35px;
}
.v2 p.more > a::before,
.v2 p.more > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 26px;
  height: 26px;
  background: url(../img/top/arrow.svg) no-repeat center center / contain;
  transition: .3s;
}
.v2 p.more > a:hover {
  text-decoration: none;
}
.v2 p.more > a:hover::before,
.v2 a:hover p.more > span::before {
  transform: translateX(4px);
}
.v2 p.more > a::after,
.v2 p.more > span::after {
  content: "";
  position: absolute;
  right: 0;
  left: auto;
  bottom: 5px;
  width: 0;
  height: 1px;
  background: var(--main_color);
  transition: .3s;
}
.v2 p.more.white > a::after,
.v2 p.more.white > span::after {
  background: #fff;
}
.v2 p.more > a:hover::after,
.v2 a:hover p.more > span::after {
  width: calc(100% - 35px);
  right: auto;
  left: 35px;
}


.v2.home .top_mission .more {
  text-align: center;
}
.v2 p.more.white > a,
.v2 p.more.white > span {
  color: #fff;
}
.v2.home p.more.white > a::before,
.v2 p.more.white > span::before {
  background-image: url(../img/top/arrow_white.svg);
}

.v2 .top_service {
  position: relative;
  z-index: 1;
  padding: 175px 0 100px;
}
.v2 .top_service .service_before,
.v2 .top_service .service_after {
  position: absolute;
  z-index: -1;
}
.v2 .top_service .service_before {
  right: calc(50% + 380px);
  top: 80px;
}
.v2 .top_service .service_after {
  left: calc(50% + 505px);
  bottom: -15px;
}
.v2 .top_service .title_columns {
  display: flex;
  gap: 6.4%;
  margin: 0 0 55px;
}
.v2 .top_service .focus_cont,
.v2 .top_recruit .focus_cont {
  margin: 0 0 23px;
  border-radius: 20px;
  overflow: hidden;
}
.v2 .top_service .focus_cont a,
.v2 .top_recruit .focus_cont a {
  display: block;
  position: relative;
  z-index: 1;
  padding: 30px 200px 30px 40px;
  color: #fff;
  text-decoration: none;
}
.v2 .top_service .focus_cont a img.bg,
.v2 .top_recruit .focus_cont a img.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  transition: 0.5s;
}
.v2 .top_service .focus_cont a:hover img.bg,
.v2 .top_recruit .focus_cont a:hover img.bg {
  transform: scale(1.05);
}
.v2 .top_service .focus_cont a .focus_project,
.v2 .top_recruit .focus_cont a .focus_project {
  margin-bottom: 40px;
}
.v2 .top_service .focus_cont a h3,
.v2 .top_recruit .focus_cont a h3 {
  font-weight: 300;
  line-height: 1;
  margin-bottom: 50px;
}
.v2 .top_service .focus_cont a h3 .jp,
.v2 .top_recruit .focus_cont a h3 .jp {
  display: block;
}
.v2 .top_service .focus_cont a h3 .en,
.v2 .top_recruit .focus_cont a h3 .en {
  display: block;
  font-size: 60px;
  font-weight: 400;
}
.v2 .top_service .focus_cont .text,
.v2 .top_recruit .focus_cont .text {
  max-width: 500px;
  font-weight: 300;
}
.v2 .top_service .focus_cont .more {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 65px;
  background: var(--main_color);
  border-radius: 20px 0 20px 0;
}
.v2 .top_service .service_list {
  display: flex;
  gap: 1.7%;
  margin-bottom: 55px;
}
.v2 .top_service .service_list > li {
  width: 32.2%;
  border-radius: 20px;
  overflow: hidden;
  background: url(../img/top/service01.png) no-repeat center top / cover;
}
.v2 .top_service .service_list > li:nth-of-type(2) {
  background-image: url(../img/top/service02.png);
}
.v2 .top_service .service_list > li:nth-of-type(3) {
  background-image: url(../img/top/service03.png);
}
.v2 .top_service .service_list > li a,
.v2 .top_service .service_list > li .service_cont {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
  padding: 35px 40px;
  font-weight: 400;
}
.v2 .top_service .service_list > li a h3,
.v2 .top_service .service_list > li .service_cont h3 {
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 120px;
}
.v2 .top_service .service_list > li a p,
.v2 .top_service .service_list > li .service_cont p {
  color: #000;
  font-weight: 300;
}
.v2 .top_service .more {
  text-align: center;
}



.v2 .top_news {
  padding: 100px 0 90px; 
}
.v2 .top_news .news_columns {
  display: flex;
  gap: 2%;
}
.v2 .top_news .news_columns .title_cont {
  width: 30%;
}
.v2 .top_news .news_columns .title_cont h2 {
  margin: 0 0 50px;
}
.v2 .top_news .news_columns .title_cont h2 + p{
  margin: 0 0 40px;
}


.v2 .top_news .news_columns .news_cont {
  width: 68%;
}
.v2 .top_news .news_columns .news_list {
  border-top: 1px solid #c5c5c5;
}
.v2 .top_news .news_columns .news_list > li a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px 100px 40px 5px;
  border-bottom: 1px solid #c5c5c5;
  color: #000;
  font-size: 15px;
}
.v2 .top_news .news_columns .news_list > li a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 26px;
  height: 26px;
  background: url(../img/top/arrow.svg) no-repeat center center / contain;
  transition: .2s;
}
.v2 .top_news .news_columns .news_list > li a:hover::before {
  transform: translateX(5px);
}

.v2 .top_recruit {
  position: relative;
  z-index: 1;
  padding: 90px 0 90px;
}
.v2 .top_recruit .focus_cont a {
  padding: 50px 200px 40px 40px;
}
.v2 .top_recruit .focus_cont a h2::before {
  background: #fff;
}
.v2 .top_recruit .focus_cont a h2 {
  margin: 0 0 100px;
}
.v2 .top_recruit .focus_cont a h2 .en,
.v2 .top_recruit .focus_cont a h2 .jp {
  color: #fff;
}
.v2 .top_recruit .focus_cont a .more {
  position: absolute;
  bottom: 40px;
  right: 40px;
}
.v2 .top_recruit .bottom_copy {
  white-space: nowrap;
  position: absolute;
  z-index: -1;
  bottom: -50px;
  left: 50%;
  transform: translate(-50%, 30px);
  width: auto;
  text-align: center;
  font-size: 135px;
  color: #fff0ea;
  opacity: 0;
  transition: 1s;
}
.v2 .top_recruit .bottom_copy.active {
  transform: translate(-50%, 0);
  opacity: 1;
}

.v2 .top_movie {
  padding: 90px 0 180px;
}
.v2 .top_movie h2 {
  text-align: center;
  margin: 0 0 25px;
}
.v2 .top_movie h2::before {
  content: none;
}
.v2 .top_movie h2 .en {
  font-size: 30px;
  margin: 0 0 5px;
}
.v2 .top_movie .movie_cont {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 570px;
  margin: auto;
  aspect-ratio: 1 / 0.5625;
  /* padding-top: 56.25%; */
}
.v2 .top_movie .movie_cont > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* footer */
.v2 footer {
  position: relative;
  z-index: 1;
  padding: 130px 0 0;
  background: #ececec;
  overflow: hidden;
}
.v2 footer .footer_box {
  width: 100%;
  max-width: 1380px;
  padding: 0 50px;
  margin: auto;
}
.v2 footer .footer_bg {
  position: absolute;
  width: 1326px;
  max-width: none;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.v2 footer .footer_box .footer_columns {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin: 0 0 60px;
}
.v2 footer .footer_box .footer_columns .logo {
  margin: 0 0 50px;
}
.v2 footer .footer_box .footer_columns .footer_contact a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 400px;
  background: var(--main_color);
  border-radius: 20px;
  padding: 25px 60px 20px 25px;
  color: #fff;
  text-decoration: none;
}
.v2 footer .footer_box .footer_columns .footer_contact a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22px;
  width: 26px;
  height: 26px;
  background: url(../img/top/arrow_white.svg) no-repeat center center / contain;
  margin: auto;
  transition: .2s;
}
.v2 footer .footer_box .footer_columns .footer_contact a:hover::before {
  transform: translateX(5px);
}
.v2 footer .footer_box .footer_columns .footer_contact a .en {
  display: block;
  font-size: 36px;
  margin-right: 1em;
  line-height: 0.9;
}
.v2 footer .footer_box .footer_columns .footer_contact a .jp {
  font-size: 14px;
  line-height: 0.9;
}
.v2 footer .footer_box .footer_sitemap {
  width: 48.5%;
}
.v2 footer .footer_box .footer_sitemap > ul {
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  padding-bottom: 80px;
  border-bottom: 1px solid #c5c5c5;
}
.v2 footer .footer_box .footer_sitemap > ul > li {
  margin-right: 15%;
}
.v2 footer .footer_box .footer_sitemap > ul .title a {
  font-size: 25px;
  color: var(--main_color);
  margin: 0 0 5px;
}
.v2 footer .footer_box .footer_sitemap > ul .title:not(:first-of-type) {
  margin-top: 50px;
}
.v2 footer .footer_box .footer_sitemap > ul .page_list > li {
  margin: 0;
}
.v2 footer .footer_box .footer_sitemap > ul .page_list > li a {
  font-size: 14px;
  color: #000;
}
.v2 footer .footer_box .sns_list {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  padding: 15px 0 0;
}
.v2 footer .footer_box .sns_list a {
  transition: .5s;
}
.v2 footer .footer_box .sns_list a:hover {
  opacity: 0.7;
}
.v2 footer .footer_box .copyright {
  font-size: 10px;
  text-align: center;
  padding: 10px 0 20px;
}

/* PAGE */
.v2 .page_kv {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 820px;
  padding: 90px 0 100px;
}
.v2 .page_kv .kv_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: -1;
}
.v2 .breadcrumbs_cont {
  padding: 0 50px;
}
.v2 .breadcrumbs_cont .breadcrumbs > span {
  font-size: 15px;
}
.v2 .breadcrumbs_cont .breadcrumbs > span::after {
  content: ">";
}
.v2 .breadcrumbs_cont .breadcrumbs > span:last-of-type::after {
  content: none;
}
.v2 .page_kv .box {
  max-width: 1300px;
}
.v2 .page_kv .page_h1 {
  position: relative;
  z-index: 1;
  padding-top: 10px;
  line-height: 1;
  margin: 85px 0 65px;
}
.v2 .page_kv .page_h1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 6px;
  background: var(--main_color);
  border-radius: 10px;
}
.v2 .page_kv .page_h1 .en {
  display: block;
  font-size: 86px;
  color: var(--main_color);
  letter-spacing: -0.04em;
}
.v2 .page_kv .page_h1 .jp {
  display: block;
  font-size: 12px;
  font-weight: 300;
}
.v2 .page_kv .kv_copy {
  font-size: 26px;
  color: var(--main_color);
  margin: 0 0 40px;
}
.v2 .page_kv .kv_lead {
}
.v2 .door_focus {
}
.v2 .door_focus a.focus_item {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  /*border-radius: 25px;*/
  text-decoration: none;
  color: #fff;
}
.v2 .door_focus .focus_item .img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s;
  z-index: -1;
}
.v2 .door_focus .focus_item:hover .img {
  transform: scale(1.05);
}
.v2 .door_focus .focus_item .focus {
  display: inline-block;
  font-size: 24px;
  color: #fff;
  text-align: center;
  line-height: 1;
  background: var(--main_color);
  border-radius: 0 0 20px 20px;
  padding: 22px 50px 17px;
  margin: 0 0 25px;
}
.v2 .door_focus .focus_h2 {
  margin: 0 0 75px;
  line-height: 1.1;
}
.v2 .door_focus .focus_h2 .jp {
  display: block;
  font-size: 29px;
  font-weight: 400;
}
.v2 .door_focus .focus_h2 .en {
  display: block;
  font-size: 86px;
  font-weight: 300;
}
.v2 .door_focus .lead {
  margin: 0 0 30px;
  padding-right: 250px;
}
.v2 .door_focus .more {
  width: 100%;
  background: var(--main_color);
  text-align: center;
  padding: 22px 5%;
}
.v2 .door_focus img.bosyu {
  position: absolute;
  z-index: 1;
  right: 45px;
  bottom: 100px;
  width: 233px;
}


.v2 .door_cont {
  position: relative;
  z-index: 0;
  padding: 170px 0 200px;
}
.v2 .door_cont::before {
  content: "";
  position: absolute;
  top: -111px;
  left: calc(50% + 435px);
  z-index: -1;
  width: 363px;
  height: 266px;
  background: url(../img/page/service_before01.png) no-repeat center center / contain;
}
.v2 .door_cont .box {
  /*max-width: 1400px;*/
}
.v2 .door_cont .door_h2 {
  margin: 0 0 35px;
  line-height: 1.5;
  text-align: center;
}
.v2 .door_cont .door_h2 .en {
  display: block;
  font-size: 15px;
  color: var(--main_color);
}
.v2 .door_cont .door_h2 .jp {
  display: block;
  font-size: 29px;
  font-weight: 400;
}
.v2 .door_cont .door_columns {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}

.v2 .door_cont .door_columns .img_cont {
  position: relative;
  z-index :1;
  width: 100%;
  max-width: 500px;
}
.v2 .door_cont .door_columns .img_cont::before {
  content: "";
  position: absolute;
  bottom: 180px;
  left: -175px;
  z-index: -1;
  width: 208px;
  height: 583px;
  background: url(../img/page/service_before03.png) no-repeat center center / contain;
}
.v2 .door_cont .door_columns .img_cont .sticky_img {
  position: sticky;
  top: calc(50vh - 25%);
  width: 100%;
  aspect-ratio: 1;
}
.v2 .door_cont .door_columns .img_cont .sticky_img > img {
  position: absolute;
  z-index :1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0;
  transition: .8s;
}
.v2 .door_cont .door_columns .img_cont .sticky_img.one > img:nth-child(1),
.v2 .door_cont .door_columns .img_cont .sticky_img.two > img:nth-child(2),
.v2 .door_cont .door_columns .img_cont .sticky_img.three > img:nth-child(3) {
  opacity: 1;
}



.v2 .door_cont .door_columns .link_cont {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 560px;
  padding: 70px 0 300px;
}
.v2 .door_cont .door_columns .link_cont::before,
.v2 .door_cont .door_columns .link_cont::after {
  content: "";
  position: absolute;
  top: 332px;
  right: -140px;
  z-index: -1;
  width: 279px;
  height: 296px;
  background: url(../img/page/service_before02.png) no-repeat center center / contain;
}
.v2 .door_cont .door_columns .link_cont::after {
  width: 485px;
  height: 485px;
  background-image: url(../img/page/service_before04.png);
    bottom: 130px;
    top: auto;
    right: -410px;
}
.v2 .door_cont .door_columns .link_cont > ul {
  border-top: 1px solid #c5c5c5;
}
.v2 .door_cont .door_columns .link_cont > ul > li {
  display: flex;
  align-items: center;
  padding: 50px 30px;
  border-bottom: 1px solid #c5c5c5;
  min-height: 500px;
  margin: 0 auto;
}
.v2 .door_cont .door_columns .link_cont > ul > li > .item {
  padding-top: 50px;
}
.v2 .door_cont .door_columns .link_cont > ul > li:last-child {
  margin-bottom: 0;
}
.v2 .door_cont .door_columns .link_cont > ul > li .title_en {
  font-size: 15px;
  line-height: 1.1;
  margin: 0 0 20px;
}
.v2 .door_cont .door_columns .link_cont > ul > li .title_en > span {
  background: #FF0028;
  background: linear-gradient(90deg,rgba(255, 0, 40, 1) 0%, rgba(255, 166, 0, 1) 100%);
  color: #fff;
  padding: 2px 8px;
  border-radius: 50px;
}
.v2 .door_cont .door_columns .link_cont > ul > li .jp {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--main_color);
  margin: 0 0 40px;
}
.v2 .door_cont .door_columns .link_cont > ul > li .lead {
  font-size: 16px;
  margin: 0 0 80px;
}
.v2 .door_cont .door_columns .link_cont > ul > li .more {
  display: block;
  text-align: center;
}


/* TIMS */
.v2 .tims_kv {
  position: relative;
  z-index: 0;
  margin: 90px 0 125px;
  padding: 20px 0 150px;

  min-height: 1470px;/* デザイン未確定時 */
}
.v2 .tims_kv .kv_img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.v2 .tims_kv .breadcrumbs span {
  color: #fff;
}
.v2 .tims_kv .first_cont {
  position: relative;
  z-index: 1;
  padding: 37px 0 300px;
  text-align: center;
}
.v2 .tims_kv .first_cont p.focus {
  text-align: center;
  margin: 0 0 20px;
}
.v2 .tims_kv .first_cont p.focus > span {
  display: inline-block;
  background: var(--main_color);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  margin: auto;
  padding: 6px 8px;
  border-radius: 10px;
}
.v2 .tims_kv .first_cont .tims_h1 {
  text-align: center;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  margin: 0 0 10px;
}
.v2 .tims_kv .first_cont .tims_h1 .jp {
  display: block;
  font-size: 37px;
  font-weight: 500;
}
.v2 .tims_kv .first_cont .tims_h1 .en {
  display: block;
  font-size: 158px;
  font-weight: 600;
}
.v2 .tims_kv .first_cont .lead {
  font-size: 18px;
  color: #fff;
  line-height: 1.33;
  margin: 0 0 10px;
}
.v2 .tims_kv .first_cont .first_img img {
  max-width: 1000px;
  width: 100%;
  margin: -14% auto 0;/*margin-top:150px;*/
  padding-left: 140px;
}
/*KV修正*/
.v2 .tims_kv .first_cont .title_sub {
  margin: 0 auto 15px;
}
.v2 .tims_kv .first_cont .title_sub > span {
  display: inline-block;
  font-size: 29px;
  font-weight: 600;
  background: #fff;
  border-radius: 5px;
  padding: 0px 15px 2px;
  margin: 0 0 8px;
  line-height: 1.6;
}
.v2 .tims_kv .first_cont .title_sub > span > span {
  color: var(--main_color);
}
.v2 .tims_kv .first_cont .sub_lead {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  margin: 0 auto 15px;
}
.v2 .tims_kv .first_cont .bosyu span {
  display: inline-block;
  background: linear-gradient(90deg, rgba(255, 0, 105, 1) 0%, rgba(255, 212, 0, 1) 25%, rgba(255, 122, 0, 1) 45%, rgba(255, 0, 105, 1) 64%, rgba(209, 0, 195, 1) 80%, rgba(115, 56, 248, 1) 100%);
  background-size: 150% 100%;
  background-position: right;
  font-size: 26px;
  font-weight: 600;
  padding: 5px 30px;
  color: #fff;
  border-radius: 100px;
}
.v2 .tims_kv .first_cont .side_img img {
  position: absolute;
  z-index: 1;
  top: 180px;
  max-width: 325px;
}
.v2 .tims_kv .first_cont .side_img .img_left {
  right: calc(50% + 260px);
}
.v2 .tims_kv .first_cont .side_img .img_right {
  left: calc(50% + 260px);
}

.v2 .tims_kv .box.wide {
  max-width: 1350px;
  padding: 0;
}
.v2 .tims_kv .second_cont {}
.v2 .tims_kv .second_cont .column_cont {
  display: flex;
}
.v2 .tims_kv .second_cont .column_cont .text_item {
  order: 1;
  padding-left: 65px;
  width: 50%;
  color: #fff;
}
.v2 .tims_kv .second_cont .column_cont .text_item .about_sub {
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 10px;
  line-height: 1;
}
.v2 .tims_kv .second_cont .column_cont .text_item .about_main {
  display: flex;
  align-items: center;
  font-size: 103px;
  font-weight: 600;
  margin: 0 0 35px;
  line-height: 1;
}
.v2 .tims_kv .second_cont .column_cont .text_item .about_main::after {
  content: "";
  background: #fff;
  height: 1px;
  flex-grow: 1;
  margin-left: 30px;
}
.v2 .tims_kv .second_cont .column_cont .text_item .about_lead {
  font-size: 19px;
}
.v2 .tims_kv .second_cont .column_cont .text_item .lead_title {
  font-size: 25px;
  margin: 0 0 1.3em;
}


.v2 .tims_kv .second_cont .column_cont > figure {
  order: 2;
  width: 50%;
  margin-top: -30px;
}


.v2 .tims_cont .tabs_cont {
  box-shadow: 0px -37px 20px -40px rgba(0,0,0,0.3) inset;
}
.v2 .tims_cont .tabs_cont .box {
  max-width: 1300px;
}
.v2 .tims_cont .tabs_cont .tabs {
  display: flex;
  gap: 3.3%;
}
.v2 .tims_cont .tabs_cont .tabs .tab {
  width: 48.35%;
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
  background: var(--main_color);
  border-radius: 20px 20px 0 0;
  padding: 25px 20px;
  opacity: 0.5;
  transition: .3s;
}
.v2 .tims_cont .tabs_cont .tabs .tab.active {
  opacity: 1;
  transition: 0s;
}
.v2 .tab-content {
  display: none;
}
.v2 .tab-content.active {
  display: block;
}
.v2 .tims_h3 {
  position: relative;
  z-index: 0;
  text-align: center;
  margin: 0 0 50px;
  padding: 0 0 22px;
  line-height: 1.1;
}
.v2 .tims_h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 40px;
  height: 6px;
  background: url(../img/page/tims_h3_before.svg) no-repeat center center / contain;
}
.v2 .tims_h3 .en {
  display: block;
  font-size: 65px;
  font-weight: 500;
  color: var(--main_color);
}
.v2 .tims_h3 .jp {
  display: block;
  font-size: 20px;
  font-weight: 400;
}
.v2 .tims_h3.white .en,
.v2 .tims_h3.white .jp {
  color: #fff;
}
.v2 .tims_h3.white::before {
  background: #fff;
  border-radius: 50px;
}
.v2 .contact_btn {
  text-align: center;
}
.v2 .contact_btn > a {
  position: relative;
  z-index: 0;
  display: block;
  max-width: 1040px;
  margin: auto;
  border-radius: 20px;
  background: #FF524B;
  background: linear-gradient(90deg,rgba(255, 29, 0, 1) 0%, rgba(255, 29, 0, 1) 15%, rgba(255, 82, 75, 1) 35%, rgba(255, 82, 75, 1) 50%, rgba(255, 69, 67, 1) 65%, rgba(255, 29, 0, 1) 85%, rgba(255, 177, 0, 1) 100%);
  background-size: 200% 100%;
  background-position: right;
  padding: 38px 120px 35px;
  color: #fff;
  line-height: 1.3;
  transition: 0.5s;
  text-decoration: none;
}
.v2 .contact_btn.signup > a {
  background: linear-gradient(90deg,rgba(255, 0, 105, 1) 0%, rgba(255, 212, 0, 1) 25%, rgba(255, 122, 0, 1) 45%, rgba(255, 0, 105, 1) 64%, rgba(209, 0, 195, 1) 80%, rgba(115, 56, 248, 1) 100%);
  background-size: 150% 100%;
  background-position: right;
}
.v2 .contact_btn > a:hover {
  background-position: left;
}
.v2 .contact_btn.signup > a:hover {
  background-position: center;
}
.v2 .contact_btn > a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 55px;
  bottom: 0;
  margin: auto;
  width: 45px;
  height: 45px;
  background: url(../img/top/arrow_white.svg) no-repeat center center / contain;
  transition: 0.5s;
}
.v2 .contact_btn > a:hover::after {
  right: 40px;
}
.v2 .contact_btn > a .sub {
  display: block;
  font-size: 13px;
}
.v2 .contact_btn > a .main {
  font-size: 30px;
  display: block;
}

.v2 .tims_cont .sec_strength {
  padding: 110px 0 140px;
}
.v2 .tims_cont .sec_strength .strength_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4%;
  margin: 0 auto 50px;
}
.v2 .tims_cont .sec_strength .strength_list > li {
  width: 23.2%;
  text-align: center;
}
.v2 .tims_cont .sec_strength .strength_list > li figure {
  text-align: center;
  margin: 0 auto 15px;
}
.v2 .tims_cont .sec_strength .strength_list > li p {
  font-size: 18px;
  line-height: 1.3;
}
.v2 .tims_cont .sec_strength .strength_list > li p span {
  color: var(--main_color);
}
.v2 .tims_cont .sec_number {
  padding: 0 0 100px;
}
.v2 .tims_cont .sec_number .number_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4%;
}
.v2 .tims_cont .sec_number .number_list > li {
  width: 23.2%;
  text-align: center;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  color: var(--main_color);
  padding: 55px 0;
  line-height: 1;
}
.v2 .tims_cont .sec_number .number_list > li .number_title {
  font-weight: 300;
}
.v2 .tims_cont .sec_number .number_list > li .num {
  font-size: 60px;
  font-weight: 300;
}
.v2 .tims_cont .sec_voice {
  padding: 0 0 140px;
}
.v2 .tims_cont .sec_voice .voice_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
.v2 .tims_cont .sec_voice .voice_list > li {
  width: 30%;
}
.v2 .tims_cont .sec_voice .voice_list > li .voice {
  margin: 0 0 1.5em;
}

.v2 .tims_cont .sec_works {
  padding: 0 0 170px;
}
.v2 .tims_cont .title_bg {
  position: relative;
  z-index: 0;
  background: var(--main_color);
  padding: 72px 0;
  margin: 0 auto 110px;
}
.v2 .tims_cont .title_bg img.bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v2 .tims_cont .sec_works .tims_h3 {
  margin-bottom: 0;
}
.v2 .tims_cont .sec_works .works_list {
  /*
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
  */
  margin: 0 auto 60px;
}
.v2 .tims_cont .sec_works .works_list li.works_item {
  width: 46%;
  /*margin: 0 0 50px;*/
  margin: 0 25px;
}
.v2 .tims_cont .sec_works .works_list li.works_item figure {
  margin: 0 0 10px;
}
.v2 .tims_cont .sec_works .works_list li.works_item figure img {
  width: 100%;
}
.v2 .tims_cont .sec_works .works_list li.works_item .works_h4 {
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 5px;
}
.v2 .tims_cont .sec_works .works_list li.works_item .works_h4 span {
  display: inline-block;
  background: #FF0028;
  background: linear-gradient(90deg, rgba(255, 0, 40, 1) 0%, rgba(255, 166, 0, 1) 100%);
  color: #fff;
  padding: 7px 15px 7px;
  border-radius: 15px;
}
.v2 .tims_cont .sec_works .works_list li.works_item .lead {
  font-size: 18px;
  color: var(--main_color);
  margin: 0 0 0.5em;
}
/*slick*/
.v2 .tims_cont .sec_works .works_list .slick-list {
  margin: 0 -25px;
}
.v2 .tims_cont .sec_works .works_list .slick-next:before,
.v2 .tims_cont .sec_works .works_list .slick-prev:before {
  content: "";
}
.v2 .tims_cont .sec_works .works_list .slick-next,
.v2 .tims_cont .sec_works .works_list .slick-prev {
    top: 25%;
    width: 55px;
    height: 55px;
    background: url(../img/top/slick_arrow.svg) no-repeat center center / contain;
    transform: translate(0, 0);
    opacity: 1;
    z-index: 1;
}
.v2 .tims_cont .sec_works .works_list .slick-next {
    right: -60px;
    transform: rotate(180deg);
}
.v2 .tims_cont .sec_works .works_list .slick-prev {
    left: -60px;
}
  
.v2 .tims_cont .sec_inquiry .title_bg {
  padding: 100px 0 120px;
}
.v2 .tims_cont .sec_inquiry .howto {
  position: relative;
  z-index: 0;
  display: flex;
  gap: 3.6%;
  max-width: 1040px;
  width: 100%;
  margin: auto;
}
.v2 .tims_cont .sec_inquiry .howto::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  z-index: -1;
  margin: auto;
}
.v2 .tims_cont .sec_inquiry .howto > li {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  width: 30.93%;
  background: #fff;
  border-radius: 15px;
  padding: 35px 10px 35px 70px;
}
.v2 .tims_cont .sec_inquiry .howto > li .num {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  margin: auto;
  height: 35px;
  font-size: 33px;
  line-height: 1;
  color: var(--main_color);
}

.v2 .tims_cont .sec_faq {
  padding: 0 0 150px;
}
.v2 .tims_cont .sec_faq .box {
  max-width: 1140px;
}
.v2 .tims_cont .faq_cont {
  margin: 0 auto 55px;
}
.v2 .tims_cont .faq_cont > dl {
  margin: 0 auto 50px;
}
.v2 .tims_cont .faq_cont > dl:last-child {
  margin-bottom: 0;
}
.v2 .tims_cont .faq_cont > dl > dt {
  position: relative;
  z-index: 0;
  font-size: 25px;
  padding: 0 0 15px 85px;
}
.v2 .tims_cont .faq_cont > dl > dd {
  position: relative;
  z-index: 0;
  padding: 25px 20px 25px 85px;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.25);
  border-radius: 18px;
}
.v2 .tims_cont .faq_cont > dl > dt:before,
.v2 .tims_cont .faq_cont > dl > dd:before {
  position: absolute;
  top: 0;
  left: 25px;
  content: "Q.";
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
  color: var(--main_color);
  line-height: 1;
}
.v2 .tims_cont .faq_cont > dl > dd:before {
  content: "A.";
  top: 18px;
}
























/* -----------------------------------------------------------
  SP
----------------------------------------------------------- */
@media screen and (max-width: 960px){

  body {
    font-size:13px;
  }
  
  .v2 .box {
    padding: 0 5%;
  }
  
  .pc_cont {display:none!important;} 
  .sp_cont {display:block!important;} 
  .sp_br {display: block;}

  /* HEADER */
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    height: 60px;
    width: 100%;
    background: #fff;
    transition-property: top;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  }
  header.hidden {
    top: -60px;
  }
  header.open.hidden {
    top: 0;
  }
  header .h1 {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 120px;
  }
  header .menu {
    position: absolute;
    display: block;
    width: 60px;
    height: 60px;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: var(--main_color);
    border-radius: 0 0 0 9px;
    z-index: 1;
    cursor: pointer;
  }
  header .menu::before,
  header .menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #fff;
    margin: auto;
    transition: 0.8s;
  }
  header .menu::before {
    box-shadow: 0 16px 0 0 #fff;
    top: 21px;
  }
  header .menu::after {
    width: 22px;
    top: 29px;
  }
  header .menu.active::before {
    box-shadow: none;
    transform: rotate(135deg);
    top: 29px;
    width: 22px;
  }
  header .menu.active::after {
    transform: rotate(-135deg);
    top: 29px;
  }
  header nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    overflow-y: scroll;
    background: rgba(236,236,236,0.97);
    padding: 50px 5% 100px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  header nav.active {
    opacity: 1;
    visibility: visible;
  }
  .v2 header nav > .lang_nav,
  .v2 header nav > .bogo-language-switcher {
    margin: 0;
  }
  header nav > .main_nav {
    margin: 35px 0 45px;
  }
  header nav > .main_nav > li {
    position: relative;
    z-index: 0;
  }
  header nav > .main_nav > li > a {
    position: relative;
    z-index: 0;
    display: block;
    font-size: 26px;
    font-weight: 500;
    color: var(--main_color);
    padding: 7px 50px 7px 0;
  }
  /*
  header nav > .main_nav > li.sp_arrow > a::before,
  header nav > .main_nav > li > .navHover .page_list > li a::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 18px;
    width: 10px;
    height: 7px;
    background: url(../img/top/sp_arrow.svg) no-repeat center / contain;
    margin: auto;
  }
  */
  header nav > .main_nav > li > .nav_ac {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    z-index: 1;
  }
  header nav > .main_nav > li > .nav_ac::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 10px;
    height: 7px;
    background: url(../img/top/sp_arrow.svg) no-repeat center / contain;
    margin: auto;
    transition: transform 0.5s;
  }
  header nav > .main_nav > li > .nav_ac.open::before {
    transform: rotate(180deg);
  }
  header nav > .main_nav > li > .navHover {
    display: none;
  }
  header nav > .main_nav > li > .navHover .title_item,
  header nav > .main_nav > li > .navHover .img_item,
  header nav > .main_nav > li > .navHover .top {
    display: none;
  }
  header nav > .main_nav > li > .navHover .navHover_columns > .page_item {
    padding: 0;
  }
  header nav > .main_nav .page_item > .page_list {
    display: block;
  }
  header nav > .main_nav .page_item > .page_list li {
    width: 100%;
    margin: 0;
  }
  header nav > .main_nav > li > .navHover .page_list > li a {
    position: relative;
    z-index: 0;
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #000;
    padding: 5px 0 5px 10px;
  }
  header nav > .main_nav > li > .navHover .page_list > li a p::before {
    content: "- ";
  }
  header nav > .main_nav .page_item > .page_list li a figure {
    display: none;
  }
  header nav > .main_nav .page_item > .page_list li a p {
    border: none;
    padding: 0;
  }
  header nav > .main_nav .page_item > .page_list li a p::before {
    content: none;
  }
  header nav > .sub_nav {
    text-align: center;
  }
  header nav > .sub_nav .contact {
    width: 100%;
    max-width: 350px;
  }
  header nav > .sub_nav .contact a {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    background: var(--main_color);
    color: #fff;
    line-height: 1.1;
    text-align: left;
    padding: 23px 60px 23px 25px;
    border-radius: 20px;
  }
  header nav > .sub_nav .contact a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 22px;
    margin: auto;
    width: 26px;
    height: 26px;
    background: url(../img/top/arrow_white.svg) no-repeat center center / contain;
  }
  header nav > .sub_nav .contact a .en {
    font-size: 25px;
  }
  header nav > .sub_nav .contact a .jp {
    font-size: 11px;
  }


  /* KV */
  .v2 .kv_cont {
    display: block;
    width: 100%;
    max-height: none;
    height: auto;
    background-image: url(../img/top/kv_bg_sp.png);
    padding-top: 60px;
    padding-bottom: 50px;
  }
  .v2 .kv_cont .img_cont {
    max-width: 720px;
    width: 100%;
    aspect-ratio: 1 / 0.9;
    aspect-ratio: 372 / 381;
    margin: 55px auto 0;
  }
  .v2 .kv_cont .img_cont .front {
  }
  .v2 .kv_cont .img_cont .video_cont {
  }
  .v2 .kv_cont .img_cont .left-top {
  }
  .v2 .kv_cont .img_cont .right-bottom {
    left: 67%;
  }
  .v2 .kv_cont .img_cont .left-bottom {
        top: 63%;
        left: -3%;
  }
  .v2 .kv_cont .img_cont .right-top {
  }

  .v2 .kv_cont .copy_cont {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 720px;
    width: 100%;
    padding: 0 5%;
    margin: -9% auto 0;
  }
  .v2 .kv_cont .copy_cont .main_copy {
    margin-bottom: 20px;
  }
  .v2 .kv_cont .copy_cont .sub_copy {
    font-size: 14px;
    font-weight: 200;
    margin-left: 0;
  }

  .v2 .kv_cont .kv_scroll {
    display: none;
  }

  /* top content */
  .v2 .top_mission {
    background: url(../img/top/mission_bg_sp.jpg) no-repeat center center / cover;
    padding: 120px 0 100px;
  }
  .v2 .top_mission .mission_before {
    right: calc(50% + 50px);
    top: -35px;
    width: 142px;
  }
  .v2 .top_mission .mission_after {
    left: calc(50% + 105px);
    bottom: -43px;
    width: 80px;
  }
  .v2.home h2 {
    padding-top: 10px;
  }
  .v2.home h2::before {
    width: 30px;
    height: 5px;
  }
  .v2.home h2 .en {
    font-size: 37px;
  }
  .v2.home h2 .jp {
    font-size: 11px;
  }

  .v2 .top_mission h2 {
    margin: 0 auto 30px;
  }
  .v2 .top_mission .mission {
    font-size: 18px;
    margin: 0 auto 25px;
    font-weight: 400;
  }

  .v2 .top_service {
    padding: 110px 0 50px;
  }
  .v2 .top_service .service_before {
    width: 218px;
    right: auto;
    left: calc(50% + 45px);
    top: 8px;
  }
  .v2 .top_service .service_after {
    width: 148px;
    left: calc(50% + 95px);
    bottom: -90px;
  }
  .v2 .top_service .title_columns {
    display: block;
    margin: 0 0 20px;
  }
  .v2 .top_service .title_columns h2 {
    margin: 0 0 25px;
  }
  .v2 .top_service .title_columns h2 + p {
    font-size: 14px;
  }
  .v2 .top_service .focus_cont,
  .v2 .top_recruit .focus_cont {
    margin: 0 0 20px;
  }
  .v2 .top_service .focus_cont a img.bg, .v2 .top_recruit .focus_cont a img.bg {
    object-position: bottom;
  }
  .v2 .top_service .focus_cont a,
  .v2 .top_recruit .focus_cont a {
    padding: 25px 5% 85px;
  }
  .v2 .top_service .focus_cont a .focus_project,
  .v2 .top_recruit .focus_cont a .focus_project {
    margin-bottom: 15px;
  }
  .v2 .top_service .focus_cont a h3,
  .v2 .top_recruit .focus_cont a h3 {
    margin-bottom: 45px;
  }
  .v2 .top_service .focus_cont a h3 .jp,
  .v2 .top_recruit .focus_cont a h3 .jp {
    font-size: 14px;
  }
  .v2 .top_service .focus_cont a h3 .en,
  .v2 .top_recruit .focus_cont a h3 .en {
    font-size: 35px;
    font-weight: 400;
  }
  .v2 .top_service .focus_cont .text,
  .v2 .top_recruit .focus_cont .text {
    max-width: none;
    font-weight: 300;
  }
  .v2 .top_service .focus_cont .more {
    left: 0;
    width: 100%;
    height: 60px;
    border-radius: 0 0 20px 20px;
  }
  .v2 .top_service .service_list {
    display: block;
    margin-bottom: 20px;
  }
  .v2 .top_service .service_list > li {
    width: 100%;
    margin-bottom: 20px;
    background-position: center center;
  }
  .v2 .top_service .service_list > li:last-of-type {
    margin-bottom: 0;
  }
  .v2 .top_service .service_list > li a,
  .v2 .top_service .service_list > li .service_cont {
    padding: 20px 5%;
    font-weight: 300;
  }
  .v2 .top_service .service_list > li a h3,
  .v2 .top_service .service_list > li .service_cont h3 {
    font-size: 19px;
    margin-bottom: 35px;
    font-weight: 400;
  }

  .v2 .top_news {
    position: relative;
    z-index: 1;
    padding: 20px 0 100px; 
  }
  .v2 .top_news .news_columns {
    display: block;
  }
  .v2 .top_news .news_columns .title_cont {
    width: 100%;
  }
  .v2 .top_news .news_columns .title_cont h2 {
    margin: 0 0 20px;
  }
  .v2 .top_news .news_columns .title_cont h2 + p{
    margin: 0 0 20px;
  }
  .v2 .top_news .news_columns .title_cont .more {
    position: absolute;
    bottom: 43px;
    left: 0;
    right: 0;
    text-align: center;
  }
  .v2 .top_news .news_columns .news_cont {
    width: 100%;
  }
  .v2 .top_news .news_columns .news_list > li a {
    display: block;
    font-size: inherit;
    padding: 15px 70px 15px 0;
  }
  .v2 .top_news .news_columns .news_list > li a::before {
    right: 18px;
  }
  .v2 .top_news .news_columns .news_list > li a .date {
    color: var(--main_color);
    margin: 0 0 5px;
  }
  .v2 .top_news .news_columns .news_list > li a .title {
    color: #000;
  }

  .v2 .top_recruit {
    position: relative;
    z-index: 1;
    padding: 40px 0 35px;
  }
  .v2 .top_recruit .focus_cont a {
    padding: 27px 5%;
  }
  .v2 .top_recruit .focus_cont a h2 {
    margin: 0 0 50px;
  }
  .v2 .top_recruit .focus_cont a .more {
    position: static;
    text-align: center;
    margin-top: 22px;
  }
  .v2 .top_recruit .bottom_copy {
    line-height: 0.9;
    bottom: -65px;
    font-size: 72px;
  }

  .v2 .top_movie {
    padding: 130px 0 115px;
  }
  .v2 .top_movie h2 {
    margin: 0 0 20px;
  }
  .v2 .top_movie h2 .en {
    font-size: 25px;
  }
  .v2 .top_movie .movie_cont {
  }

  /* footer */
  .v2 footer {
    padding: 60px 0 0;
  }
  .v2 footer .footer_box {
    padding: 0 5%;
  }
  .v2 footer .footer_bg {
    position: absolute;
    width: 700px;
    max-width: none;
    top: 290px;
    left: auto;
    right: -320px;
    transform: rotate(90deg) translateX(0);
  }
  .v2 footer .footer_box .footer_columns {
    position: relative;
    display: block;
    margin: 0 0 20px;
    padding-bottom: 135px;
  }
  .v2 footer .footer_box .footer_columns .logo {
    width: 214px;
    margin: 0 0 40px;
  }
  .v2 footer .footer_box .footer_columns .footer_contact a {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    padding: 23px 60px 23px 25px;
    color: #fff;
    line-height: 1;
  }
  .v2 footer .footer_box .footer_columns .footer_contact a .en {
    font-size: 25px;
    margin-right: 1em;
    display: block;
  }
  .v2 footer .footer_box .footer_columns .footer_contact a .jp {
    font-size: 11px;
  }
  .v2 footer .footer_box .footer_sitemap {
    width: 100%;
  }
  .v2 footer .footer_box .footer_sitemap > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
    justify-content: flex-start;
    padding-bottom: 50px;
  }
  .v2 footer .footer_box .footer_sitemap > ul > li {
    width: 48%;
    margin: 0;
  }
  .v2 footer .footer_box .footer_sitemap > ul .title {
    margin: 0 0 10px;
  }
  .v2 footer .footer_box .footer_sitemap > ul .title a {
    font-size: 20px;
  }
  .v2 footer .footer_box .footer_sitemap > ul .title:not(:first-of-type) {
    margin-top: 40px;
  }
  .v2 footer .footer_box .footer_sitemap > ul .page_list > li {
    margin: 0 0 5px;
  }
  .v2 footer .footer_box .footer_sitemap > ul .page_list > li a {
    font-size: 12px;
    color: #000;
  }
  .v2 footer .footer_box .copyright {
    font-size: 10px;
    text-align: center;
    padding: 10px 0 20px;
  }


  
  /* PAGE */
  .v2 .page_kv {
    min-height: 590px;
    padding: 70px 0 90px;
  }
  .v2 .breadcrumbs_cont {
    padding: 0 5%;
  }
  .v2 .breadcrumbs_cont .breadcrumbs > span {
    font-size: 10px;
  }
  .v2 .page_kv .page_h1 {
    margin: 120px 0 40px;
  }
  .v2 .page_kv .page_h1::before {
    width: 25px;
    height: 4px;
  }
  .v2 .page_kv .page_h1 .en {
    font-size: 46px;
  }
  .v2 .page_kv .page_h1 .jp {
    font-size: 15px;
  }
  .v2 .page_kv .kv_copy {
    font-size: 20px;
    margin: 0 0 20px;
    line-height: 1.3;
  }
  .v2 .page_kv .kv_lead {
    font-size: 14px;
  }
  
  .v2 .door_focus a.focus_item {
    text-align: center;
  }
  .v2 .door_focus .focus_item .img {
    object-fit: cover;
    object-position: center top;
  }
  .v2 .door_focus .focus_item:hover .img {
    transform: scale(1);
  }
  .v2 .door_focus .focus_item .focus {
    font-size: 14px;
    border-radius: 0 0 20px 20px;
    padding: 17px 47px 13px;
    margin: 0 auto 25px;
  }
  .v2 .door_focus .focus_h2 {
    margin: 0 0 20px;
  }
  .v2 .door_focus .focus_h2 .jp {
    font-size: 20px;
  }
  .v2 .door_focus .focus_h2 .en {
    font-size: 57px;
  }
  .v2 .door_focus .lead {
    font-size: 14px;
    margin: 0 0 40px;
    text-align: left;
    padding: 0;
  }
  .v2 .door_focus .more {
    padding: 25px 5%;
  }
  .v2 .door_focus img.bosyu {
    position: static;
    width: 146px;
    margin: 0 auto 20px;
  }


  .v2 .door_cont {
    padding: 95px 0 140px;
  }
  .v2 .door_cont .door_h2 {
    margin: 0 0 35px;
  }
  .v2 .door_cont .door_h2 .en {
    font-size: 13px;
  }
  .v2 .door_cont .door_h2 .jp {
    font-size: 20px;
  }
  .v2 .door_cont .door_columns {
    display: block;
  }

  .v2 .door_cont .door_columns .img_cont {
    display: none;
  }

  .v2 .door_cont .door_columns .link_cont {
    padding: 0;
    margin: auto;
  }
  .v2 .door_cont .door_columns .link_cont > ul {
    border: none;
  }
  .v2 .door_cont .door_columns .link_cont > ul > li {
    padding: 0;
    border: none;
    margin: 0 0 70px;
  }
  .v2 .door_cont .door_columns .link_cont > ul > li > .item {
    padding-top: 0;
  }
  .v2 .door_cont .door_columns .link_cont > ul > li:last-child {
    margin-bottom: 0;
  }
  .v2 .door_cont .door_columns .link_cont > ul > li figure {
    margin: 0 0 18px;
    text-align: center;
  }
  .v2 .door_cont .door_columns .link_cont > ul > li .title_en {
    font-size: 11px;
    margin: 0 0 8px;
  }
  .v2 .door_cont .door_columns .link_cont > ul > li .jp {
    font-size: 23px;
    margin: 0 0 18px;
  }
  .v2 .door_cont .door_columns .link_cont > ul > li .lead {
    font-size: 14px;
    margin: 0 0 20px;
  }
  .v2 .door_cont::before,
  .v2 .door_cont .door_columns .link_cont::before,
  .v2 .door_cont .door_columns .link_cont::after,
  .v2 .door_cont .door_columns .img_cont::before {
    content: none;
  }


  /* TIMS */
  .v2 .tims_kv {
    margin: 60px 0 70px;
    padding: 15px 0 95px;
  }
  .v2 .tims_kv .first_cont {
    padding: 65px 0 130px;
  }
  .v2 .tims_kv .first_cont p.focus {
    margin: 0 0 15px;
  }
  .v2 .tims_kv .first_cont p.focus > span {
    font-size: 12px;
    padding: 6px 8px;
  }
  .v2 .tims_kv .first_cont .tims_h1 {
    margin: 0 0 10px;
  }
  .v2 .tims_kv .first_cont .tims_h1 .jp {
    font-size: 19px;
  }
  .v2 .tims_kv .first_cont .tims_h1 .en {
    font-size: 98px;
  }
  .v2 .tims_kv .first_cont .lead {
    font-size: 14px;
    margin: 0 0 20px;
  }
  .v2 .tims_kv .first_cont .first_img img {
    max-width: 500px;
    margin: 0 auto;/*margin-top:150px;*/
    padding-left: 3.5%;
  }
  /*KV修正*/
  .v2 .tims_kv .first_cont .title_sub {
    margin: 0 auto 10px;
  }
  .v2 .tims_kv .first_cont .title_sub > span {
    font-size: 19px;
    padding: 0px 10px 2px;
    margin: 0 0 6px;
  }
  .v2 .tims_kv .first_cont .sub_lead {
    font-size: 14px;
    margin: 0 auto 12px;
  }
  .v2 .tims_kv .first_cont .bosyu span {
    font-size: 14px;
    font-weight: 600;
    padding: 9px 30px;
  }
  .v2 .tims_kv .first_cont .side_img {
    display: flex;
    justify-content: center;
    margin: 90px auto 0;
  }
  .v2 .tims_kv .first_cont .side_img img {
    position: static;
    width: 50%;
    max-width: 240px;
    transform: scale(1.3);
  }

  .v2 .tims_kv .box.wide {
    padding: 0 5%;
  }
  .v2 .tims_kv .second_cont {}
  .v2 .tims_kv .second_cont .column_cont {
    display: block;
    text-align: center;
  }
  .v2 .tims_kv .second_cont .column_cont .text_item {
    padding-left: 0;
    width: 100%;
  }
  .v2 .tims_kv .second_cont .column_cont .text_item .about_sub {
    font-size: 26px;
    margin: 0;
  }
  .v2 .tims_kv .second_cont .column_cont .text_item .about_main {
    display: block;
    font-size: 85px;
    margin: 0 0 30px;
    line-height: 0.9;
  }
  .v2 .tims_kv .second_cont .column_cont .text_item .about_main::after {
    content: none;
  }
  .v2 .tims_kv .second_cont .column_cont .text_item .about_lead {
    font-size: 15px;
  }
  .v2 .tims_kv .second_cont .column_cont .text_item .lead_title {
    font-size: 19px;
  }
  .v2 .tims_kv .second_cont .column_cont > figure {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 8%;
    transform: scale(1.2);
  }

  .v2 .tims_cont .tabs_cont {
  }
  .v2 .tims_cont .tabs_cont .box {
  }
  .v2 .tims_cont .tabs_cont .tabs {
    display: flex;
    gap: 1%;
  }
  .v2 .tims_cont .tabs_cont .tabs .tab {
    width: 49.5%;
    font-size: 11px;
    border-radius: 10px 10px 0 0;
    padding: 11px 0px;
  }
  .v2 .tims_h3 {
    margin: 0 0 25px;
    padding: 0 0 15px;
  }
  .v2 .tims_h3::before {
    width: 26px;
    height: 4px;
  }
  .v2 .tims_h3 .en {
    font-size: 40px;
  }
  .v2 .tims_h3 .jp {
    font-size: 13px;
  }
  .v2 .contact_btn > a {
    padding: 42px 60px 38px 20px;
    line-height: 1.3;
    text-align: left;
  }
  .v2 .contact_btn > a::after {
    right: 20px;
    width: 30px;
    height: 30px;
  }
  .v2 .contact_btn > a:hover::after {
    right: 20px;
  }
  .v2 .contact_btn > a .sub {
    font-size: 11px;
  }
  .v2 .contact_btn > a .main {
    font-size: 20px;
  }

  .v2 .tims_cont .sec_strength {
    padding: 60px 0 70px;
  }
  .v2 .tims_cont .sec_strength .strength_list {
    gap: 5%;
    margin: 0 auto 20px;
  }
  .v2 .tims_cont .sec_strength .strength_list > li {
    width: 47.5%;
    text-align: left;
    margin: 0 auto 20px;
  }
  .v2 .tims_cont .sec_strength .strength_list > li figure {
    margin: 0 auto 5px;
  }
  .v2 .tims_cont .sec_strength .strength_list > li p {
    font-size: 14px;
  }
  .v2 .tims_cont .sec_number {
    padding: 0 0 50px;
  }
  .v2 .tims_cont .sec_number .number_list {
    gap: 5%;
  }
  .v2 .tims_cont .sec_number .number_list > li {
    width: 47.5%;
    border-radius: 15px;
    padding: 34px 0;
    margin: 0 auto 20px;
  }
  .v2 .tims_cont .sec_number .number_list > li .number_title {
  }
  .v2 .tims_cont .sec_number .number_list > li .num {
    font-size: 36px;
  }
  .v2 .tims_cont .sec_voice {
    padding: 0 0 70px;
  }
  .v2 .tims_cont .sec_voice .voice_list {
    display: block;
  }
  .v2 .tims_cont .sec_voice .voice_list > li {
    width: 100%;
    margin: 0 0 35px;
  }
  .v2 .tims_cont .sec_voice .voice_list > li:last-child {
    margin-bottom: 0;
  }
  .v2 .tims_cont .sec_voice .voice_list > li .voice {
    margin: 0 0 0.7em;
  }

  .v2 .tims_cont .sec_works {
    padding: 0 0 80px;
  }
  .v2 .tims_cont .title_bg {
    padding: 55px 0;
    margin: 0 auto 45px;
  }
  .v2 .tims_cont .sec_works .works_list {
    display: block;
    margin: 0 auto 40px;
  }
  .v2 .tims_cont .sec_works .works_list li.works_item {
    width: 100%;
    margin: 0;
    padding: 0 5px;
  }
  .v2 .tims_cont .sec_works .works_list li.works_item:last-child {
    margin-bottom: 0;
  }
  .v2 .tims_cont .sec_works .works_list li.works_item figure {
    margin: 0 0 10px;
  }

  .v2 .tims_cont .sec_works .works_list li.works_item .works_h4 {
    font-size: 20px;
    margin: 0 0 5px;
  }
  .v2 .tims_cont .sec_works .works_list li.works_item .works_h4 span {
    padding: 8px 15px;
    border-radius: 12px;
  }
  .v2 .tims_cont .sec_works .works_list li.works_item .lead {
    font-size: 16px;
    color: var(--main_color);
    margin: 0 0 0.8em;
  }
  /*slick*/
  .v2 .tims_cont .sec_works .works_list .slick-list {
    margin: 0;
  }
  .v2 .tims_cont .sec_works .works_list .slick-next,
  .v2 .tims_cont .sec_works .works_list .slick-prev {
      top: 22%;
      width: 25px;
      height: 25px;
  }
  .v2 .tims_cont .sec_works .works_list .slick-next {
      right: -10px;
  }
  .v2 .tims_cont .sec_works .works_list .slick-prev {
      left: -10px;
  }


  .v2 .tims_cont .sec_inquiry .title_bg {
    padding: 60px 0 70px;
  }
  .v2 .tims_cont .sec_inquiry .howto {
    display: block;
  }
  .v2 .tims_cont .sec_inquiry .howto::before {
    right: 0;
    width: 1px;
    height: 100%;
  }
  .v2 .tims_cont .sec_inquiry .howto > li {
    width: 100%;
    border-radius: 12px;
    padding: 22px 10px 22px 55px;
    margin: 0 auto 15px;
  }
  .v2 .tims_cont .sec_inquiry .howto > li .num {
    left: 15px;
    height: 25px;
    font-size: 25px;
  }

  .v2 .tims_cont .sec_faq {
    padding: 0 0 70px;
  }
  .v2 .tims_cont .faq_cont {
    margin: 0 auto 40px;
  }
  .v2 .tims_cont .faq_cont > dl {
    margin: 0 auto 30px;
    line-height: 1.35;
  }
  .v2 .tims_cont .faq_cont > dl > dt {
    font-size: 15px;
    padding: 0 0 15px 33px;
  }
  .v2 .tims_cont .faq_cont > dl > dd {
    padding: 20px 15px 20px 45px;
    border-radius: 11px;
  }
  .v2 .tims_cont .faq_cont > dl > dt:before,
  .v2 .tims_cont .faq_cont > dl > dd:before {
    top: -5px;
    left: 0;
    font-size: 25px;
  }
  .v2 .tims_cont .faq_cont > dl > dd:before {
    top: 17px;
    left: 17px;
  }







}