﻿ @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;
}
/*スライドショー
--------------------------*/
.fv{
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #000;
	margin-bottom:5em;
}
/* スライド */
.fv-slide{
	position: absolute;
	inset: 0;
	opacity: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
}
.fv-slide.active{
	opacity: 1;
	z-index: 2;
}
/* 画像 */
.fv-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	display: block; 
}
/* テキスト */
.fv-text{
	position: absolute;
	left: 8%;
	bottom: 14%;
	z-index: 5;
	color: #fff;
	text-shadow:
		0 2px 10px rgba(0,0,0,0.25),
		0 4px 30px rgba(0,0,0,0.15);
}
.fv-text h2{
	font-size: clamp(25px, 4vw, 60px);
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	margin-bottom: 20px;
}
.fv-text p{
	font-size: 18px;
	letter-spacing: 0.15em;
	font-weight: 500;
	text-shadow:
		0 2px 10px rgba(0,0,0,0.25),
		0 4px 30px rgba(0,0,0,0.15);
}

/*社員紹介カード
--------------------------*/
.talk-member{
	padding: 120px 3% ;
}
/* タイトル */
.talk-head{
	margin-bottom: 70px;
}
.talk-head p{
	font-size: 38px;
	font-weight: 300;
	position: relative;
	display: inline-block;
	padding-bottom: 12px;
	color: #222;
}
.talk-head p::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 140px;
	height: 1px;
	background: #222;
}
/* 横並び */
.member-wrapper{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 40px;
	row-gap: 70px;
}
/* カード */
.member-card{
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 40px 40px 10px;
	background: #f1f0ee;
	border-radius: 20px;
	position: relative;
	margin: 0;
}
/* 上部 */
.member-top{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 40px;
	margin-bottom: 35px;
}
/* タイトル */
.member-text h3{
	font-size: clamp(28px, 2vw, 42px);
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.04em;
	color: #111;
	margin-bottom: 40px;
}
/* 入社年 */
.year{
	display: inline-block;
	background: #0079b7;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 6px 16px;
	border-radius: 100px;
	margin-bottom: 20px;
	width: fit-content;
}
/* 部署 */
.dept{
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	letter-spacing: 0.03em;
	margin: 0;
}
/* 名前 */
.member-row{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 100%;
	gap: 30px;
}
.member-row h4{
	font-family: "Noto Sans JP", sans-serif;/*指定フォント*/
	font-optical-sizing: auto;/*指定フォント*/
	font-weight:500;/*指定フォント太さ*/
	font-style: normal;/*指定フォント*/
	font-size: 48px;
	letter-spacing: 0.04em;
	color: #111;
	display: flex;
	align-items: center;
	gap: 12px;
	line-height: 1;
	margin: 0;
	white-space: nowrap;
	padding-bottom:5px;
}
.member-info{
	display: flex;
	flex-direction: column;
}
.member-info h4{
	font-size: 58px;
	font-weight: 300;
	letter-spacing: 0.04em;
	color: #111;
	display: flex;
	align-items: center;
	gap: 14px;
}
.member-info h4 span{
	font-size: 14px;
	border: 1px solid #222;
	border-radius: 100px;
	padding: 4px 14px;
	display: block;
}
/* 役職 */
.member-row h4 span{
	font-size: 14px;
	border: 1px solid #222;
	border-radius: 100px;
	padding: 4px 14px;
}
/* 画像 */
.member-image{
	width: 210px;
	flex-shrink: 0;
}
.member-image img{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 20px;
	display: block;
}
/* 本文 */
.member-desc{
	font-size: 16px;
	line-height: 2.2;
	color: #222;
	letter-spacing: 0.03em;
}
/* ボタン */
.member-btn{
	margin-top: 1em;
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 14px 26px;
	border: 1px solid #222;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: #111;
	text-decoration: none;
	transition: 0.3s ease;
}
.member-btn::after{
	content: "→";
	font-size: 16px;
	transition: transform 0.3s ease;
}
.member-btn:hover{
	background: #111;
	color: #fff;
}

.member-btn:hover::after{
	transform: translateX(4px);
}

/*社員紹介
--------------------------*/
.interview-page{
	min-height: 100vh;
	padding: 40px;
	position: relative;
}
/* 閉じるボタン */
.interview-close{
	position: absolute;
	top: 30px;
	right: 40px;
	font-size: 50px;
	color: #fff;
	text-decoration: none;
	line-height: 1;
	transition: .3s;
}
.interview-close:hover{
	opacity: .6;
	transform: rotate(90deg);
}
/* =========================
   レイアウト
========================= */
.interview-layout{
	display: grid;
	grid-template-columns: 240px minmax(0,1fr);
	gap: 30px;
	min-height: calc(100vh - 80px);
}
/* =========================
   左エリア
========================= */
.interview-side{
	position: sticky;
	top: 0;
	height: 100vh;
	color: #333;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
/* 職種 */
.side-head h2{
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: 20px;
}
.side-head h2:first-letter {
	font-size: 30px;
	color: #333;
	letter-spacing:normal;
}
.side-job{
	font-size: 15px;
	line-height: 2;
	margin-bottom: 10px;
}
.side-profile{
	font-size: 18px;
	font-weight: 500;
}
/* 縦コピー */
.vertical-copy{
	writing-mode: vertical-rl;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.08em;
	margin:5em 1em 5em ;
	align-self: flex-start;
}
/* 左下メニュー */
.side-menu{
	margin-top: auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.side-menu li{
	margin-bottom: 20px;
}
.side-menu a{
	color: #333;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	position: relative;
	padding-left: 18px;
}
.side-menu a::before{
	content: "›";
	position: absolute;
	left: 0;
	top: 0;
}
/* =========================
   右コンテンツ
========================= */
.interview-main{
	background: #f1f0ee;
	border-radius: 60px;
	padding: 80px 50px;
	position: relative;
}
/* タイトル */
.interview-title{
	font-size: 25px;
	font-weight: 700;
	color: #0079b7;
	margin-bottom: 30px;
}
.interview-title span{
	font-size: 13px;
	color: #f5a43a;
	margin-left: 12px;
	letter-spacing: 0.08em;
}
/* 本文 */
.interview-block{
	margin-bottom: 30px;
}
.interview-block h3{
	font-size: 18px;
	font-weight: 600;
	color: #0079b7;
	margin-bottom: 0.5em;
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;
}
.interview-block p{
	font-size: 14px;
	line-height: 1.7;
	color: #333;
	letter-spacing: 0.03em;
}
/* =========================
   下ナビ
========================= */
.interview-nav{
	margin-top: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.interview-nav a{
	color: #0079b7;
	text-decoration: none;
	font-size: 22px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: .3s;
}
.interview-nav a:hover{
	opacity: .6;
}
/* =========================
   一日のスケジュール
========================= */
.dayflow{
	margin-top: 80px;
	padding-top: 40px;
	border-top: 1px solid #d7d7d7;
}
/* タイトル */
.flow-title{
	display: flex;
	align-items: baseline;
	gap: 18px;
	margin-bottom: 80px;
}
.flow-title h2{
	font-size: 42px;
	font-weight: 700;
	color: #0079b7;
	letter-spacing: 0.08em;
}
.flow-title span{
	font-size: 22px;
	font-weight: 500;
	color: #f5a43a;
	letter-spacing: 0.08em;
}
/* 2カラム */
.flow-grid{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 80px;
}
/* カラム */
.flow-column h3{
	font-size: 15px;
	font-weight: 500;
	color: #5c6c7d;
	margin-bottom: 20px;
}
/* リスト */
.flow-list{
	list-style: none;
	padding: 0;
	margin: 0;
}
.flow-list li{
	display: grid;
	grid-template-columns: 50px 1fr;
	gap: 10px;
	margin-bottom: 10px;
}
/* 時間 */
.flow-list time{
	font-size: 15px;
	color: #0079b7;
	letter-spacing: 0.05em;
	line-height: 1.4;
}
/* 内容 */
.flow-list p{
	font-size: 15px;
	color: #4b5b6b;
	margin: 0;
}

/*フッターメニュー
--------------------------*/
.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;
}

/*リニューアル
--------------------------*/
.renewal{
	font-family: "Noto Sans JP", sans-serif;/*指定フォント*/
	font-optical-sizing: auto;/*指定フォント*/
	font-weight:500;/*指定フォント太さ*/
	font-style: normal;/*指定フォント*/
	margin: 10px 20px;
}
.renewal h2{
	font-size:40px;
	font-weight: 700;
	text-align: center;
	line-height: 1.3;
	margin-bottom: 15px;
}
.renewal h2:first-letter {
	font-size: 40px;
	color: #333;
	letter-spacing:normal;
}
.renewal p{
	text-align: center;
	margin:0px 20px 20px;
}
.illust{
	width:150px;
	display: block;
	margin: 0 auto;
}
.character{
	margin-bottom: 20px;
}
.character p{
	font-size:15px;
	line-height: 1.5;
}

/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ヘッダー
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	top: 20px;	/*上から20pxの場所に配置*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	margin-top: 8%;	/*上に空けるスペース。この部分にイメージ画像が表示されます。*/
}
body.home #contents {
	margin-top: 40%;	/*上に空けるスペース。この部分にスライドショーが表示されます。*/
}
/*スライド
---------------------------------------------------------------------------*/
.fv{
	height: 85vh;
}
.fv-text{
	left: 6%;
	bottom: 10%;
}
.fv-text p{
	font-size: 14px;
}
/*社員紹介カード
---------------------------------------------------------------------------*/	
.talk-member{
	padding: 80px 6%;
}
.member-wrapper{
	grid-template-columns: 1fr;
	gap: 70px;
}
.member-top{
	flex-direction: column;
	align-items: flex-start;
	gap: 30px;
}
.member-image{
	width: 180px;
}
.member-text h3{
	font-size: 28px;
	line-height: 1.6;
	margin-bottom: 30px;
}
.member-info h4{
	font-size: 44px;
}
.member-desc{
	font-size: 15px;
	line-height: 2;
}
/*インタビュースケジュール
---------------------------------------------------------------------------*/	
.flow-title{
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 50px;
}
.flow-title h2{
	font-size: 30px;
}
.flow-title span{
	font-size: 16px;
}
.flow-grid{
	grid-template-columns: 1fr;
	gap: 60px;
}
.flow-column h3{
	font-size: 15px;
	margin-bottom: 10px;
}
.flow-list li{
	grid-template-columns: 80px 1fr;
	gap: 16px;
	margin-bottom: 10px;
}
.flow-list time{
	font-size: 15px;
}
.flow-list p{
	font-size: 15px;
	line-height: 1.9;
}	
	
}


/*画面幅700px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:700px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 15px;	/*文字サイズ*/
}
	
/*コンテンツ
---------------------------------------------------------------------------*/
#contents h2{
	text-align: center
}
/*spanタグ*/	
#contents span{
	display: block; /*改行*/
}
/*インタビュー右側
---------------------------------------------------------------------------*/
.interview-page{
	padding: 0;
}
.interview-layout{
	grid-template-columns: 1fr;
	gap: 0;
}
/* 左 */
.interview-side{
	padding: 90px 24px 50px;
	position: static;
	height: auto;
}
.side-head h2{
	font-size: 34px;
}
/* 縦文字解除 */
.vertical-copy{
	writing-mode: horizontal-tb;
	font-size: 30px;
	line-height: 1.8;
	margin: 50px 0;
}
/* メニュー */
.side-menu{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.side-menu li{
	margin: 0;
}
/* 右 */
.interview-main{
	border-radius: 40px 40px 0 0;
	padding: 50px 24px;
}
.interview-title{
	font-size: 28px;
	line-height: 1.5;
}
.interview-title span{
	display: block;
	margin: 10px 0 0;
	font-size: 14px;
}
.interview-block h3{
	font-size: 22px;
	line-height: 1.7;
}
.interview-block p{
	font-size: 15px;
	line-height: 2.2;
}
/* 下ナビ */
.interview-nav{
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}
.interview-nav a{
	font-size: 18px;
}
/* 閉じる */
.interview-close{
	top: 16px;
	right: 20px;
	font-size: 42px;
}
	
}

/*画面幅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;
}
	
/*表彰
---------------------------------------------------------------------------*/
.award p{
	margin:0px 30px 50px;
}

/*リニューアル中
---------------------------------------------------------------------------*/
.renewal h2{
	font-size:25px;
}
.renewal h2:first-letter {
	font-size: 25px;
}
	
}

