@charset "utf-8";
@import url("../css/navi.css");

.clearfix:after {
	content				: "" ;
	display				: block ;
	clear				: both ;
}

.clearfix	{
	display				: block ;
}

/* Hides from IE-mac \*/
* html .clearfix { height : 1% ; }
/* End hide from IE-mac */

html	{
	background		: none ;
	position		: relative ;
	width			: 100% ;
	height			: 100% ;
	margin: 0;
	padding: 0;
}

body	{
	width	: 100% ;
	padding	: 0 ;
	margin	: 0 ;
	font-family: 'Noto Sans JP', sans-serif;
	font-size	: 16px ;
	font-weight	: 400 ;
	line-height	: 1.5;
	color	: #4b4b4b;
	-webkit-text-size-adjust: 100%;
	position: relative ;
	overflow-x: hidden;
	background-color: #fff;
}

a img	{
	border			: none ;
}

a:hover img{
}

a	{
	color: #000;
	text-decoration	: none ;
}

a:hover{
	color: #000;
	text-decoration	: none ;
}

form{
	margin			: 0 ;
	padding			: 0 ;
}



/*************************ヘッダー*************************/
.header{
    width: 100%;
    height: 80px;
    z-index: 100; /* より高い値に変更 */
    box-shadow: 0px 10px 10px -5px rgba(68,68,68,0.5);
    flex-shrink: 0;
    background-color: #fff;
    position: fixed; /* 追加 */
    top: 0; /* 追加 */
    left: 0; /* 追加 */
}

.head{
    width: 100%;
    height: 80px;
    display: inline-block;
    position: relative;
}

.logo{
	width: 164px;
	height: 58px;
	margin: 11px 0 0 10px;
	float: left;
}
.logo h1{
	margin: 0;
}
.logo h1 img{
	width: 100%;
	height: auto;
}


.head_r{
	display: inline-block;
	float: right;
}

.lang_area{
    width: calc(12vw);
    min-width: 120px;
    max-width: 160px;
    box-sizing: border-box;
    border-bottom: 80px solid #0e416b;
    border-left: 40px solid transparent; /* 元の固定値に戻す */
    float: right;
    position: relative;
    margin-left: -20px;
}

.lang_box{
    width: calc(6.6vw); /* lang_areaの55%程度 */
    min-width: 66px;
    max-width: 88px;
    height: 28px;
    padding: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 40px));
    display: inline-block;
}

.lang_ja{
    width: 50%; /* 親要素の50%ずつ */
    padding: .5px 0;
    text-align: center;
    font-size: clamp(12px, 1.8vw, 18px);
    font-weight: 500;
    float: left;
    color: #0e416b;
}

.lang_en{
    width: 50%; /* 親要素の50%ずつ */
    padding: .5px 0;
    text-align: center;
    font-size: clamp(12px, 1.8vw, 18px);
    font-weight: 500;
    float: left;
    background-color: #0e416b;
    color: #fff;
}

/*
.menu_box{
    width: calc(100vw - 660px);
    min-width: 250px;
    max-width: 700px;
    padding: 25px 0 0;
    height: 50px;
    float: left;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}
*/
.menu_box{
    width: calc(100vw - 660px);
    min-width: 250px;
    max-width: 500px;
    padding: 25px 0 0;
    height: 50px;
    float: left;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.menu{
    font-size: clamp(10px, 1.8vw, 18px); /* 最小12px、最大18px、中間は1.8vw */
    color: #d30037;
    white-space: nowrap; /* テキストの折り返しを防ぐ */
}

.menu a{
    color: #d30037;
    font-size: inherit; /* 親要素のフォントサイズを継承 */
    white-space: nowrap; /* aタグでも折り返しを防ぐ */
}

.head_recruit{
    width: calc(12vw); /* 可変幅 */
    min-width: 120px; /* 最小幅 */
    max-width: 160px; /* 最大幅 */
    height: 80px;
    background-color: #aaa9a7;
    transform: skewX(-26.57deg);
    float: left;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.head_recruit span {
    transform: skewX(26.57deg);
    font-size: clamp(12px, 1.5vw, 16px); /* フォントサイズも可変 */
    white-space: nowrap; /* テキストの折り返しを防ぐ */
}

.head_recruit:hover {
    background-color: rgba(170, 169, 167, 0.7); /* 透過度70% */
}

.head_contact{
    width: calc(12vw);
    min-width: 120px;
    max-width: 160px;
    height: 80px;
    background-color: #d30037;
    transform: skewX(-26.57deg);
    float: left;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.head_contact span {
    transform: skewX(26.57deg);
    font-size: clamp(12px, 1.5vw, 16px);
    white-space: nowrap;
}

.head_contact:hover {
    background-color: rgba(211, 0, 55, 0.7); /* 透過度70% */
}

.head_recruit,
.head_recruit:hover,
.head_recruit:visited,
.head_recruit:active {
    color: white !important;
}

.head_contact,
.head_contact:hover,
.head_contact:visited,
.head_contact:active {
    color: white !important;
}

/* 背景動画 */
.background-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

/* 背景動画のスタイル */
.bg-video {
    position: fixed;        /* 画面に固定 */
    top: 0;
    left: 0;
    width: 100vw;          /* ブラウザ幅100% */
    height: 100vh;         /* ブラウザ高さ100% */
    object-fit: cover;     /* 比率を保ったまま画面全体をカバー */
    z-index: -1;           /* 最背面に配置 */
}


/****メインコンテンツ****/
.maincontent{
	width: 100%;
	margin: 0 auto 100px;
	padding: 50px 0 0;
	position: relative;
	z-index: 1;
	background-color: rgba(255,255,255,0.7);
}
.maincontent02{
	width: 100%;
	padding: 100px 0 0;
	position: relative;
	z-index: 1;
}

/****共通****/
.content{
	width: 90%;
	margin: 0 auto;
}

.content02{
	width: 90%;
	margin: 0 auto 150px;
}

.obi{
	width: 100%;
	height: 570px;
	background-image: url(../img/obi.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

/* コンテンツタイトルル */
.content_tit{
	width: 100%;
	color: #d30037;
	font-size: 60px;
	font-weight: 700;
	margin: 0 auto 30px;
}

.content_subtit{
	width: 100%;
	color: #0e416b;
	font-size: 45px;
	font-weight: 500;
	margin: 0 auto 15px;
}
.content_subtit span{
	color: #0e416b;
	font-size: 20px;
	font-weight: 400;
	margin: 0 0 0 20px;
}

.content_subtit02{
	width: 100%;
	color: #d30037;
	font-size: 45px;
	font-weight: 500;
	margin: 0 auto 15px;
}
.content_subtit02 span{
	color: #0e416b;
	font-size: 20px;
	font-weight: 400;
	margin: 0 0 0 20px;
}

.content_txt h2{
	width: 100%;
	font-size: 30px;
	font-weight: 400;
	margin: 0 auto 30px;
}

.content_subtit_num01{
	width: calc( 100% - 45px );
	color: #0e416b;
	font-size: 45px;
	font-weight: 500;
	margin: 0 auto 15px;
	padding: 0 0 0 55px;
	background-image: url("../img/no01.png");
	background-position: left;
	background-repeat: no-repeat;
	background-size: 50px;
}
.content_subtit_num01 span{
	color: #0e416b;
	font-size: 20px;
	font-weight: 400;
	margin: 0 0 0 20px;
}

.content_subtit_num02{
	width: calc( 100% - 45px );
	color: #0e416b;
	font-size: 45px;
	font-weight: 500;
	margin: 0 auto 15px;
	padding: 0 0 0 55px;
	background-image: url("../img/no02.png");
	background-position: left;
	background-repeat: no-repeat;
	background-size: 50px;
}
.content_subtit_num02 span{
	color: #0e416b;
	font-size: 20px;
	font-weight: 400;
	margin: 0 0 0 20px;
}



.footer{
	width: 100%;
}

.foot{
	width: 100%;
	padding: 8px 0;
	background-color: #d30037;
	text-align: center;
}
.foot_txt{
	font-size: 21px;
	font-weight: 500;
	color: #fff;
	text-align: center;
}

.copy{
	width: 100%;
	padding: 5px 0;
	font-size: 12px;
	background-color: #0e416b;
	color: #fff;
	text-align: center;
}

.foot_logoarea{
	width: 400px;
	height: 50px;
	margin: 0 auto;
	padding: 25px 0 10px;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}
.foot_logo{
	width: 50px;
	height: 50px;
	margin: 0 auto;
}
.foot_logo img{
	width: 50px;
	height: 50px;
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
}
.foot_logo img:hover{
	opacity: 0.6;
}


/* 200250702資料請求ボタン追加 */
.request-button {
    position: fixed;
    right: -100px;
    top: 30%;
    background-color: #0e416b;
    color: #fff;
    padding: 20px;
    text-decoration: none;
    cursor: pointer;
    font-size: 21px;
    font-weight: bold;
    letter-spacing: 0.1em;
    border-radius: 8px 0 0 8px;
    box-shadow: -4px 0 15px rgba(14, 65, 107, 0.3);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    writing-mode: vertical-rl;
    text-orientation: upright;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.request-button.show {
    right: 0;
}
.request-button:hover {
    color: #fff !important;
}


@media screen and (max-width: 768px) {
/* 768pxまでの幅の場合に適応される */
/*************************ヘッダー*************************/
.sp_head{
	width: 100%;
	height: 75px;
	z-index: 10;
    box-shadow: 0px 10px 10px -5px rgba(68,68,68,0.5);
    background-color: #fff;
}
.sp_loge{
	width: 164px;
	height: 58px;
	padding: 8px 0 0 10px;
}
.sp_loge img{
	width: 164px;
	height: 58px;
}

.sp_loge02{
	width: 164px;
	height: 58px;
	padding: 8px 0 0 10px;
}
.sp_log02e img{
	width: 164px;
	height: 58px;
}


.header{
	display: none;
}

.head_box{
	display: none;
}

.head{
	display: none;
}

.pcbr{
	display: none;
}

/****メインコンテンツ****/
.maincontent{
	width: 100%;
	margin: 0 auto 80px;
	position: relative;
	z-index: 1;
}
.maincontent02{
	width: 100%;
	padding: 100px 0 0;
	position: relative;
	z-index: 1;
}

/****共通****/
.content{
	width: 90%;
	margin: 0 auto;
}

.content02{
	width: 90%;
	margin: 0 auto 80px;
}

.obi{
	width: 100%;
	height: 400px;
	background-image: url(../img/obi.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

/* コンテンツタイトルル */
.content_tit{
	width: 100%;
	color: #d30037;
	font-size: 28px;
	font-weight: 900;
	margin: 0 auto 30px;
}

.content_subtit{
	width: 100%;
	color: #0e416b;
	font-size: 24px;
	font-weight: 700;
	margin: 0 auto 15px;
}
.content_subtit span{
	color: #0e416b;
	font-size: 18px;
	font-weight: 500;
	margin: 0;
}

.content_subtit02{
	width: 100%;
	color: #d30037;
	font-size: 28px;
	font-weight: 900;
	margin: 0 auto 15px;
}
.content_subtit02 span{
	color: #0e416b;
	font-size: 20px;
	font-weight: 500;
	margin: 0;
}

.content_txt h2{
	width: 100%;
	font-size: 18px;
	font-weight: 500;
	margin: 0 auto 30px;
}

.content_subtit_num01{
	width: calc( 100% - 55px );
	color: #0e416b;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 auto 15px;
	padding: 0 0 0 55px;
	background-image: url("../img/no01.png");
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 50px;
}
.content_subtit_num01 span{
	color: #0e416b;
	font-size: 16px;
	font-weight: 500;
	margin: 0;
}

.content_subtit_num02{
	width: calc( 100% - 55px );
	color: #0e416b;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 auto 15px;
	padding: 0 0 0 55px;
	background-image: url("../img/no02.png");
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 50px;
}
.content_subtit_num02 span{
	color: #0e416b;
	font-size: 16px;
	font-weight: 500;
	margin: 0;
}


.footer{
	width: 100%;
}

.foot{
	width: 100%;
	padding: 8px 0;
	background-color: #d30037;
	text-align: center;
}
.foot_txt{
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	text-align: center;
}
.copy{
	width: 100%;
	padding: 5px 0;
	font-size: 12px;
	background-color: #0e416b;
	color: #fff;
	text-align: center;
}

.foot_logoarea{
	width: 300px;
	height: 40px;
	margin: 0 auto;
	padding: 25px 0 10px;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}
.foot_logo{
	width: 40px;
	height: 40px;
	margin: 0 auto;
}
.foot_logo img{
	width: 40px;
	height: 40px;
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
}
.foot_logo img:hover{
	opacity: 0.6;
}

.request-button{
	display: none;
}
}


@media screen and (min-width: 769px) {
/*　画面サイズが769pxからはここを読み込む　*/

.sp_head{
	display: none !important;
}
.sp_loge{
	display: none;
}
.sp_loge02{
	display: none;
}

.spbr{
	display: none;
}


}

