@charset "UTF-8";
html {
  font-size: 62.5%;
  /* 1rem = 10px */
}

.flow-navi__wrapper {
  display: none;
}

.flow-navi {
  background-image: url(../img/batu.svg);
  background-position: top 10px right 10px;
  background-repeat: no-repeat;
  width: 40%;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  box-shadow: 0px 0px 10px -5px #777777 !important;
  background-color: #fff;
  padding: 40px 30px;
}

.post-password-form{
	text-align: center;
    padding: 90px 0 0 0;
    font-size: 20px;

	p{
		margin-bottom: 50px;
	}

	input{
		&[type="password"]{
			border: 1px solid;
			padding: 10px 0;
		}

		&[type="submit"]{
			background: #eee;
			padding: 10px 50px;
			border-radius: 5px;
			border: 1px solid #aaa;
		}
	}
}

@media (max-width: 768px) {
  .flow-navi {
    width: 100%;
    display: none;
  }
}

.flow-navi ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flow-navi ul li {
  width: 50%;
}

.flow-navi ul .tel {
  color: #0068a6;
}

.flow-navi ul .tel .txt {
  font-size: 1.6rem;
  font-weight: 700;
}

.flow-navi ul .tel .tel_box {
  font-size: 2.8rem;
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 700;
}

.flow-navi ul .tel .tel_box a {
  display: flex;
  align-items: center;
  color: #0068a6;
}

.flow-navi ul .tel .tel_box a img {
  margin-right: 10px;
}

main {
  overflow-x: hidden;
}

.overlay, #yt_player {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100vh;
  width: auto;
  height: auto;
}

.overlay {
  z-index: -1;
}

#yt_player {
  z-index: -2;
}

.Item-Text {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.Item-Text:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  /*テキストからの距離*/
  width: 0%;
  /*初期状態では下線非表示*/
  height: 2px;
  /*下線の高さ*/
  background: #9bcedc;
  /*下線の色*/
  z-index: -1;
  transition: all 0.4s;
  /*アニメーション速度*/
}

.Item-Text.wh:after {
  background: #fff;
}

.Item-Text:hover:after {
  width: 100%;
  /*hover時に表示*/
}

.btn a {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0;
  font-size: 1.4rem;
  padding: 10px 0;
  position: relative;
  z-index: 1;
  transition: .3s;
}

.btn a::before {
  transform: skewX(-45deg);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #fff;
  border: 1px solid #9bcedc;
}

.btn a span {
  display: block;
}

.btn a span::after {
  content: url(../img/arrow01.svg);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.btn a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #9bcedc;
  transform-origin: 100% 50%;
  transform: scaleX(0) skewX(-45deg);
  transition: transform ease .3s;
}

.btn a:hover {
  color: #fff;
}

.btn a:hover::after {
  transform-origin: 0% 50%;
  transform: scaleX(1) skewX(-45deg);
}

.btn.company {
  margin-top: 75px;
}

.btn.company a {
  max-width: 238px;
  margin-left: auto;
}

.btn.news a {
  padding: 10px 40px;
}

@media (max-width: 768px) {
  .btn.news a {
    margin-top: 20px;
  }
}

.btn.footer a {
  max-width: 400px;
  padding: 10px 20px;
}

.btn.footer a img {
  margin-right: 20px;
}

.btn.footer a span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.footer a span::after {
  content: url(../img/footer_arrow.svg);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.btn.footer a:hover img {
  display: none;
}

.btn.footer02 a {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0;
  font-size: 1.4rem;
  padding: 10px 0;
  position: relative;
  z-index: 1;
  transition: .3s;
  width: 100%;
  color: #fff;
  max-width: 100%;
}

.btn.footer02 a::before {
  transform: skewX(-25deg);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #9bcedc;
  border: 1px solid #9bcedc;
}

.btn.footer02 a span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.footer02 a span img {
  margin-right: 20px;
}

.btn.footer02 a span::after {
  content: url(../img/hover_arrow.svg);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.btn.footer02 a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  border: 1px solid #9bcedc;
  transform-origin: 100% 50%;
  transform: scaleX(0) skewX(-25deg);
  transition: transform ease .3s;
}

.btn.footer02 a:hover {
  color: #9bcedc;
}

.btn.footer02 a:hover img {
  display: none;
}

.btn.footer02 a:hover::after {
  transform-origin: 0% 50%;
  transform: scaleX(1) skewX(-25deg);
}

.btn.company_btn {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn.company_btn::before {
  content: url(../img/homebk01.png);
  display: block;
}

@media (max-width: 768px) {
  .btn.company_btn::before {
    display: none;
  }
}

.btn.company_btn::after {
  content: url(../img/homebk02.png);
  display: block;
}

@media (max-width: 768px) {
  .btn.company_btn::after {
    display: none;
  }
}

.btn.company_btn a {
  min-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-align: center;
  margin: 0;
  font-size: 3rem;
  padding: 10px 0;
  position: relative;
  margin: 0 auto;
  z-index: 1;
  transition: .3s;
}

@media (max-width: 768px) {
  .btn.company_btn a {
    font-size: 2rem;
    min-width: 300px;
  }
}

.btn.company_btn a figure {
  margin: 0;
  padding: 0;
  position: relative;
  top: -15px;
  right: -5px;
}

@media (max-width: 768px) {
  .btn.company_btn a figure {
    top: -8px;
  }
}

.btn.company_btn a:hover::after {
  border: 2px solid #fff;
  display: block;
}

@media (min-width: 769px) {
  .sp_list {
    display: none;
  }
}

/*横から表示*/
.move.m_left {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  -webkit-transition: all .5s ease;
  transition: all 0.5s ease;
}

.move.m_left.is-animate {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.move.m_rihgt {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
  -webkit-transition: all .5s ease;
  transition: all 0.5s ease;
}

.move.m_rihgt.is-animate {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.move.m_top {
  -webkit-clip-path: inset(100% 0 0 0%);
  clip-path: inset(100% 0 0 0%);
  -webkit-transition: all .5s ease;
  transition: all 0.5s ease;
}

.move.m_top.is-animate {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

header {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  position: relative;
  margin: 0;
  padding: 0;
  z-index: 5;
}

@media (max-width: 768px) {
  header {
    z-index: 9999999;
  }
}

header #movetop {
  position: absolute;
  top: 80px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% - 80px);
  object-fit: cover;
}

@media (max-width: 768px) {
  header #movetop {
    display: none;
  }
}

header .inner {
  max-width: 100%;
  padding: 3px 8% 3px 3%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: white;
}

@media (max-width: 900px) {
  header .inner {
    padding: 3px 0% 3px 1%;
    position: fixed;
    top: 0;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
  }
  header .inner figure {
    width: 40%;
  }
}

@media (max-width: 768px) {
  header .inner figure {
    width: 40%;
  }
}

header .inner .pc_list {
  display: flex;
  align-items: center;
}

@media (max-width: 800px) {
  header .inner .pc_list {
    display: none;
  }
}

header .inner .pc_list li {
  font-size: 140%;
  margin-right: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

header .inner .pc_list li a {
  color: #13202f;
}

header .contact {
  position: absolute;
  right: 0;
  top: 0px;
  width: 120px;
  height: 80px;
  background-color: #0068a6;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 800px) {
  header .contact {
    display: none;
  }
}

header .contact a {
  color: #fff;
}

header .contact a::before {
  content: url(../img/icon01.svg);
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

header .tel_box {
  position: absolute;
  bottom: 0;
  right: -25px;
  z-index: 1;
  text-align: center;
  margin: 0;
  width: 330px;
  font-size: 2.8rem;
  padding: 10px 0;
  color: #0068a6;
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 700;
}

header .tel_box::before {
  content: url(../img/icon02.svg);
}

header .tel_box::after {
  transform: skewX(-45deg);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #fafeed;
}

header .change_list {
  position: absolute;
  top: 15%;
  right: 20px;
  background-color: #0068a6;
  text-align: center;
  box-shadow: 0px 0px 10px -5px #000;
}

header .change_list.sec {
  top: 15%;
}

header .change_list li a {
  padding: 10px 20px;
  display: block;
  border-bottom: 2px solid #fff;
  color: #fff;
}

header .change_list li:nth-child(3) a {
  border-bottom: none;
}

header .change_list li.active a {
  background-color: #fff;
  color: #003077;
}

header .mv_txt {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, 35%);
}

@media (max-width: 768px) {
  header .mv_txt {
    width: 96%;
    transform: translate(2%, -50%);
    z-index: -1;
  }
}


.single_box01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

img {
  max-width: 100%;
  height: auto;
}

.mv_img {
  width: 60%;
}

.mv_img img {
  max-width: 100%;
  height: auto;
}

.mv_txt {
  width: 35%;
}

.interview_box01 {
  display: flex;
  align-items: center;
}






.mv_txt{
    top: 65% !important;
        width: 50% !important;
}
.rela_box{
position: relative;
}
.slider_txtbox{
position: absolute;
left: 10px;
bottom: 10px;
background-color: rgba(255, 255, 255, 0.8);
font-size: 1.8rem;
line-height: 1.5;
width: 95%;
padding: 20px;
}
header{
height: auto;
 position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, .1);
  z-index: 100;
  justify-content: space-between;
}
header .inner{
/* background-image: linear-gradient(90deg, rgba(233, 233, 233, 1), rgba(172, 172, 172, 1)); */

padding: 18px 14% 16px 3%;
}
header .inner .pc_list li a{
font-size: 2rem;
font-weight: 400;

}
header .contact{
background-color: #616365;

width: auto;
height: 100px;
font-size: 1.4rem;
text-align: center;
padding: 20px;	
transition: 0.4s ;
}



header .tel_box{
color: #00f0d1;
}
header .tel_box::before {
content: url(icon02.png);
}
header .tel_box::after{
background-color: #00f0d1;
}
header .tel_box{
color: #fff;
}
.mv_txt_top_po{
position: absolute;
top:52%;
left: 2%;
}


.new_btn{
    text-align: center;
}
.new_btn a{
    display: block;
    background-color: #fff;
    max-width: 300px;
    padding: 5px;
    text-align: center;
    color: #616365;
    font-size: 1.4rem;
    margin: 0 auto;
    border-radius: 10px;
}
.top_list .btn_waoks{
    margin: 0 auto;
    background-color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    color: #616365;
    font-size: 1.4rem;
    display: block;
    max-width: 200px;
    text-align: center;

}
.mv_txt11 h2{
    font-size: 4rem;
    color: #fff;
}
.mv_txt11 p{
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 30px;
    color: #fff;
    
}
.top_news{
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 30px;
}
.top_news li{
    width: 31%;
    margin: 0 1%;
}
.top_news li p{
    margin-top: 10px;
    text-align: left;
}
.top_news li p img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.top_news li p img{
    width: 100%;
}
@media (max-width:750px) {
    .mv_txt11 h2{
    font-size: 2rem;
}
.top_news{
    display: none;
}
}
.mv_txt11 img.wd_100{
    width: 97%;
    margin-top: 10px;
}
.new_bana{
    text-align: center;
    padding: 20px 0;
}

	
#subject {
	background: #3d3d3d;
  background-image: url(../images/subject_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
	padding: 40px 0;
}		

#subject h2 {
font-size: 3rem;
    color: #fff;
    text-align: center;
}		

#subject ul {
    display: flex;
    width: 1000px;
    height: 100%;
    margin: 0 auto;
    padding: 10px 0 0;
}

@media (max-width:750px) {
#subject ul {
  display: block;
    width: 80%;
}
}

#subject ul li {
	width: 100%;
  height: 100%;
  background-image: url(../images/subject_li_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
	margin: 0;
	padding: 40px;
}

#subject ul li img {
  margin: 10% 0 0 15%;
  width: 50%;
}

#subject ul li p {
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 30px 0 100px 15%;
    width: 65%;
}


.contentsList {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 10px;
	max-width: 1200px;
	margin: 0 auto;
}
.contentsList li {
    display: flex;
    align-items: stretch;
    width: 33.3%;
    padding: 10px 0;
}
.contentsList li:nth-child(3n + 1) .contentCard {
    border-left: 1px solid #000;
}
.contentsList li:nth-child(n + 4) {
    border-top: 1px solid #000;
}
.contentsList li .contentCard {
    width: 100%;
    padding: 0px;
    border-right: 1px solid #000;
}
.contentsList li .contentCard .txtData {
    padding: 10px;
}
.thisCategory {
    display: flex;
    width: 100%;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 500;
}
h2.txtTitle {
    font-size: 2rem;
	margin-bottom: 20px;
	font-weight: bold;
}
h2.txtTitle_llong {
    font-size: 2rem;
	margin-bottom: 20px;
	font-weight: bold;
}
.txtLead {
    font-size: 1.3rem;
	line-height: 1.4;
}
.contentCard .txtData .keywordList {
    margin-top: 2.5em;
}
.txtData{
	position: relative;
}
.txtTitle{
	min-height: 50px;
}
.txtTitle_llong{
	min-height: 100px;
}
.txtDate {
    margin-top: 0.8em;
    font-size: 1.5rem;
    text-align: right;
	position: absolute;
	right: 10px;
	bottom: 10px;
}

.new_box{
    /* background-image: url(bk.jpg); */
}
.new_box h2{
    text-align: right;
    font-size: 5rem;
    font-weight: bold;
    padding: 50px 0 0;
    max-width: 1200px;
    margin: 0 auto;
    font-weight: 400;
}
.new_box h2 span{
display: block;
font-size: 2.4rem;
}
.new_box ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}
.new_box ul li{
    width: 24%;
    background-color: #fff;
    border: 1px solid #ccc;
    margin-top: 20px;
    padding: 20px 5px 0;
}
.new_box ul li h3{
    font-size: 2.4rem;
    text-align: center;
    font-weight: bold;
}
.new_box ul li p{
    font-size: 1.4rem;
    text-align: center;
    margin-top: 20px;
    line-height: 2;
}
.new_box ul li figure{
    width: 60%;
    margin: 0 auto;
    text-align: center;
}
.new_box ul li figure img{
    max-height: 200px;
}
.new_box ul li figure.service_img02 img{
    max-height: 100px;
}

.new_box02{
    /* background-image: url(bk.jpg); */
    padding: 10px 0;
}
.new_box02.bg{
    /* background-image: url(bk.jpg); */
    padding: 10px 0;
    border: 1px solid #ccc;
    padding: 30px;
    max-width: 1200px;
    margin: 30px auto 0;
}
.new_box02 h2{
    text-align: left;
    font-size: 5rem;
    font-weight: bold;
    padding: 50px 0 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}
.new_box02 h2 span{
    display: block;
    font-size: 2.4rem;
}
.new_box02.bg h2{
    text-align: left;
    font-size: 5rem;
    font-weight: bold;
    padding: 20px 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}
.new_box02.bg h2 span{
    display: block;
    font-size: 2.4rem;
}
.new_box02 ul{

}
.new_box02 ul .slick-dots{
    display: none !important;
}
.new_box02 ul.top_list{
    max-width: 1130px;
    margin: 0 auto;
    display: flex;
    column-gap: 40px;

}
@media (max-width: 768px) {
.new_box02 ul.top_list {
flex-direction: column; /* 縦並びに切り替え */
}
}


.new_box02 ul.top_list li{
    min-height: 500px;
    width: 100%;
    position: relative;
    padding-bottom: 20px;
}

@media (max-width: 750px) {
.new_box02 ul.top_list li {
  min-height: 300px!important;
}
}

.slick-initialized .slick-slide{
margin: 10px;
}
.new_box02 ul.top_list li a{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}
.new_box02 ul.top_list li.img01{
    background-image: url(../img/simg01.jpg);
    background-size: cover;
    background-position: center;
}
.new_box02 ul.top_list li.img02{
    background-image: url(../img/simg02.jpg);
    background-size: cover;
    background-position: center;
}
.new_box02 ul.top_list li.img03{
    background-image: url(../img/simg03.jpg);
    background-size: cover;
    background-position: center;
}
.new_box02 ul.top_list li.img04{
    background-image: url(../img/simg04.jpg);
    background-size: cover;
    background-position: center;
}
.new_box02 ul.top_list li .txt_box{
    position: absolute;
    bottom: 20px;
    width: 100%;
}
.new_box02 ul.top_list li h3{
    font-size: 3rem;
    text-align: left;
    font-weight: bold;
    padding: 20px 20px 0 20px;
    color: #fff;
    /* position: absolute;
    bottom: 130px; */
    
}
.new_box02 ul.top_list li h3 span{
    font-size: 1.8rem;
    display: block;
    font-weight: 400;
}
.new_box02 ul.top_list li p{
    font-size: 1.4rem;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.5;
    min-height: 150px;
    /* position: absolute;
    bottom: 0px;
    left: 0%; */
    /* transform: translateX(-50%); */
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    width: 100%;
}

.bikou{
    max-width: 560px;
    margin: 0 auto;
}
.bikou li{
    list-style:decimal;
    font-size:1.6rem;
    margin-bottom: 20px;
}
.bikou_noto{
    text-align: left;
    font-size: 1.6rem;
    margin-top: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.btn_inner{
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.btn_inner a{
    display: block;
    margin: 0 auto;
    max-width: 500px;
    background-color: #00f0d1;
    border-radius: 20px;
    margin-top: 50px;
    padding: 20px 0;
    font-size: 3rem;
}

.accessRanking {
    background-color: #292929;
    color: #fff;
	margin-top: 30px;
    padding: 15px;
	max-width: 1200px;
	margin: 100px auto 50px;
}
.accessRanking h3 {
    line-height: 1;
    text-align: center;
    border-bottom: 1px solid #FFF;
	padding: 10px 0 25px;
    font-size: 2.4rem;
}
.accessRanking ol {
    display: flex;
    flex-wrap: wrap;
}
.accessRanking ol li:nth-child(-n + 2) {
    width: 50%;
    padding-bottom: 10px;
    border-bottom: 1px solid #FFF;
}
.accessRanking ol li .contentArea {
    display: flex;
	padding: 10px 0 0;
}
.accessRanking ol li .contentArea .number {
    width: 20%;
    font-size: 4.2rem;
	text-align: center;
}
.accessRanking .rankingCard {
    width: 80%;
    margin-right: 10px;
}
.thisCategory {
    display: flex;
    width: 100%;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 500;
}
.accessRanking ol li:nth-child(1) {
	border-right: 1px solid #fff;
}
.accessRanking ol li:nth-child(n + 3) {
    width: 33.3%;
	border-right: 1px solid #fff;
	margin-top: 20px;
}

.bana03{
	position: relative;
	margin: 0px auto 0;
	/* background-image: url(bana03bk.jpg); */
	background-size: cover;
	position: relative;
	margin: 15vw 0;
	
}
.bana03 video{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100vw;
    min-height: 70vw;
	z-index: -1;
}
.bana03_inner{
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	background-color: rgba(255,255,255,0.8);
	padding: 50px 0;
	flex-wrap: wrap;
}
.bana03_inner .watxt{
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}
.bana03_inner .watxt img{
	width: 50%;
}
.hito01{
	width: 22%;
	text-align: center;
}
.hito02{
	width: 22%;
	margin: 0 1%;
	text-align: center;
}
.hito04{
	width: 22%;
	margin: 0 1% 0 0;
	text-align: center;
}
.hito03{
	width: 22%;
	text-align: center;
}
.hito_txt{
	text-align: center;
	background-color: #fff;
	padding: 5px;
	font-size: 1.4rem;
	line-height: 1.5;
}
.hito_txt span{
	display: block;
	background-color: #616365;
	color: #fff;
	max-width: 80%;
	margin: 10px auto;
	font-size: 1.6rem;
	padding: 5px 0;
	border-radius: 20px;
}


.company_top_box{
    /* background-image: url(bk.jpg); */
    padding: 20px 0;
}
.company_top_box_inner{
    max-width: 1200px;
    margin: 0 auto;
}
.company_top_box_inner{
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
}
.company_top_box_left{
    width: 60%;
    background-color: #fff;
    padding-bottom: 20px;
}
.company_top_box_right{
    width: 40%;
}
.company_top_box_right img{
    width: 100%;
}
.company_top_box_list_ttl{
    padding: 20px;
    font-size: 2rem;
    font-weight: bold;
}
.company_top_box_list{
    display: flex;
    padding: 10px;
    font-size: 1.6rem;
}
.company_top_box_list li:first-child{
    margin-right: 20px;
    width: 20%;
}
.company_top_box_list li:nth-child(2){
    width: 80%;
}
.company_top_tizy{
    display: flex;
    align-items: flex-end;
    font-size: 1.4rem;
}
.company_top_btn a{
    background-color: #616365;
    color: #fff;
    display: block;
    max-width: 80%;
    margin: 30px auto 0;
    padding: 10px 0;
    border-radius: 20px;
    font-size: 1.6rem;
    text-align: center;
}
.company_new_ttl{
    max-width: 1000px;
    margin: 0 auto 30px;
    text-align: left;
    font-size: 5rem;
}
.company_new_ttl span{
    font-size: 2.4rem;
    display: block;
}

.header02 {
    overflow: hidden;
    width: 100%;
    height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
    z-index: 5;
}
.header02 .mv_txt_top_po {
    position: absolute;
    top: 46%;
    left: 2%;
}
.header02 .mv_txt {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, 35%);
}
		#movetop {
    position: absolute;
    top: 80px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: calc(100% - 80px);
    object-fit: cover;
}


.txt_boxwapper{
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 60px auto 0;
    border-top: 1px solid #000;
    padding-top:30px;
}
.txt_box{
    width: 52%;
}
.txt_box h2{
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: bold;
    
}
.txt_box h2 span{
    font-size: 1.4rem;
    display: block;
    margin-bottom: 10px;
    background-color: #00f0d1;
    padding: 5px 10px;
    color: #fff;
    max-width: 100px;
    text-align: center;
    border-radius: 10px;
}
.txt_box p{
    font-size: 1.6rem;
    line-height: 1.4;
    display: block;
    margin-top: 20px;
}
.txt_box ol{
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 10px;
    list-style-type: auto;
    padding-left: 30px;
}
.txt_box ol li{
    margin-top: 20px;

}
.img_box{
    width: 44%;
}
.img_box img{
    width: 100%;
}
.contact_box{
    max-width: 1000px;
    margin: 50px auto 0;
    background-image: linear-gradient(90deg, rgba(233, 233, 233, 1), rgba(172, 172, 172, 1));
    padding: 30px 0;
}
.contact_box h2{
    text-align: center;
    font-size: 2rem;
    color: #fff;
}
.contact_box ul{
    display: flex;
    justify-content: center;
    max-width: 80%;
    margin: 20px auto 0;
}
.contact_box ul li a{
    background-color: #fff;
    color:#0068a6;
    display: block;
    padding: 10px 20px;
    font-size: 2.6rem;
    border-radius: 20px;
}
.contact_box ul li:nth-child(1){
    margin-right: 30px;
} 
.contact_box ul li a{
    color: #000;
}


.formTable_wapper {
    max-width: 1000px;
    margin: 0 auto;
  }
  .formTable_wapper .formTable {
    width: 100%;
  }
  .formTable_wapper .formTable th {
    background-color: #616365;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    color: #fff;
    font-size: 1.6rem;
    width: 20%;
  }
  .formTable_wapper .formTable th span {
    font-size: 1.2rem;
    color: #fff;
    margin-left: 5px;
  }
  .formTable_wapper .formTable td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
  }
  .formTable_wapper .formTable td input {
    background-color: #fff;
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1.6rem;
  }
  .formTable_wapper .formTable td textarea {
    background-color: #fff;
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1.6rem;
  }
  .formTable_wapper input[type=submit] {
    background-color: #616365;
    color: #fff;
    padding: 10px 60px;
    border-radius: 10px;
    margin-top: 30px;
    font-size: 1.6rem;
  }
  .formTable_wapper input[type=reset] {
    background-color: #ddd;
    padding: 10px 60px;
    border-radius: 10px;
    margin-top: 30px;
    font-size: 1.6rem;
  }
  .new_ttl{
      text-align: center;
      font-size: 2rem;
      font-weight: bold;
      padding: 50px 0;
  }
  .formTable_wapper .formTable td.radio {
      font-size: 1.4rem;
      display: flex;
      flex-wrap: wrap;
  }
  .formTable_wapper .formTable td.radio span{
      display: flex;
      align-items: center;
      width: 33%;
      margin-bottom: 10px;
  }
  
  .formTable_wapper .formTable td.radio input{
      width: auto;
      margin-right: 10px;
  }


  .download{
    margin-top: 100px;
}
.download_list{
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    
}
.download_list li{
    width: 30%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    flex-direction: column;
}
.download_list li{
    
}
.download_list li a{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #616365;
    padding: 10px 20px;
    text-align: center;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.5;
    width: 100%;
    border-radius: 20px;
    margin-top: 20px;
    min-height: 70px;
}


.box03 .ttlbox{
    background-image: url(bkimg01.jpg);
    background-size: cover;
    padding: 50px 0;
    text-align: center;
    margin-top: 100px;
}
.box03 .ttlbox h2{
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 3rem;
    padding: 10px 20px;
}
.box03 .list_box{
    display: flex;
    max-width: 1200px;
    justify-content: space-between;
    margin: 50px auto 0;
}
.box03 .list_box li{
    width: 32%;
    text-align: center;
    font-size: 2rem;
}
.box03 .list_box li p{
    margin-top: 10px;
}


.p-company__fifth{
    margin-top: 100px;
}
.p-company__fifth__list, .p-company__third__inline__list, .p-contact__third__list, .p-index__fifth__list, .p-index__forth__list, .p-jobseeker__sixth__list, .p-news__first__list, .p-responsible__forth__list, .p-staff__sixth__list {
list-style: none
}
.p-company__fifth__list__item__link__item, .p-company__forth__list__item__link, .p-company__third__inline__list__item a {
color: #00316f;
font-style: normal;
line-height: 1.5;
letter-spacing: calc(15px * .001 * 0);
background-image: url(../img/common/next-blue.svg);
background-repeat: no-repeat;
background-size: 13px;
background-position: right 0 center;
font-size: 15px
}

.p-company__fifth {
width: 80%
}
.ttl{
font-size:2rem;
font-weight: bold;
}
@media (min-width:1025px) {
.p-company__fifth {
margin: 100px auto 120px;
font-size: 16px;
}
.p-company__fifth__list {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between
}
}

@media (max-width:1024px) {
.p-company__fifth {
margin: 30px auto 60px
}
.p-company__fifth__list__item {
width: 100%
}
}

.p-company__fifth .text-title {
text-align: center;
margin-bottom: 30px
}

.p-company__fifth__list__item {
margin-bottom: 50px;
background-color: #e9e9e9;
padding: 3%
}

.p-company__fifth__list__item__company {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
vertical-align: text-top;
-webkit-box-align: start;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start;
margin-bottom: 20px
}

@media (max-width:1024px) {
.p-company__fifth__list__item__company {
margin-top: 20px
}
}

.p-company__fifth__list__item__company__text {
margin-bottom: 0;
font-weight: 700
}

.p-company__fifth__list__item__text {
margin-bottom: 0;
line-height:1.5;
font-size: 14px;
}

.p-company__fifth__list__item__warp {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-bottom: 20px
}

.p-company__fifth__list__item__warp__inline {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center
}

.p-company__fifth__list__item__warp__inline img {
margin-right: 5px
}

.p-company__fifth__list__item__warp__inline__text {
font-weight: 700;
margin: 0 20px 0 0
}

.p-company__fifth__list__item__link {
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
border-top: solid 2px #00316f;
display: block;
text-align: right
}

.p-company__fifth__list__item__link__item {
margin: 10px 0 10px 20px;
font-weight: 500;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
vertical-align: middle;
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
padding-right: 20px
}

@media (min-width:1025px) {
.p-company__fifth__list__item {
width: 48%
}
.p-responsible__first {
margin-bottom: 120px;
padding: 0 20%
}
}
.p-company__forth__list__item__warp__inline{
display: flex;
}
.p-company__forth__list__item__warp__inline img{
margin-right: 10px;
}
@media (max-width:750px) {
.pc-only{
display: none !important;
}
.p-company__fifth{
width: 90%;
}
}
@media (min-width:751px) {
.sp-only {
display: none !important;
}
}

footer{
    background-image: linear-gradient(90deg, rgba(233, 233, 233, 1), rgba(172, 172, 172, 1));
}
.footer_nav{
    display: flex;
    justify-content: center;
    justify-content: space-between;
    max-width: 790px;
    padding: 60px 0 60px;
    margin: 0 auto;

}
    .footer_nav a{
        color: #000;
        font-size: 1.5rem;
    }

.copy{
    text-align: center;
    color: #fff;
    background-color: #000;
    padding: 10px 0;
}

.footer_new_img{
    width: 10%;
    margin: 0 auto 30px;
}


.autoplay img{
	margin:10px;/*画像の周りに余白*/
	width:95%;/*横幅に制限*/
	border:0.5px solid #eee;/*周囲に薄いボーダー*/}

	</style>


<style>
.slick-prev{
	left: -5%;
    top: 50%;
}
.slick-next{
	right: -5%;
	top: 50%;
}
.slick-prev:before, .slick-next:before{
	color: #616365;
}
h2{
	font-weight: 400;
}
@media(min-width:751px){
	.pc_hide{
		display: none !important;
	}
}

.center_txt{
    text-align: center;
}


header .inner {
    /* background-image: linear-gradient(90deg, rgba(233, 233, 233, 1), rgba(172, 172, 172, 1)); */
    padding: 18px 14% 16px 3%;
}
	.mv_txt{
		    top: 65% !important;
				width: 50% !important;
	}
	.rela_box{
		position: relative;
	}
	.slider_txtbox{
		position: absolute;
		left: 10px;
		bottom: 10px;
		background-color: rgba(255, 255, 255, 0.8);
		font-size: 1.8rem;
		line-height: 1.5;
		width: 95%;
		padding: 20px;
	}
	header{
		height: auto;
	}
	header .inner{
		/* background-image: linear-gradient(90deg, rgba(233, 233, 233, 1), rgba(172, 172, 172, 1)); */

		padding: 18px 14% 16px 3%;
	}
	header .inner .pc_list li a{
		font-size: 2rem;
		font-weight: 400;
		
	}
	header .contact{
		background-color: #616365;
		
		width: auto;
		height: 100px;
		font-size: 1.4rem;
		text-align: center;
		padding: 20px;	
		transition: 0.4s ;
	}

	header .contact a{
		color: #fff;
	}


	header .tel_box{
		color: #00f0d1;
	}
	header .tel_box::before {
    content: url(icon02.png);
}
header .tel_box::after{
	background-color: #00f0d1;
}
header .tel_box{
	color: #fff;
}
.mv_txt_top_po{
	position: absolute;
	top:52%;
	left: 2%;
}

header{
    height: auto;
}
.news_head{
    text-align: center;
    background-size: cover;
    padding: 200px 0;
    width: 100%;
}
.news_head h2{
    text-align: center;
    background-color: rgba(255, 255, 255, 0.7);
    color: #000;
    font-size: 3rem;
    padding: 30px 0;
}
.img_wapper02{
  max-width: 20%;
  margin: 0 auto;
  display: block;
  transform: translateX(-40px);
}

/*　ハンバーガーボタン　*/
.hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  
  .hamburger span:nth-child(3) {
    top: 30px;
  }
  
  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #000;
    background: #fff;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
  }
  
  nav.globalMenuSp ul {
    background: #ccc;
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  
  nav.globalMenuSp ul li:hover {
    background: #ddd;
  }
  
  nav.globalMenuSp ul li a {
    display: block;
    color: #000;
    padding: 1em 0;
    text-decoration: none;
  }
  
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    position: fixed;
    z-index: 2;
    top: 52px;
    left: 0;
    color: #000;
    background: #fff;
    text-align: center;
    transform: translateY(0%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
    z-index: 100;
    z-index: 9999999;
  }

.manufacture_area {
  line-height: 3rem;
  margin: 150px auto;
  width: 80%;
}
  
.manufacture_area section {
    margin: 0 auto;
    text-align: center;
    font-size: 1.6rem;
}
  
.manufacture_area section.manufacture_title_Area {
    padding: 0 0 100px;
}
  
p.sub_title {
  line-height: 50px;
  font-size: 1.4rem;
}
  
h2.manufacture_title {
  font-size: 3rem;
   font-weight: 600;
    line-height: 1.2;
    margin-left: -0.1rem;
    margin-bottom: 100px;
    position: relative;
}

h2.manufacture_title::after {
    content: "";
    position: absolute;
    width: 6%;
    height: 4px;
    bottom: -3rem;
    left: 47%;
    right: 47%;
    background: linear-gradient(90deg, #009eb0 0, #43a742 100%);
    background: -webkit-linear-gradient(0deg, #009eb0 0, #43a742 100%);
}

.manufacture_area section ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
    width: 70%;
    margin: 0 auto;
}

.manufacture_area section ul li {
    counter-increment: flownum;
    border-radius: 10px;
    display: flex;
    align-items: center;
    background: #FFF;
    overflow: hidden;
    -moz-box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 10%);
    -o-box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 10%);
    -ms-box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 10%);
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 10%);
    gap: 2rem;
}

.manufacture_area section ul li::before {
    content: counter(flownum);
    background: linear-gradient(90deg, #009eb0 0, #43a742 100%);
    background: -webkit-linear-gradient(0deg, #009eb0 0, #43a742 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 1.5rem;
    width: 120px;
    height: 8rem;
    margin: 0 0 0 2%;
}

.manufacture_area section ul li div {
  width: 50%;
}

.manufacture_area section ul li div h3 {
    display: block;
    font-size: 1em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

.manufacture_area section ul li div.manufacture_img {
  text-align: right;
  margin: 10px 5% 0 0;
}

  .service {
    background-image: url(../img/bk.jpg);
    background-repeat: repeat;
    padding: 150px 0 50px;
}


.service_ttl{
    font-size: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.service_ttl span{
  font-size: 2.1rem;
  margin-left: 20px;
}

.single_txtbox{
    max-width: 1200px;
    margin: 0px auto;
    padding: 0 20px;
}
.single_txtbox h4{
  font-size: 3rem;
  margin-bottom: 30px;
  text-align: center;
}
.single_txtbox p{
    font-size: 1.6rem;
    line-height: 1.4;
    text-align: center;
    text-align: center;
}
.single_txtbox h3{
    font-size: 2.4rem;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.flex_box{
    display: flex;
    width: 90%;
    margin: 0 auto;
}
.flex_box figure{
    margin-right: 30px;
    width: 60%;
   

}
.flex_box .new_txt_box{
  background-color: #0E0E0E;
  padding: 100px 50px;
  position: relative;
  width: 60%;
}
.flex_box .new_txt_box::before{
  content: "";
  display: block;
  width: 92%;
  height: 92%;
  position: absolute;
  left: 4%;
  top: 4%;
  border: 1px solid #fff;

}
.service_box{
    background-color: #e5e5e5;
    max-width: 1000px;
    margin: 0 auto;
    color: #fff;
    padding: 30px 0;
}
.service_box h3{
  font-size: 3rem;
  color: #000;
}
.service_box h3 span{
  font-size: 2rem;
  display: block;
}
.table01{
    width: 90%;
    margin: 50px auto 0;
    background-color: #fff;
    color: #000;
    font-size: 1.6rem;
}
.table01 th{
    padding: 10px;
    border: 1px solid #ccc;
}
.table01 td{
    border: 1px solid #ccc;
    padding: 10px;
}


  @media(max-width:750px){
	.new_btn a{
    font-size: 1.4rem;
	max-width: 300px
}
.new_box02 h2{
	font-size: 3rem;
}

.new_box02 ul.top_list li {
    min-height: 600px;
    position: relative;
}
.new_box h2{
	font-size: 5rem;
	text-align: right;
}
.new_box h2 span{
	display: block;
    font-size: 2.4rem;
}
.new_box ul li{
	width: 100%;
}
.bikou {
	padding: 0 15px;
}
.bikou li{
	font-size: 1.6rem;
	list-style-position: inside;
}
.bikou_noto {
    text-align: center;
    font-size: 2rem;
    margin-top: 3px;
}
.bana03{
	background-image: url(bk.jpg);
}
.bana03_inner{
	background-color: rgba(255,255,255,0.2);
}

.bana03 video{
	display: none;
}
.company_top_box_inner{
	flex-direction: column;
}

.company_top_box_left{
	width: 100%;
	padding-bottom: 30px;
}
.company_top_box_right{
	width: 100%;
}
.new_ttl{
	font-size: 2rem;
}
.formTable_wapper .formTable th{
	float: left;
	width: 100%;
}
.formTable_wapper .formTable td{
	float: left;
	width: 100%;
}
.download_list{
	flex-direction: column;
	padding: 0 20px;
}
.download_list li{
	width: 100%;
}
.download_list li figure{
	width: 100%;
	display: block;
	background-color: #fff;
}
.download_list li:nth-child(2) {
    margin: 30px 0px;
}
.company_top_box_list li:first-child {
    width: 23%;
}

.company_top_box_list{
	font-size: 1.6rem;
}
nav.globalMenuSp.active{
          background-image: linear-gradient(90deg, rgba(233, 233, 233, 1), rgba(172, 172, 172, 1));
        }
		.bana03_inner .watxt{
			width: 80%;
			margin: 0 auto 30px;
		}
		.sp_hide{
			display: none !important;
		}
		.new_box02 ul.top_list li p{
			width: 90%;
		}

		.hito01{
			width: 100%;
		}
		.hito02{
			width: 100%;
		}
		.hito03{
			width: 100%;
		}
		.hito04{
			width: 100%;
		}

        .footer_nav {
            display: flex;
            justify-content: center;
            justify-content: space-between;
            max-width: 790px;
            padding: 60px 0 0;
        }
}

.thanks_box{
    text-align: center;
    margin: 150px 0;
  }
  .thanks_box h2{
    font-size: 2rem;
    margin-bottom: 20px;
  }
  @media (max-width: 750px) {
    .thanks_box h2{
      font-size: 1.6rem;
      padding: 0 20px;
    }
  }

