/*==========================
 | GENERAL
 ==========================*/
.note {
  padding: 10px;
  border: 1px solid #fff;
  margin: 0 auto;
  text-align: center;
  margin-top: 10px;
  max-width: 500px;
  width: 90%;
}
.link {
  margin: 30px auto;
  text-align: center;
}
.link a {
  padding: 10px 120px;
  border: 1px solid #fff;
  border-radius: 30px;
}
.link.black a {
  border: 1px solid #242424;
  color: #242424;
}
.dots {
  background-image: url("../imgs/dot.webp");
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
_::-webkit-full-page-media, _:future, :root .dots {
  background-image: url("../imgs/dot.png");
}
.section_ttl {
  padding: 50px 0;
  text-align: center;
}
.section_ttl p {
  font-size: 1.8rem;
}
.page_ttl {
  margin: 0;
  text-align: center;
  margin-bottom: 80px;
}
.page_ttl p {
  font-size: 3rem;
  line-height: 2rem;
}
.table {
  text-align: center;
  margin-top: 50px;
}
.table p {
  font-size: 1.4rem;
  margin-bottom: 30px;
}
.table table {
  width: 100%;
}
.table table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.table table tr th {
  width: 20%;
  padding: 20px 0px;
  vertical-align: top;
}
.pt_section {
  background-image: url("../imgs/bg_dot3.webp");
  background-size: 100%;
  background-repeat: no-repeat;
  padding-top: 200px;
}
.pc_section {
  background-image: url("../imgs/bg_dot.webp");
  background-size: 100%;
  background-repeat: no-repeat;
}
.recruit.pc_section {
  background-position: 0 800px;
}
.fade_in {
  opacity: 0;
  transform: translateY(30px);
  transition: all .6s;
}
.fade_in.slow {
  transition: all 1s;
}
.fade_in.slower {
  transition: all 1.4s;
}
.fade_in.view {
  opacity: 1;
  transform: translateY(0);
}
a.a-blue {
  color: rgb(107, 195, 230);
}
a.a-blue:hover {
  color: rgb(45, 113, 139);
}
@media screen and (max-width: 767px) {
  .table table th,
  .table table td {
    display: block;
    width: 100%;
  }
  .table table tr th {
    width: 100%;
  }
}
/*==========================
 | HEADER
 ==========================*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1011;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all .6s;
}
#header.top {
  background-color: transparent;
}
.header {
  justify-content: space-between;
  width: 100%;
  height: 50px;
  max-width: 1050px;
  margin: 0 auto;
}
#nav {
  font-size: 15px;
  padding-top: 3px;
}
#nav li a,
.header .logo {
  padding: 13px 20px;
  transition: all 1s;
}
.header .logo.top {
  transform: translate(-1000px);
}
.logo p {
  padding-top: 3px;
}
.logo img:first-child {
  width: 35px;
  margin-right: 10px;
  height: 30px;
}
.logo img:nth-child(2) {
  width: 220px;
  padding-top: 5px;
  height: 30px;
}
.nav_toggle {
  display: none;
  height: 44px;
  overflow: hidden;
  position: fixed;
  right: 5%;
  text-indent: 100%;
  top: 32px;
  white-space: nowrap;
  width: 44px;
  z-index: 99999;
  transition: all 0.3s; 
}
.nav_toggle span {
  background-color: #fff;
  bottom: auto;
  display: inline-block;
  height: 2px;
  left: 50%;
  position: absolute;
  right: auto;
  top: 50%;
  width: 23px;
  z-index: 10;
  transform: translateX(-50%) translateY(-50%);
}
.nav_toggle span:before, .nav_toggle span:after {
  background-color: #fff;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform 0.3s;
}
.nav_toggle span:before {
  transform: translateY(-8px) rotate(0deg);
}
.nav_toggle span:after {
  transform: translateY(8px) rotate(0deg); 
}
.nav_toggle.close_nav:before {
  transform: scale(0); 
}
.nav_toggle.close_nav:after {
  transform: scale(1);
}
.nav_toggle.close_nav span {
  background-color: rgba(255, 255, 255, 0);
}
.nav_toggle.close_nav span:before,
.nav_toggle.close_nav span:after {
  background-color: #fff;
}
.nav_toggle.close_nav span:before {
  transform: translateY(0) rotate(45deg); 
}
.nav_toggle.close_nav span:after {
  transform: translateY(0) rotate(-45deg); 
}

@media screen and (max-width: 850px) {
  #nav {
    background-image: url("../imgs/bg_dot.webp");
    background-size: 100%;
    background-repeat: no-repeat;
  }
  .nav_toggle {
    display: block;
  }
  .header {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #242424;
    transform: translateX(-100%);
    transition: .5s;
  }
  .header.open {
    transform: translateX(0);
  }
  .header .logo {
    margin-top: 100px;
  }
  .header .logo.top {
    transform: translate(0px);
  }
  #nav {
    padding-right: 20px;
    display: block;
  }
  #nav li {
    text-align: end;
  }
  #nav li a,
  .header .logo {
    padding: 40px 20px;
  }
}

/*==========================
 | MV
 ==========================*/
#mv {
  position: relative;
  width: 100%;
  min-height: 600px;
  min-height: 700px;
}
.slick-contents {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.slide_imgs {
  background-size: cover;
  background-position: center;
  min-height: 700px;
}
.slide_imgs.img1 {
  background-image: url("../imgs/mv.webp");
}
.slide_imgs.img2 {
  background-image: url("../imgs/mv2.webp");
}
.slide_imgs.img3 {
  background-image: url("../imgs/mv3.webp");
}
#mv .mv_txt_t img:first-child {
  width: 100px;
  margin-bottom: 20px;
}
#mv .mv_logo_txt {
  width: 500px;
}
.mv_txt {
  position: relative;
  background-image: url("../imgs/dot.webp");
  background-size: cover;
  width: 100%;
  /* #mvと一緒 */
  min-height: 600px;
  min-height: 700px;
  z-index: 1000;
}
_::-webkit-full-page-media, _:future, :root .mv_txt {
  background-image: url("../imgs/dot.png");
}
.mv_txt_t {
  padding-top: 280px;
  text-align: center;
}
.mv_txt_t p {
  font-size: 2rem;
}
.mv_txt_u {
  padding-top: 100px;
  text-align: center;
}
.mv_txt_u p:nth-child(2) {
  font-size: 1.5rem;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #mv img:first-child {
    width: 70px;
  }
  #mv .mv_logo_txt {
    width: 290px;
  }
  .mv_txt_u {
    padding-top: 40px;
  }
}

@media(max-width: 767px) {
  .header .logo {
    padding-top: 10px;   /* 上のパディングを少なく */
    padding-bottom: 20px; /* 下のパディングも少なく */
  }
  #nav li a {
    padding: 25px 20px; /* 上下のパディングを狭める例 */
  }
}

/*==========================
 | TOP
 ==========================*/
/* service */
#service {
  background-image: url("../imgs/bg_dot.webp");
  background-size: 120%;
  background-repeat: no-repeat;
  padding-bottom: 70px;
}
#service .flex {
  justify-content: space-between;
  width: 80%;
  margin: 20px auto;
}
#service .flex_content_txt {
  text-align: center;
}
#service .flex_content_icon {
  padding: 20px;
  text-align: center;
}
#service .flex_content_icon img.dev_icon {
  margin-top: 14px;
  width: 80px;
}
#service .flex_content_icon img.sp_icon {
  width: 90px;
}
#service .flex_content_icon img.op_icon {
  width: 70px;
}
#service .service_txt {
  width: 74%;
  margin: 0 auto;
  text-align: justify;
}
#service .service_txt p {
  font-size: .8rem;
  line-height: 2rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  #service {
    background-position: 0 -190px;
  }
  #service .flex_content {
    display: flex;
    justify-content: space-around;
    margin-top:30px;
  }
  #service .flex_content_txt {
    padding-top: 30px;
  }
  #service .flex_content_icon {
    padding: 0;
    margin-left: 30px;
  }
}

/* service_details */
#service_details .flex {
  width: 100%;
}
#service_details .flex_content {
  width: 50%;
}
#service_details .flex_content.img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
#service_details .flex_content.img.development {
  background-image: url("../imgs/development.webp");
}
#service_details .flex_content.img.strategy_planning {
  background-image: url("../imgs/strategy_planning.webp");
}
#service_details .flex_content.img.operation {
  background-image: url("../imgs/operation.webp");
}
#service_details .flex_content_icon img {
  width: 60px;
}
#service_details .flex_content.txt {
  padding: 70px 0;
  background: #fff;
  color: #242424;
}
#service_details .flex_content_txt_inner {
  max-width: 380px;
  margin: 0 auto;
}
#service_details .flex_content.txt .flex {
  justify-content: space-between;
}
#service_details .flex_content_txt {
  margin: 10px 0;
}
#service_details .flex_content_txt p:first-child {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
#service_details .flex_content_list li:before {
  content: "-";
  margin-right: 3px;
}
#service_details .flex_content_list li {
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  #service_details .flex_content_txt_inner {
    padding: 0px 20px;
  }
}
@media screen and (max-width: 767px) {
  #service_details .flex_content {
    width: 100%;
  }
  #service_details .flex_content_icon,
  #service_details .flex_content.txt .flex {
    padding-left: 50px;
  }
  #service_details .flex_content.img {
    height: 300px;
  }
  #service_details > .flex {
    display: flex;
    flex-direction: column;
  }
  #service_details > .flex:nth-child(2) {
    flex-direction: column-reverse;
  }
}

/* work */
#work {
  background-image: url("../imgs/bg_dot2.webp");
  background-size: 120%;
  background-repeat: no-repeat;
  background-position: -130px 270px;
  padding-bottom: 70px;
}
#work .flex_content {
  padding: 20px;
}
#work .flex_content_img {
  position: relative;
  background: #e1f1f8;
  width: 280px;
  height: 190px;
  margin: 0 auto;
  margin-bottom: 20px;
  overflow: hidden;
}
#work .flex_content_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#work .flex_content_img_a {
  display: block;
  width: 285px;
  height: 190px;
  margin: 20px auto;
}
#work .flex_content_img img.vertical {
  width: auto;
  left: 0px;
  height: 100%;
}
#work .flex_content_txt {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding-left: 10px;
  width: 285px;
  margin: 0 auto;
}
#work .flex_content_txt a:hover {
  opacity: .8;
}
#work .flex_content_txt .flex_content_txt_b {
  font-size: 1.4rem;
  color: #B8B8B8;
}
#work .flex_content_txt .flex_content_txt_c {
  font-size: .7rem;
  color: #B8B8B8;
}
@media screen and (max-width: 950px) {
  #work .flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  #work {
    background-image: url("../imgs/bg_dot.webp");
    background-size: 120%;
    background-repeat: no-repeat;
    background-position: 0 -190px;
  }
  #work.nobg {
    background-image: none;
  }
}
/* recruit */
#recruit {
  background-image: url("../imgs/recruit.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;  
}
#recruit .recruit {
  background-image: url("../imgs/dot.webp");
  padding: 20px 0px;
}
_::-webkit-full-page-media, _:future, :root #recruit .recruit {
  background-image: url("../imgs/dot.png");
}
#recruit .recruit_txt {
  text-align: center;
}
#recruit .recruit_txt.sp {
  display: none;
}
#recruit .recruit_txt p {
  display: inline-block;
  color: #242424;
  background: #fff;
  margin-bottom: 10px;
  font-size: 1.4rem;
  padding: 5px;
}
@media screen and (max-width: 767px) {
  #recruit .recruit_txt.pc {
    display: none;
  }
  #recruit .recruit_txt.sp {
    display: block;
  }
}

/* contact */
#contact {
  background: #000;
  padding: 50px 0;
}
#contact .contact_txt {
  text-align: center;
  margin-bottom: 90px;
}
#contact .contact_txt p {
  font-size: 1.4rem;
}

/*==========================
 | SERVICE
 ==========================*/
#_service .flex {
  justify-content: space-between;
  width: 70%;
  margin: 50px auto;
}
#_service .flex_content_txt {
  text-align: center;
}
#_service .flex_content_icon {
  padding: 20px;
  text-align: center;
}
#_service .flex_content_icon img.dev_icon {
  margin-top: 14px;
  width: 80px;
}
#_service .flex_content_icon img.sp_icon {
  width: 90px;
}
#_service .flex_content_icon img.op_icon {
  width: 70px;
}
#_service .service_txt {
  width: 74%;
  margin: 0 auto;
  text-align: justify;
}
#_service .service_txt p {
  font-size: .8rem;
  line-height: 2rem;
  letter-spacing: 0;
}
#_service .page_sub_ttl {
  text-align: center;
  margin-bottom: 20px;
}
#_service .page_sub_ttl p {
  font-size: 1.5rem;
}
#_service_details .flex {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
#_service_details .flex:nth-child(1),
#_service_details .flex:nth-child(3) {
  position: relative;
  right: 50px;
}
#_service_details .flex:nth-child(2) {
  position: relative;
  left: 50px;
}
#_service_details .flex_content.img {
  width: 60%;
}
#_service_details .flex_content.txt {
  width: 40%;
  padding: 20px;
}
#_service_details .flex_content.img {
  padding-top: 40px;
}
#_service_details .flex_content.img img {
  width: 100%;
}
#_service_details .flex_content.txt .flex_content_txt_icon {
  width: 100px;
  height: 100px;
  border: 1px solid  rgba(255, 255, 255, 0.5);
  border-radius: 50% 50%;
  margin: 10px auto;
  text-align: center;
}
#_service_details .flex_content.txt .flex_content_txt_icon.dev {
  padding: 18px 10px 0px 15px;
}
#_service_details .flex_content.txt .flex_content_txt_icon.sp {
  padding: 16px 0px 0px 0px;
}
#_service_details .flex_content.txt .flex_content_txt_icon.op {
  padding: 10px 0px 0px 3px;
}
#_service_details .flex_content.txt .flex_content_txt_icon img {
  width: 70px;
}
#_service_details .flex_content.txt .flex_content_txt_ttl {
  text-align: center;
  margin-bottom: 10px;
}
#_service_details .flex_content.txt .flex_content_txt p {
  font-size: .8rem;
}
#_service_details .flex_content.txt .flex_content_txt_ttl p:first-child {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
#_service_details .flex_content.txt .flex_content_txt_ttl p:nth-child(2) {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  #_service .flex {
    width: 100%;
  }
  #_service .flex_content {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
  }
  #_service .service_txt {
    width: 90%;
  }
  #_service .flex_content_txt {
    padding-top: 30px;
  }
  #_service .flex_content_icon {
    padding: 0;
  }
  #_service_details .flex {
    display: flex;
    flex-direction: column;
  }
  #_service_details .flex:nth-child(1),
  #_service_details .flex:nth-child(3) {
    right: 0px;
  }
  #_service_details .flex:nth-child(2) {
    position: relative;
    left: 0px;
  }
  #_service_details .flex:nth-child(2) {
    flex-direction: column-reverse;
  }
  #_service_details .flex_content.txt,
  #_service_details .flex_content.img {
    width: 100%;
  }
  #_service_details .flex_content.txt {
    background-image: url("../imgs/bg_dot.webp");
    background-size: 120%;
    background-repeat: no-repeat;
    background-position: 0 -190px;
  }
}
/*==========================
 | WORK
 ==========================*/
#_work .page_sub_ttl {
  text-align: center;
  margin-bottom: 100px;
}
#_work .page_sub_ttl p:first-child{
  font-size: 1.4rem;
  margin-bottom: 30px;
}
#_work nav.pagination-container {
	text-align: center;
	padding: 50px 0;
}
#_work nav.pagination-container ul li a {
	color: #fff;
	background-color: transparent;
	border-color: transparent;
	padding: 0px 15px;
}
#_work nav.pagination-container ul li.current_page a {
	background: rgb(160, 186, 226);
	border-radius: 15px;
}
#_work nav.pagination-container ul li.disabled a {
	opacity: .5;
}
#_work .flex {
  flex-wrap: wrap;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
}                                                                                                                                                                                                                                                             
#_work .flex .flex_content:nth-child(3n-1) {
  margin-top: 30px;
}
#_work .flex .flex_content:nth-child(3n) {
  margin-top: 60px;
}
#_work .flex_content {
  padding: 20px;
  width: 30%;
  min-width: 360px;
  margin: 0 auto;
}
#_work .flex_content.dummy .flex_content_img {
	background: transparent;
}
#_work .flex_content_img {
  position: relative;
  background: #575858;
  width: 285px;
  height: 190px;
  margin: 0 auto;
  margin-bottom: 20px;
  overflow: hidden;
}
#_work .flex_content_img_a {
  display: block;
}
#_work .flex_content_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#_work .flex_content_img img.no_img {
  top: 17%;
  left: 30%;
  width: 35%;
}
#_work .flex_content_img img.vertical {
  width: auto;
  left: 0px;
  height: 101%;
}
#_work .flex_content_txt {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding-left: 10px;
  width: 285px;
  margin: 0 auto;
}
#_work .flex_content_txt .flex_content_txt_b {
  font-size: 1.4rem;
  color: #B8B8B8;
}
#_work .flex_content_txt .flex_content_txt_c {
  font-size: .7rem;
  color: #B8B8B8;
}
@media screen and (max-width: 767px) {
  #_work .work_nav {
    display: flex;
    flex-wrap: wrap;
  }
  #_work .flex .flex_content:nth-child(3n-1),
  #_work .flex .flex_content:nth-child(3n) {
    margin-top: 0px;
  }
  #_work .flex_content.dummy {
    display: none;
  }
}
/*==========================
 | WORK DETAIL
 ==========================*/
#work_detail {
  padding-top: 70px;
}
#work_detail .work_detail_up {
  background-image: url("../imgs/bg_dot.webp");
  background-repeat: no-repeat;
  background-position: 0 300px;
  background-size: 120%;
}
#work_detail .list_view a {
  border: 1px solid #fff;
  padding: 5px 30px;
  border-radius: 20px;
}
#work_detail .list_view a i {
  margin-right: 10px;
}
#work_detail .top_txt.flex {
  padding: 30px 0px;
}
#work_detail .flex {
  justify-content: space-between;
  padding: 10px 0px;
}
#work_detail .flex .img {
  width: 48%;
  height: 420px;
  background: rgb(172, 217, 224);
}
#work_detail .flex .flex_content {
  width: 48%;
}
#work_detail .flex .flex_content .flex_content_ttl {
  font-size: 1.8rem;
  margin-bottom: 50px;
}
#work_detail .flex .flex_content dt,
#work_detail .flex .flex_content dd {
  text-align: right;
}
#work_detail .flex .flex_content dl dt {
  margin-top: 30px;
}
#work_detail .flex .flex_content dl dt:first-child {
  margin-top: 0;
}
#work_detail .work_detail_dn {
  background: #fff;
  color: #242424;
  padding: 50px 0px;
}
#work_detail .work_detail_dn_txt {
  margin: 30px auto;
}
#work_detail .work_detail_dn_txt .work_detail_dn_txt_ttl {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
#work_detail .work_detail_dn_imgs.flex {
  justify-content: space-around;
}
#work_detail .work_detail_dn_imgs.flex .work_detail_dn_img {
  width: 48%;
  background: rgb(211, 247, 242);
  height: 150px;
}
#work_detail .work_detail_dn .work_detail_dn_img.big {
  background: rgb(211, 247, 242);
  height: 390px;
}
#work_detail .work_detail_dn .inner {
  max-width: 580px;
}
#work_detail .work_detail_dn .list_view {
  text-align: center;
  margin-top: 30px;
  justify-content: center;
}
#work_detail .work_detail_dn .list_view li:nth-child(2) a {
  color: #242424;
  border: 1px solid #242424;
}
#work_detail .work_detail_dn .list_view i {
  color: #242424;
}
@media screen and (max-width: 767px) {
  #work_detail .flex .img {
    height: 220px;
  }
  #work_detail .top_img {
    display: flex;
  }
  #work_detail .flex .flex_content {
    width: 100%;
    margin-bottom: 30px;
  }
  #work_detail .work_detail_dn_imgs.flex {
    display: flex;
  }
  #work_detail .work_detail_dn_imgs.flex .work_detail_dn_img {
    width: 48%;
    height: 120px;
  }
  #work_detail .work_detail_dn .work_detail_dn_img.big {
    height: 220px;
  }
  #work_detail .work_detail_dn .list_view {
    display: flex;
  }
}

/* other work */
#other_work {
  padding: 30px 0px;
}
#other_work .flex_content {
  padding: 20px;
  width: 300px;
}
#other_work .other_work_contents.flex {
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: flex-start;
}
#other_work .flex_content_img {
  position: relative;
  background: #e1f1f8;
  width: 220px;
  height: 300px;
  margin: 0 auto;
  margin-bottom: 20px;
  overflow: hidden;
}
#other_work .flex_content_img img.no_img {
  position: absolute;
  top: 35%;
  left: 35%;
  width: 35%;
}
#other_work .flex_content_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#other_work .flex_content_img img.vertical {
  width: auto;
  left: 0px;
  height: 100%;
}
#other_work .flex_content_txt {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding-left: 10px;
}
#other_work .flex_content_txt p:nth-child(2) {
  font-size: 1.4rem;
  color: #B8B8B8;
}
#other_work .flex_content_txt p:nth-child(3) {
  font-size: .7rem;
  color: #B8B8B8;
}
@media screen and (max-width: 767px) {
  #other_work .other_work_contents.flex {
    display: flex;
  }
}
/*==========================
 | COMPANY
 ==========================*/
#company .imgs {
  justify-content: space-between;
  margin-top: 80px;
}
#company .imgs .img {
  width: 32%;
  text-align: center;
}
#company .imgs .img img {
  width: 100%;
}
#company .map {
  margin: 50px 0;
}
#company .map table {
  margin-left: 100px;
}
#company .map table tr {
  border-bottom: 0;
}
#company .map table th {
  vertical-align: top; 
}
@media screen and (max-width: 767px) {
  #company .imgs .img {
    width: 100%;
    margin-bottom: 20px;
  }
  #company .map table {
    margin-left: 0px;
  }
}

/*==========================
 | NEWS
 ==========================*/
#news {
  background-image: url("../imgs/bg_dot.webp");
  background-size: 120%;
  background-repeat: no-repeat;
  padding-bottom: 70px;
}
#news .flex {
  justify-content: space-between;
}
#news .flex:nth-child(2) {
  margin-top: 30px;
}
#news .flex .flex_content {
  position: relative;
  width: 30%;
}
#news .flex .flex_content a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 1s;
}
#news .flex .flex_content a:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: all 0.4s;
}
#news .flex .flex_content a:hover:after {
  width: 100%;
}
#news .flex .flex_content_img.no_img {
  padding-top: 33px;
  background: #000;
}
#news .flex .flex_content_img img {
  object-fit: cover;
  width: 100%;
  height: 180px;
}
#news .flex .flex_content_img.no_img img {
  width:220px;
}
#news .flex .flex_content_txt p:first-child {
  opacity: .8;
  font-size: .9rem;
  margin-top: 5px;
}
#news .flex .flex_content_txt p:nth-child(2) {
  margin-bottom: 8px;
}
#news .news_content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  #news .flex .flex_content {
    width: 100%;
    max-width: 350px;
    margin: 30px auto;
  }
}
/*==========================
 | NEWS PAGE
 ==========================*/
#_news {
  padding-bottom: 80px;
}
#_news .news_content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
#_news .flex .flex_img {
  width: 30%;
  padding-top: 20px;
}
#_news .flex .flex_img.no_img{
  background: #000;
  padding-top: 48px;
}
#_news .news_content .flex .flex_img img {
  width: 100%;
}
#_news .news_content .flex .flex_img.no_img img {
  width: 200px;
}
#_news .flex .flex_txt {
  padding: 10px;
  width: 70%;
}
#_news .flex .flex_txt p:first-child {
  opacity: .8;
  font-size: .9rem;
}
#_news .flex .flex_txt p:nth-child(2) {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #_news .flex .flex_img {
    width: 100%;
  }
  #_news .flex .flex_txt {
    width: 100%;
  }
}
/*==========================
 | RECRUIT
 ==========================*/
#_recruit .recruit_txt {
  text-align: center;
}
#_recruit .recruit_txt.sp{
  display: none;
}
#_recruit .recruit_txt p {
  display: inline-block;
  color: #242424;
  background: #fff;
  margin-bottom: 10px;
  font-size: 1.4rem;
  padding: 5px;
}
/* gallery */
#gallery .flex_content {
  width: 48%;
  padding: 20px 5px;
}
#gallery .flex_content img {
  width: 100%;
}
#gallery .flex_content .meet2 {
  width: 100%;
  overflow: hidden;
}
#gallery .flex_content .meet2 img {
  width: 113%;
}
@media screen and (max-width: 767px) {
  /* gallery */
  #gallery .flex_content {
    width: 100%;
  }
  #_recruit .recruit_txt.sp {
    display: block;
  }
  #_recruit .recruit_txt.pc {
    display: none;
  }
}
/*==========================
 | PP
 ==========================*/
#pp {
  padding-bottom: 100px;
}
#pp .pp_txt_block {
  margin-top: 50px;
}
#pp .pp_txt_block .pp_txt_block_ttl {
  font-size: 1.4rem;
  margin-bottom: 5px;
}
#pp .pp_txt_block .pp_txt_block_sub_ttl {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
#pp .pp_txt_block .indent {
  margin-left: 10px;
}
#pp .pp_txt_block .pp_txt_block_list li {
  list-style: disc;
  margin-left: 20px;
}
/*==========================
 | CONTACT
 ==========================*/
#_contact .form_group {
  max-width: 400px;
  width: 100%;
  margin: 30px auto;
}
#_contact .form_group label {
  margin-bottom: 10px;
}
#_contact .form_group label span {
  margin-left: 10px;
}
#_contact .form_group input,
#_contact .form_group textarea {
  width: 100%;
  background: #242424;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 5px;
}
#_contact .form_group.submit_btn {
  text-align: center;
}
#_contact #submit {
  width: 250px;
  height: 60px;
  background: #242424;
  border: 1px solid #fff;
  border-radius: 30px;
}
#_contact #submit:disabled {
  opacity: .4;
}
#contact_success,
#contact_fail {
  padding-top: 250px;
}
.contact_res_txt {
  text-align: center;
}
.contact_res_txt p:first-child {
  font-size: 1.4rem;
  margin-bottom: 30px;
}
/*==========================
 | FOOTER
 ==========================*/
#footer .footer {
  padding: 100px 0 30px 0;
}
#footer .footer_logo {
  text-align: center;
  margin-bottom: 30px;
}
#footer .footer_logo img:first-child {
  width: 40px;
  margin-bottom: 10px;
}
#footer .footer_logo .footer_logo_txt {
  width: 200px;
}
#footer #footer_nav li a {
  padding: 20px 20px;
}
#footer .footer_sns li a i {
  font-size: 1.2rem;
  padding: 10px;
}
#footer .copy {
  text-align: right;
}
@media screen and (max-width: 767px) {
  #footer .footer_sns {
    display: flex;
  }
  #footer #footer_nav {
    display: none;
  }
  #footer .copy {
    text-align: center;
  } 
}
