﻿ @charset "utf-8";

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 18px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;		/*リンクテキストの色*/
	transition: 0.2s;	/*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
}
a:hover {
	color: #b01212;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（ホームページを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1500px;	/*slide.cssの「#mainimg, #subimg」と設定と合わせる*/
	margin: 0 auto;
	border-top: 4px solid #b01212;	/*一番上に入っているアクセントライン。幅、線種、色。*/
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: relative;z-index: 1;
	height: 140px;	/*ヘッダーの高さ*/
	background: #fff;	/*背景色*/
}
/*ロゴ画像*/
header #logo img {
	width: 300px;	/*画像幅*/
	position: absolute;
	left: 3%;		/*ヘッダーに対して左から3%の場所に配置*/
	top: 38px;	/*ヘッダーに対して上から38pxの場所に配置*/
}

/*コンテンツ。メニューの下にある白い背景色のブロック。
---------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;position: relative;
	padding: 0% 3% 2% 3%;		/*上下、左右へのボックス内の余白*/
	margin: 0 3% 50px;	/*上、左右、下へのボックスの外側への余白*/
}
/*h2タグ*/
#contents h2 {
	clear: both;
	margin-bottom: 40px;	/*下に空けるボックスの外側への余白*/
	font-size: 250%;		/*文字サイズ*/
	text-align: left;
	line-height: 1.5;		/*行間を基準より少し狭くする*/
}
h2:first-letter {
  font-size: 250%;
  color: #b01212;
	letter-spacing: -0.2em;	/*文字間隔を少し広くとる設定*/
}
/*h2タグ内のspanタグ（英語の飾り文字）*/
#contents h2 span {
	font-size: 50%;	/*文字サイズ*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
	margin-left: 1em;
}
/*h4タグ*/
#contents h4 {
	clear: both;
	margin-bottom: 15px;	/*下に空けるボックスの外側への余白*/
	margin-top: 30px;	/*下に空けるボックスの外側への余白*/
	font-size: 150%;		/*文字サイズ*/
	text-align: left;		/*文字を中央に*/
	line-height: 1.5;		/*行間を基準より少し狭くする*/
}

/*段落タグ*/
#contents p {
	padding: 0 20px 40px;
}
#contents p + p {
	margin-top: -10px;
}
/*section同士の余白*/
#contents section + section {
	margin-top: 40px;
}
/*サイン画像*/
section #name img {
	width: 60%; 
	max-width: 300px; /* 最大幅 */
}
/*メインコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツ*/
#contents .main {
	float: left;	/*左に回り込み*/
	width: 70%;		/*コンテンツ幅*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;		/*文字を中央に*/
	font-size: 70%;			/*文字サイズ*/
	background: #b01212;	/*背景色*/
}
/*リンクテキスト*/
footer a {color: #fff;}
footer a:hover {color: #fff;}
/*著作部分*/
footer .pr {display: block;}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px 3%;	/*上下、左右へのボックス内の余白*/
	background: url(../images/icon_logo.png) no-repeat right center / auto 80%;	/*フッター右側のロゴマークの設定。*/
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅*/
	padding-right: 1%;	/*左に空ける余白*/
	padding-left: 1%;	/*右に空ける余白*/
	text-align: left;
	line-height: 1.7;	/*行間を狭くする*/
}
/*class="title"とつけた場合の設定*/
#footermenu ul li.title a {
	font-weight: bold;	/*太字にする*/
	opacity: 1;	/*色が100%出た状態にする。この指定がないと、下の0.7が適用される。*/
}
/*リンクテキストの設定*/
#footermenu a {
	text-decoration: none;
	opacity: 0.7;	/*透明度。70%の色がついた状態。*/
}
/*リンクのマウスオン時*/
#footermenu a:hover {
	opacity: 1;		/*透明度。100%の色がついた状態。*/
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
	color: #fff;		/*文字色*/
}
#copyright a {text-decoration: none;}

/*ページの上部へボタン「↑」設定
---------------------------------------------------------------------------*/
@keyframes scroll {0% {opacity: 0;}100% {opacity: 1;}}
body .nav-fix-pos-pagetop a {display: none;}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	z-index: 3;
	position: fixed;
	bottom: 20px;	/*下から20pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #666;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事。0.6は60%色がついた状態。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*追加用CSS
---------------------------------------------------------------------------*/

/*指定フォント
--------------------------*/
h2{
	font-family: "Noto Sans JP", sans-serif;/*指定フォント*/
	font-optical-sizing: auto;/*指定フォント*/
}
h3{
	font-family: "Noto Sans JP", sans-serif;/*指定フォント*/
	font-optical-sizing: auto;/*指定フォント*/
	margin-bottom: 1em;
	margin-top: 1em;
	font-size:25px;
}
h4{
	font-family: "Noto Sans JP", sans-serif;/*指定フォント*/
	font-optical-sizing: auto;/*指定フォント*/
}

/*=============
base
==============*/

html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: .025em;
  line-height: 1.8;
}

/* セクション共通スタイル
--------------------------*/
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.container {
    max-width: 800px;
    text-align: center;
    color: white;
}
.container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.container p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 働く環境を知る（カードカウントアップ表示）
--------------------------*/
.info-card{
	background: #f5f5f5;
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	width: 280px;
	height: 300px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	position: relative;
}
.card-wrapper{
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	background-color: #b01212;
	padding:30px;
	margin:20px;
	margin-bottom:100px;
	border-radius: 30px;
}
/* 上の英語 */
.card-label{
	position: absolute;
	top: 15px;
	left: 20px;
	font-size: 12px;
	color: #e26f7d;
	font-weight: 500;
}
/* アイコン */
.card-icon{
	margin: 30px 0px 20px ;
	display: flex;
	justify-content: center;
}
.card-icon img{
	width: auto;
	height: 60px;
}
/* タイトル */
.card-title{
	font-size: 18px;
	margin-bottom: 10px;
	color: #333;
	position: relative;
}
/* 下線 */
.card-title::after{
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	background: #b01212;
	margin: 8px auto 0;
}
/* 数字 */
.card-value .num{
	font-family: "Murecho", sans-serif;
	font-optical-sizing: auto;
	font-weight:600;
	font-style: normal;
	font-size: 72px;
	font-weight: bold;
	color: #b01212;
}
.card-value .num2{
	font-family: "Murecho", sans-serif;
	font-optical-sizing: auto;
	font-weight:600;
	font-style: normal;
	font-size: 40px;
	font-weight: bold;
	color: #b01212;
}
.card-value .unit{
	font-size: 24px;
	margin-left: 5px;
	font-weight: bold;
	color: #e26f7d;
}
.card-value p{
	font-size:1em;
	color: #333;
	margin-top:-1.5em;
}

/*タイトルアニメーション
--------------------------*/
.section-title{
	text-align: center;
	margin-bottom: 60px;
	opacity: 1; /* ← 初期状態を隠す（重要） */
}
.section-title h3{
	font-size: 40px;
	margin-bottom: 10px;
	color: #333;
}
.section-title p{
	font-size: 16px;
	opacity: 0.7;
	color: #666;
}
.title-line{
	width: 80%;              /* 最終サイズ */
	height: 2px;
	background: #b01212;
	margin: 10px auto 20px;
	transform: scaleX(0);   /* ← ここ重要 */
	transform-origin: center;
}

/*表彰用
--------------------------*/
.award{
	margin-bottom:50px;
}
.award-card-list{
	display: flex;
	justify-content: center; /* 中央揃え */
	flex-wrap: wrap;         /* 折り返し */
	gap: 20px;               /* カード間の余白 */
}
.award h3{
	text-align: center;
	font-weight: 400;
	font-size: 30px;
	position: relative;
    color: #333333;
    -webkit-box-reflect: below -15px -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, .5));
	margin-bottom:50px;
}
.award p{
	font-size:1em;
	text-align:center;
	margin-bottom:70px;
}
.award-card{
	background: #f1f0ee;
	border-radius: 20px;
	padding: 40px 30px 30px;
	text-align: center;
	width: 280px;
	height: 250px;
	position: relative;
}
.award-card::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 200px;
	height: 70px;
	background: #fff; /* ← ページ背景色 */
	border-bottom-right-radius: 80px;
}
.award-card h4{	
	position: relative;
	top:-30px;
	z-index: 100;
	font-size: 24px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight:500;
}
.award-text{
	margin:15px 10px;
	font-size: 15px;
}

/*福利厚生リスト
--------------------------*/
.benefits{
	background: #f1f0ee;
	padding: 80px 20px;
	margin-bottom:100px;
}
.benefits-inner{
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	gap: 60px;
}
.benefits-col{
	flex: 1;
}
.benefits-block{
	margin-bottom: 40px;
	opacity: 0;
}
.benefits-block h3{
	display: inline-block;
	background: #b01212;
	padding: 8px 16px;
	font-size: 18px;
	color:#fff;
	margin-bottom: 15px;
}
.benefits-block ul{
	list-style: none;
	padding-left: 0;
}
.benefits-block li{
	position: relative;
	padding-left: 16px;
}
.benefits-block li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	background: #e26f7d;
}

/*フッターメニュー
--------------------------*/
.footer-001 {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 25px 10px 10px;
    background-color: #b01212;
}
.footer-001__logo {
    width: 200px;
    height: auto;
	margin-bottom:10px;
}
.footer-001__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1.5em;
    list-style-type: none;
    margin: 0 0 .5em;
    padding: .5em;
}
.footer-001__link {
    color: #fff;
    font-weight: 200;
    text-decoration: none;
}
.footer-001__copyright {
    margin: 0;
    color: #ffffffb3;
    font-weight: 200;
    font-size: .8em;
}

/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ヘッダー
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	top: 20px;	/*上から20pxの場所に配置*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	margin-top: 8%;	/*上に空けるスペース。この部分にイメージ画像が表示されます。*/
}
body.home #contents {
	margin-top: 40%;	/*上に空けるスペース。この部分にスライドショーが表示されます。*/
}
/*働く環境を知る（カード表示）
---------------------------------------------------------------------------*/
.info-card {
	min-width: 75vw;  /* ←画面幅いっぱい */
	max-width: 75vw;
	margin:0.5em 2em;
}
/*福利厚生リスト
---------------------------------------------------------------------------*/
.benefits-inner{
		flex-direction: column;
		gap: 30px;
}
	
}


/*画面幅700px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:700px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 15px;	/*文字サイズ*/
}
	
/*コンテンツ
---------------------------------------------------------------------------*/
#contents h2{
	text-align: center
}
/*spanタグ*/	
#contents span{
	display: block; /*改行*/
}
	
}

/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 15px;	/*文字サイズ*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
/*h2タグ*/
#contents h2 {
	font-size: 30px;	/*文字サイズ*/
	margin-bottom: 20px;	/*下に空けるボックスの外側への余白*/
	text-align: center; /*真ん中寄せ*/
}
/*段落タグ*/
#contents p {
	padding: 0px 0px 20px;	/*上、左右、下への段落タグ内の余白*/
	line-height: 1.5;		/*行間を少し狭くする*/
}
/*spanタグ*/	
#contents span{
		display: block; /*改行*/
	}
/*section同士の余白*/
#contents section + section {
	margin-top: 20px;
}

.section-title h3{
	font-size:30px;
	}
	
/*働く環境を知る（カード）
---------------------------------------------------------------------------*/
.info-card{
	height: auto;
	padding: 15px;
	margin: 2px;
	display: flex;
	flex-direction: column;
}
.card-wrapper{
	margin:10px;
}
/* 英語ラベル */
.card-label{
	top: 10px;
	left: 15px;
	font-size: 10px;
}
/* アイコン */
.card-icon{
	margin: 20px 0 5px;
}
.card-icon img{
	height: 30px;
}
/* タイトル */
.card-title{
	font-size: 15px;
	margin-bottom: 3px;
}
/* 下線 */
.card-title::after{
	margin: 5px auto 0;
	height: 2px;
}
/* 数字 */
.card-value{
	margin-top: 0;
	line-height: 1;
}
.card-value p{
	margin-top: auto;   /* ← 下に押し込む */
	text-align: right;  /* ← 右寄せ */
}
.card-value .num{
	font-size: 42px;
}
.card-value .unit{
	font-size: 18px;
}
.card-value .num2{
	font-size: 25px;
}
/*表彰
---------------------------------------------------------------------------*/
.award p{
	margin:0px 30px 50px;
}

	
}

