@charset "utf-8";



/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("inview.css");
@import url("mainimg.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	
	--space-large: 5vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
	--space-small: 2vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
}



/*animation11のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}
/* 上からスライドインするアニメーション */

@keyframes slideFromTop {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* 上へスライド「アウト」 */
@keyframes slideToTop {
	from {
		transform: translateY(0);
		opacity: 1;
	}
	to {
		transform: translateY(-100%);
		opacity: 0;
	}
}
/* 右からスライド「イン」 */
@keyframes slideFromRight {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}
/* 右へスライド「アウト」 */
@keyframes slideToRight {
	from {
		transform: translateX(0);
		opacity: 1;
	}
	to {
		transform: translateX(100%);
		opacity: 0;
	}
}
/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/* menubar の初期状態 */
#menubar {
	animation: none;
	transform: translateX(100%);
	transition: transform 0.3s ease-out;
}

/* 開いた状態 */
#menubar.open {
	animation: slideFromRight 0.3s ease-out both;
	transform: translateX(0%);
	display: block;
}

/* 閉じた状態 */
#menubar.close {
	animation: slideToRight 0.3s ease-in both;
	transform: translateX(100%);
}

/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	font-size: 13px;	/*基準となるフォントサイズ。*/
	overflow-x: hidden; /* 横スクロールを防ぐ */
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	html, body {
		font-size: 15px;	/*基準となるフォントサイズ。*/
	}

	}/*追加指定ここまで*/


body {
	margin: 0;padding:0;
	font-family: "Noto Serif JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: radial-gradient(circle at right top, #d9dbe6, #ecebee, #f1f1f591);
	color: #333333;		/*文字色*/
	line-height: 2;		/*行間*/
	overflow-x: hidden;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}

/*section*/
section {
	padding: var(--content-space);	/*section内の余白。css冒頭のcontent-spaceを読み込みます。*/
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	filter: brightness(1.1);	/*少しだけ明るくする*/
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	position: relative;
	animation: opa1 0.1s 0.9s both;	/*1秒待機し、1秒かけてフェードイン*/
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0 auto;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: fixed;              /* ← ヘッダーを固定表示にする */
	top: 0;                      /* ← 画面上部に固定 */
	width: 100%;                  /* ← 横幅いっぱいに表示 */
	z-index: 100;                /* ← 他の要素より前面に表示 */
	/*background-color: #ffffff87;      /* ← 必要に応じて背景色（透過させるなら rgba を使う） */
	flex-shrink: 0;
	display: flex;					/*flexボックスを使う指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	justify-content: space-between;
	height: 80px;					/*ヘッダーの高さ*/
	color: #070000;  /* ← ここで文字色を指定（例：白） */
	
}


/* スクロール後に変化させたい内容 */
header.scrolled {
  /*background-color: #333;*/
  height: 80px;  /* 例えば高さを小さくするとか */
}

/* スクロール後に適用するクラス */
/* スクロール後の背景 */
header.scrolled {
  background-color: rgba(255, 255, 255, 0.8); /* 半透明白背景 */
  backdrop-filter: blur(10px); /* 背後をぼかす（対応ブラウザのみ） */
  color: #333;
}

/*ロゴ画像*/
#logo img {display: block;}
#logo {
	margin: 0;padding: 0;
	width: 18vw;	/*ロゴの幅*/
	position: relative;z-index: 0;
	
	left: 2vw;	/*左からの配置場所*/
	top: 0.15vw;		/*上からの配置場所*/}

	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:924px) {
	
	#logo {
		top: 0;			/*上からの配置場所*/
		width: 235px;	/*ロゴの幅*/
		position: relative;z-index: 1000;
	}

	}/*追加設定ここまで*/

header nav a {
  position: relative;
  text-decoration: none;
  color: inherit;
}

header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 0.6px;
  background-color: currentColor; /* 色 */
  transition: width 0.3s;
}

header nav a:hover::after {
  width: 100%;
}
/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*900px未満では非表示*/
header nav ul {display: none;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
		
	/*メニューブロック全体の設定*/
	header > nav > ul {
		margin-right:8vw;	/*ハンバーガーアイコンに重ならないように余白*/
		display: flex;		/*横並びにする*/
	}

	/*メニュー１個あたりの設定*/
	header nav li a {
		display: block;text-decoration: none;
		font-size: 0.95rem;		/*文字サイズ90%*/
		padding: 0.5rem 1rem;	/*メニュー内の余白。上下、左右へ。*/
	}
	
	/*ドロップダウンメニュー冒頭の矢印アイコン*/
	header nav i {
		padding-right: 1rem;	/*右に空ける余白*/
	}
/* ドロップダウンメニューを hover で表示 */
header nav li:hover > ul {
  display: block;
  position: absolute;
  background: #fbfbfb;   /* 背景色（必要に応じて） */
  padding: 0.8rem 0rem; 
  box-shadow: 0 0px 16px rgba(0,0,0,0.1); /* ドロップ感を出す */
  z-index: 101;
}

/* 子メニューの親に position: relative をつける */
header nav li {
  position: relative;
}
	}/*追加設定ここまで*/


/*開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック共通*/
#menubar {
	display: flex;
	flex-direction: column;
	justify-content: center; /* 上下中央に配置 */
	align-items: center;     /* 左右中央に配置 */
	animation: slideFromRight 0.3s ease-out both;
	position: fixed;
	overflow: auto;
	z-index: 1000;
	right: 0;
	top: 0;
	width: 20%;              /* 右から出すために幅を指定 */
	height: 100%;            /* 高さは画面全体に */
	padding: 150px 0 50px;   /* 上の余白を増やす */
	background: #f0f3f2;
	color: #333333; 
	transform: translateX(100%);   /* 初期状態で右に隠す */
	transition: transform 0.3s ease-out;
	text-align: center;      /* テキストも中央寄せにする場合 */
}
/* スマホサイズ用調整 */
@media (max-width: 768px) {
  #menubar {
    width: 55%; /* スマホでは幅を広げる */
  }

  /* 下線の位置調整（前のリクエスト） */
  #menubar a::after {
    left: 50%;
  }
}

#menubar.open {
	transform: translateX(0);   /* 右から表示 */
}

/* メニュー１個あたり */
#menubar a {
	display: inline-block;         /* 拡大アニメーションに必要 */
	text-decoration: none;
	color: inherit;
	margin-bottom: 0.5rem;
	padding: 0.6rem 1.2rem;
	font-size: 1.2rem;
	position: relative;
	transition: transform 0.3s ease, color 0.3s ease;
}

/* 下線（常に表示） */
#menubar a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 150px;
	height: 1px;
	background-color: #4c4444; /* 下線の色 */
	transition: transform 0.3s ease, height 0.3s ease;
}


/* ホバー時に拡大 + 下線強調 */
#menubar a:hover {
	transform: scale(1.1);         /* テキストを拡大 */
	color: #4c4444;                /* 任意：ホバー時の文字色 */
}

#menubar a:hover::after {
	transform: translateX(-50%) scaleY(1.2); /* 下線を太くする */
	height: 0.8px;
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: flex;
	animation: opa1 0s 0.2s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 0px;	/*右からの配置場所*/
	top: 0px;	/*上からの配置場所*/
	width: 70px;	/*ボタンの幅*/
	height: 60px;	/*ボタンの高さ*/
	transform-origin: right top;
	transform: scale(1);	/*大きさを調整したい場合はここの「1」を変更します。1.2や0.7など。*/
}

/*バツ印が出ている時のボタン色*/

#menubar_hdr.ham span {
	background: #4b3232;  /* ← 好きな色に変更（例：赤系） */
}
/*ハンバーガーアイコンの線*/
#menubar_hdr span {
	display: block;
	position: absolute;
	left: 1px;
	width: 40px;
	height: 1px;		/*線の高さ*/
	background: #555;	/*線の色*/
	transition: 0.3s;
}

#menubar_hdr span:nth-of-type(1) {
	top: 20px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 30px;
}
#menubar_hdr span:nth-of-type(3) {
	top: 40px;
}

/* ハンバーガーメニュー展開時 */
#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}
/* 通常の線（初期） */
#menubar_hdr span {
	background: #555; /* ← 暗めの線 */
}


/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツブロック*/
#contents {
	flex: 1;
}

/*トップページ以外のコンテンツ*/
body:not(.home) #contents {
	padding-top: 10rem;		/*上に10文字分の余白を空ける*/
	padding-bottom: 10rem;	/*下に10文字分の余白を空ける*/
}

/*コンテンツ内で使用するul,ol要素（リストタグ）*/
#contents ul,#contents ol {
	margin-left: 2rem;
	margin-right: 2rem;
}


/*p要素（段落タグ）
---------------------------------------------------------------------------*/
p {
	margin-left: 1rem;	/*左に１文字分のスペース*/
	margin-right: 1rem;	/*右に１文字分のスペース*/
}


/*main（メインコンテンツ）
---------------------------------------------------------------------------*/
/*h2見出し*/
main h2 {
	margin: 0;padding: 0;
	font-size: 2rem;		/*文字サイズ。240%。*/
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	margin-bottom: 2vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
}


main h3 {
	font-weight: 300;
	font-size: 1.2rem;	/*文字サイズ140%*/
	
}


/*見出しをセンタリングする場合*/
main h2.c {
	align-items: center;
	margin-bottom: -0.5rem; /* ここも小さくしてみる */
}


/* 企業理念
---------------------------------------------------------------------------*/
.philosophy {
  padding: calc(var(--space-large) * 1.2) var(--space-large);
  text-align: center;
  position: relative;
}

/* 見出しは既存 h2 設計を活かす */
.philosophy h2 {
	padding-top: 10rem; /* グラデーション表示の余白を確保 */
  margin-bottom: 3rem;
	font-size: 1.1rem;
}

/* タイトル */
.philosophy h2.c {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 2;
  text-align: center;
}

/*装飾文字*/
.philosophy .kazari {  
	position: absolute;
  left: 35%;
  font-size: 6.5vw;
  color: rgb(255 255 255 / 23%); /* 薄いグレージュ */
  font-weight: bold;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
	font-style: italic; 
  z-index: -1;
	letter-spacing: 0.15rem;	/*文字間隔を少しだけ広く*/
}

/* 理念本文 */
.philosophy-lead {
  font-size: 1.4rem;
  line-height: 2.1;
  font-weight: 300;
  letter-spacing: 0.08rem;
  color: #1e272d;
  max-width: 900px;
	padding-top: 4rem; /* グラデーション表示の余白を確保 */
  margin: 0 auto;
}

/* スマホ調整 */
@media (max-width: 600px) {
  .philosophy-lead {
    font-size: 1.15rem;
    line-height: 1.9;
    letter-spacing: 0.05rem;
  }
}



/*box1（経営心得）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.box1 {
    overflow-x: visible;
    position: relative;
    padding: var(--space-large);
    margin-top: -1vw;
    margin-bottom: 2rem;
	
}

.box1 .main-text {
  margin-top: 0em; /* 必要に応じて追加 */
	letter-spacing: 0.15rem;	/*文字間隔を少しだけ広く*/
	margin-bottom: 2.8rem;
	
	
}

/*装飾文字*/
.box1 .kazari {  
	position: absolute;
  left: 10%;
  font-size: 5.5vw;
  color: rgb(141 142 147 / 6%); /* 薄いグレージュ */
  font-weight: bold;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
	font-style: italic; 
  z-index: -1;
	letter-spacing: 0.15rem;	/*文字間隔を少しだけ広く*/
}

.box1 h3 {
  font-size: 1.2rem; /* 見出し:中サイズ */
  line-height: 1.6;
  font-weight: 550;
  margin-bottom: 0.5em;
	color: #093359;                /* 文字色 */
	letter-spacing: 0.05rem;	/*文字間隔を少しだけ広く*/
	border-bottom: 1px solid #606a8b; /* 線も薄めにしてOK */
}
.box1 p {
  line-height: 1.7;
  margin-bottom: 3em;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.box1 {
	display: flex;	/*横並びにする*/
	flex-direction: row; /* ← 並び順を反転（テキストを右、画像を左） */
	gap: 3vw;		/*左右の間のスペース*/
	padding-left: 10; /* ← 左の余白を削除したい場合はここもチェック */
		
	}
	/* メインテキストの大枠 */
.box1 .main-text {
  display: block;
	margin-bottom: 2em;
}


.box1 p {
  font-size: 1rem; /* 本文:標準 */
  line-height: 2;
  margin-bottom: 3.5em;
	color: #1e272d;                /* 文字色 */
}

/* アニメーションの遅延（各行ごと） */
.delay1::after {
  animation-delay: 2s;
}
.delay2::after {
  animation-delay: 3s;
}
.delay3::after {
  animation-delay: 4s;
}
	
	.box1 > * {flex: 1;}
		
.box1 .text {
margin-bottom: 0;	/*下マージンのリセット*/
}
}/*追加指定ここまで*/


/*画像を囲むブロック*/
.box1 .image {
	position: relative;
	overflow: visible; /* はみ出し許可 */
}

/*画像の角を少し丸くする指定*/
.box1 .image img {
	border-radius: 2px;
}

/*画像ブロック内の１枚目の写真への追加指定*/
.box1 .image img:nth-of-type(1) {
	width: 85%;       /* ← 画像の幅を親要素いっぱいに */
	display: block;     /* ← 余計な隙間（インライン要素の空白）を防ぐため */
	margin-left: 0;     /* 念のためリセット */
}

/*画像ブロック内の２枚目の写真への追加指定*/
.box1 .image img:nth-of-type(2) {
	width: 65%;
	position: absolute;
	right: 2px;   /* ← さらに右へずらす */
	top: 28vw;
}

/* 初期状態：不透明度0、下にスライド、ぼかしあり */
.image.blur img {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
  animation: blurUp 1s ease-out forwards;
}

/* 1枚目：すぐ始まる */
.image.blur img.delay1 {
  animation-delay: 0.2s;
}

/* 2枚目：少し遅れて始まる */
.image.blur img.delay2 {
  animation-delay: 0.5s;
}

/* アニメーションの定義 */
@keyframes blurUp {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* スマホ用メディアクエリ */
@media (max-width: 600px) {
  .box1 {
    display: flex;
    flex-direction: column-reverse; /* 上から画像→テキストの順に */
    align-items: left;
    position: relative;
	font-size: 1rem;	/*文字サイズ*/
  }
	/* メインテキストの大枠 */
.box1 h3 {
	font-size: 1.1rem;	/*文字サイズ*/
	
}
  .box1 .image {
    position: relative;
    width: 95%;
    max-width: 600px; /* 適宜調整 */
    margin-top: 0rem;
    margin-bottom: 15rem; /* テキストとの間隔 */
  }

  .box1 .image img:nth-of-type(2) {
    position: absolute;
    top: 105%;   /* ← 下にずらす（画像が少し重なる） */
    right: -5%;  /* ← 横にもずらすとさらに動きが出る */
    width: 65%;
    z-index: -1;
  }

	/*装飾文字*/
.box1 .kazari {
	top: 45%;
	right: 50%;
	font-size: 12vw;
	}
}
/*フッター設定
---------------------------------------------------------------------------*/
/* ===== footer 全体 ===== */
.site-footer {
  background: radial-gradient(circle at top, #5f5b59, #3f3937, #5f5753);
  color: #dcdcdc;
  padding: 60px 20px 30px;
}

/* 中央コンテナ */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* ===== ブランド ===== */
.footer-brand {
  max-width: 360px;
}

.footer-logo {
  width: 300px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== ナビ ===== */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: #cac9c9;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* ===== 会社情報 ===== */
.footer-info {
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ===== コピーライト ===== */
.footer-copy {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid rgb(198 198 198 / 13%);
  text-align: center;
  font-size: 0.8rem;
  color: #918a8a;
}

/* ===== スマホ ===== */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 16px;
  }

  .footer-nav li {
    margin-bottom: 8px;
  }
}





/* ブラウザバックボタンのスタイル
---------------------------------------------------------------------------*/
.pageback-show {display: block;}
.pageback a {
  display: block;
  text-decoration: none;
  text-align: center;
  z-index: 99;
  animation: opa1 1s 0.4s both;
  position: fixed;
  left: 20px;
  bottom: 30px;
  color: #ffffff;
  font-size: 1.5rem;
  background: #75787a;
  width: 48px;
  line-height: 48px;
  border: 0.8px solid #959595db;
  border-radius: 12px;
}

/*行動指針
---------------------------------------------------------------------------*/
/* 行動指針・クレドセクション全体 */
.credo {
  position: relative;
  overflow: hidden;
  padding: 60px 10px;
  color: #111417;
	padding-bottom: 0rem; /* グラデーション表示の余白を確保 */
	padding-top: 5rem; /* グラデーション表示の余白を確保 */
}

/* セクションタイトル */
.credo h2.c {
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* 各dlをカラムとして扱う */
.credo-columns dl {
  flex: 1;
  min-width: 300px; /* レスポンシブ対応のための最小幅 */
	
}


/* ▼ セクション見出しの装飾（Credo） */
.credo .kazari {
  position: absolute;
  top: 2;
  right: 25%;
  font-size: 7.5vw;
  color: rgb(245 245 249 / 32%); /* 薄いグレージュ */
  font-weight: bold;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
	font-style: italic; 
  z-index: -1;
}

/* 中身内容ラッパー */
.credo-content {
  max-width: 700px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  width: 100%;
	
}

.credo dl dt {
  position: relative;
	
}


/* 内容リスト */
.credo dl {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  font-size: 1.2rem;
  line-height: 2;
	font-weight: 300; /* ← 全体を細字に */
	
}

/* タイトル */
.credo dt { font-weight: 500; /* 少し太めに残す場合 */ 
		   white-space: nowrap; 
		   font-style: italic; 
		   color: #001f3e;
		   border-bottom: 0.9px solid #000000; /* 線も薄めにしてOK */ 
		   letter-spacing: 0.08rem; /*文字間隔を少しだけ広く*/ 
		   text-align: center; /* ←テキストを中央配置に*/ }


/* 内容 */
.credo-columns dd {
	font-weight: 250; /* 細字に */
	font-size: 0.95rem;
	text-indent: 2em; /* 文字2つ分のインデント */
	padding-top: 0.5rem; /* 通常より近くする例 */
	margin-bottom: 4rem;
}


/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .credo {
    padding: 90px 50px 0;
  }

  .credo h2.c {
    font-size: 1.2rem;
    margin-bottom: 0rem;
  }

  .credo .kazari {
    font-size: 10vw;
    top: -25px;
    right: 5%;
  }

  .credo-columns {
    gap: 0px; /* カラムの間も狭くする（縦並びなので意味は小さい） */
  }

  .credo dl {
    grid-template-columns: 1fr;
  }

  .credo dt {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid #000000;
  }

  .credo-columns dd {
    padding-top: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    text-indent: 1.5em;
  }
}



/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/*fadeInのキーフレーム設定*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.1) rotate(-30deg);}
	100% {opacity: 1;transform: scale(1) rotate(0deg);}
}

/* 初期状態でテキストを非表示にする */
.fade-in-text {
    visibility: hidden;
}

/* アニメーションを適用するクラス。
animationの行の「0.2s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.1」で調整できます。*/
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 1s linear both;
}


/*マニュアルページ用
---------------------------------------------------------------------------*/
#manual {background-image: none;}
.manual {
	padding: 0rem;
}
.manual h2,.manual h3 {
	margin-top: 3rem;
}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb5rem {margin-bottom: 5rem !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee;border: 1px solid #ccc; color: #888; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}

	}/*追加指定ここまで*/


