@charset "utf-8";
/* CSS Document */


/* ==========================
========== スライダー =========
============================= */



/* ==========================
==========　メイン　===========
============================= */

/* 動画
--------------------*/

.movie_box {
	position: relative;
	width: 100%;
    max-height: 625px;
    overflow: hidden;
}
.movie_box p.movie_wallpaper {
	position: absolute;
	bottom: 0;
	width: 100%;
	background: url(../img/movie_bg.png);
	text-align: center;
}

video {
	width: 100%;
	background:url(../img/movie_preview.png)no-repeat center center;
	background-size: cover;
}

/* 日本語英語リンクボタン 
--------------------*/

.content_box.language .content_inner {
	display: flex;
    justify-content: flex-start;
    flex-direction: row-reverse;
	margin: 20px auto;
}

.content_box.language .content_inner p {
	position: relative;
	padding: 6px 0px;
	width: 100px;
    text-align: center;
	font-size: 12px;
}
.content_box.language .content_inner p.en {
	background: #00469b;
    color: #fff;
}
.content_box.language .content_inner p.jp {
	background: #dadada;
    color: #00469b;
}

.content_box.language .content_inner p a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}



/*--動き--
.content_box.language .content_inner p {
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.content_box.language .content_inner p::before,
.content_box.language .content_inner p::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.content_box.language .content_inner p,
.content_box.language .content_inner p::before,
.content_box.language .content_inner p::after {
  -webkit-transition: all .3s;
  transition: all .3s;
}


.content_box.language .content_inner p.jp::after,
.content_box.language .content_inner p.en::after {
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
}

.content_box.language .content_inner p.en:hover {
  color: #fff;
}

.content_box.language .content_inner p.en:hover::after {
  left: 0%;
  background:#00469b;
}

.content_box.language .content_inner p.en:hover + p.jp {
  color: #00469b;
}

.content_box.language .content_inner p.en:hover + p.jp::after {
  left: 0%;
  background:#dadada;
}
*/


/* 事業内容 
--------------------*/

.content_inner {
    width: 1160px;
    margin: 0 auto;
	overflow: hidden;
}

.content_box.business .content_inner {
    border-top: 1px solid #00469b;
    border-bottom: 1px solid #00469b;
    padding-bottom: 60px;
}

.content_title {
	text-align: center;
	margin: 50px 0 55px;
}

.content_title .big_title {
    font-size: 24px;
    color: #00469b;
    font-weight: bold;
}
.content_title .small_title {
	font-size: 10px;
	color: #666666;
}


ul.business_list {
	width: 1160px;
    margin: 0 auto;
	overflow: hidden;
	display: flex;
    justify-content: center;
}

ul.business_list li {
    width: 253px;
    margin: 0 30px;
}

/*
ul.business_list li .imgWrap {
	overflow: hidden;	
	position: relative;
}

ul.business_list li .imgWrap p {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
    color: #FFF;
	font-size: 16px;
}

ul.business_list li .imgWrap img {
	width: 100%;
	display: block;
	transition-duration: 0.3s;	
}
ul.business_list li .imgWrap img:hover {
	transform: scale(1.2);	
	transition-duration: 0.3s;	
	opacity: 0.7;
}

*/

/* 新着情報 
--------------------*/

.news_box {
	border-top: 1px solid #ccc;
	width: 95%;
	max-width: 1080px;
	margin: auto;/*
	overflow-y: scroll;
    max-height: 260px;*/
}

.news_box dl {
	overflow: hidden;
	border-bottom: 1px solid #ccc;
	padding: 15px 30px;
}
.news_box dl dt,
.news_box dl dd {
	float: left;
}

.news_box dl dt {
	width: 95px;
	padding-right: 70px;
}
.news_box dl dt.new_icon {
	background: url(../img/news_icon.png)no-repeat center  right 20px;
}

.news_box dl dd {
	max-width: 750px;
}

.news_detail {
	text-align: center;
}

.news_detail p {
	color: #00479d;
    padding: 10px 40px;
    background: url(../img/news_bg.png)no-repeat center;
    font-size: 115%;
    display: inline-block;
    margin: 30px 0 50px;
}

.indent_box {
    border: 1px solid #ccc;
    padding: 10px 15px;
    margin-top: 10px;
}

.indent_box .sign {
	text-align: right;
	padding-top: 15px;
}





/*  採用情報、歴史
--------------------*/
.content_box.more_bnr .content_inner {
	display: flex;
    justify-content: center;
    margin: auto;
	background: url(../img/recruit_bg03.png)no-repeat center;
}

.content_title.recruit .big_title,
.content_title.history .big_title,
.content_title.recruit .small_title,
.content_title.history .small_title {
	color: #FFF;
}

.content_title.recruit,
.content_title.history {
	height: 140px;
    width: 410px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 40px 20px;
}



/* 　その他
--------------------*/

.content_box.other_info .content_inner {
	
} 

.info_box {
	overflow: hidden;
	margin: 50px 0;
	display: flex;
    justify-content: center;
    gap: 20px;
}

.info_box .info_box_L,
.info_box .info_box_L.sns{
	text-align: center;
	background: #e0e0e0;
	color: #004398;
	padding: 19px 25px;
}
.info_box .info_box_L.sns {
	display: flex;
    justify-content: space-between;
    align-items: center;
    width: 170px;
    padding: 19px 50px;
}
.info_box .info_box_L.sns p {
	font-weight: normal;
}

.info_box .info_box_L p {
    line-height: 2;
	font-weight: bold;
}

.info_box .info_box_R ul {
	overflow:hidden;
	background: url(../img/other_bg.png)no-repeat -7px center;
}
.info_box .info_box_R ul li {
	float: left;
    width: 310px;
    height: 123px;
	display: flex;
    align-items: center;
}

.info_box .info_box_R ul li.midashi {
    font-size: 125%;
    color: #666666;
    padding-left: 20px;
    width: 180px;
}






.news_detail p:hover {
    background: #049;
    color: #fff;
    transition-duration: 0.3s;
    opacity: 0.84;
}





body{
    word-break:break-word ;
}


/* 固有のスマホ対応記述
========================== */
@media screen and ( max-width: 767px ){
	
.ft_box .ft_R ul {
    float: left;
    /* margin-left: 40px; */
    color: #FFF;
    width: 90%;
}
.ft_box {
    overflow: hidden;
    padding: 30px 0;
    width: 90%;
}
.page_visual {
    background: url(../img/page_visual.png)no-repeat center center;
    padding: 63px 0;
    background-size: cover;
    margin: 45px auto 0;
	}body, header nav {
                width: 100%;
        }
        .movie_box {
    position: relative;
    width: 100%;
    max-height: 45vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}
.movie_box p.movie_wallpaper {
    position: absolute;
    bottom: none;
    width: 100%;
    background: url(../img/movie_bg.png);
    text-align: center;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}
video {
    width: 139%;
    display: flex;
    background: none;
    background-size: cover;
    min-height: 35vh;
    justify-content: center;
}
        ul.business_list {
                width: 90%;
                margin: 0 auto;
                overflow: hidden;
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
        }
        ul.business_list li {
                width: 47%;
                margin: 2px;
        }
        .content_box.more_bnr .content_inner {
                flex-wrap: wrap;
        }
        .content_inner{
                width: 100%;;
        }

        .slick-next {
                right: -10px;
        }
       
        .slick-prev {
                left: -10px;
            z-index: 2;
        }
        .content_title.recruit, .content_title.history {
                height: auto;
                width: 90%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                margin: 10px auto;
        }
        .info_box {
                flex-direction: column;
        }
        .info_box .info_box_L, .info_box .info_box_L.sns {
                padding: 19px 15px;
        }
        .sns{
                margin: 20px auto;
        }



       
        .history .comment .comment_box {
                position: initial;
                padding: 35px 3%;
                font-size: 100%;
                width: 84%;
                margin: auto;
                background: url(../img/history_bg02.png)no-repeat center right;
                display: flex;
                justify-content: center;
        }
       
        .history .comment .history_detail {
                position: initial;
                width: 220px;
                margin: 30px auto 0;
        }

        .info_box .info_box_L,
        .info_box .info_box_R {
                float: none;
        }
       
       
        .info_box .info_box_R ul li {
                float: none;
                width: 100%;
                height: 90px;
                justify-content: center;
                background: #e0e0e0;
        }
       
        .info_box .info_box_R ul li.midashi {
                padding-left: 0px;
                width: 100%;
                background: #e9e9e9;
        }

        .fb_box p iframe {
                width: 90%;
                height: 50px;
                padding-left: 10px;
        }
       
.content_box.form .content_inner .form_box {
    width: 95%;
}
.content_box.form .content_inner .form_box .form_link .form_btn {
    width: 95%;
}
.content_box.form .content_inner .form_box .form_link .form_btn p {
    font-size: 18px;
}
.content_box.form .content_inner .form_box .form_txt {
    font-size: 15px;
}
        .news_box dl {
    display: flex;
    flex-direction: column;
}
        
}

@media screen and ( max-width: 400px ){

        .content_title .big_title {
                font-size: 160%;
        }
        .content_title {
                margin: 20px 0;
        }
        .br400 {
                display: none;
        }

        ul.business_list li .imgWrap p {
                bottom: 6px;
                font-size: 115%;
        }

        .slick-next {
                right: 0px;
        }
       
        .slick-prev {
                left: 0px;
        }
       
        .content_box.recruit {
                padding: 50px 0;
        }

}

@media screen and ( max-width: 360px ){
       
        ul.business_list li .imgWrap p {
                font-size: 100%;
        }
       
}



@media print {


}