@charset "utf-8";

/*Font Awesome（商業利用可アイコン）
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--base-color: #e9f0f9;					/*テンプレートの土台となる色（主に背景カラー）*/
	--base-inverse-color: #323232;		/*上のbase-colorの対となる色（主にテキストカラー）*/
	--primary-color: #05438d;			/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #fff;	/*上のprimary-colorの対となる色*/

	--space-large: 8vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
	--large_w: 1100px; /* 大きいサイズのコンテンツ最大幅 */
	--margin-last: 80px; /* 次のコンテンツまでの余白 */

	--temp_l-color: #0064dc; /* 最低気温 */
	--temp_h-color: #f00032; /* 最高気温 */
	--rain_p-color: #1d376e; /* 降水確率・降水量 */

	--base-font-size: 16px; /*基準となるフォントサイズ*/
}


/*fadeInのキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*fadeOutのキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;visibility: hidden;}
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

html,body {
	font-size: var(--base-font-size);
	height: 100%;
}

body {
	margin: 0;padding:0;
	font-family: Meiryo, "メイリオ", sans-serif, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	-webkit-text-size-adjust: none;
	background: var(--base-color);		/*varは背景色のことで冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。冒頭で指定しているbase-inverse-colorを読み込みます。*/
	line-height: 2;		/*行間*/
}

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

table {line-height:1.5;border-collapse:collapse;}

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

iframe {width: 100%;}

input {font-size: 1rem;}

section.bg-wrap{background-color:#fff;}

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

/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	opacity: 0.9;			/*色を90%だけ出す*/
}

/*---------------------------------------------------------------------------
  見出し
-----------------------------------------------------------------------------*/
/* h1 はヘッダーで使用 */
h2,h3,h4{
	line-height: 1;
}

/* 
h2{
	font-weight: normal;
	color: var(--primary-color);
}

h2.full_width{
	width: 100vw;
	font-size: 210%;
	text-align: center;
	background-color: #fff;
	border-top: 5px solid var(--primary-color);
	border-bottom: 5px solid var(--primary-color);
	margin: 0 auto;
	padding: 1.2em 0em 1em 0em;
}

h2.full_width2{
	width: 100vw;
	font-size: 210%;
	text-align: center;
	background-color: #fff;
	border-top: 5px solid var(--primary-color);
	border-bottom: 5px solid var(--primary-color);
	margin: 0 auto;
	padding: 0.8em 0em 0.6em 0em;
}

h2.full_width2 > span{
	display: block;
	font-size: 50%;
	margin-bottom: 0.5em;
}
*/
	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
/*	@media screen and (max-width:900px){
	h2.full_width{
		font-size: 180%;
		border-top: 4px solid var(--primary-color);
		border-bottom: 4px solid var(--primary-color);
		padding: 1em 0em 0.8em 0em;
	}
	}

/* TOPページ用 */
/*h2.top_page{
	width: 6em;
	font-size:240%;
	text-align: center;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
/*	border-bottom: 2px solid var(--primary-color);
	margin: 0px auto 50px auto;
	padding: 50px 0em 0em 0em;
}
*/

h2 {
	position: relative;
	display: flex;
	width: 100%;
	height: 130px;
	font-size: 200%;
	font-weight: normal;
	color: var(--primary-color);
	justify-content: center; /* 中央配置 */
	align-items: center; /* 縦中央 */
	box-sizing: border-box;
	background-color: #fff;
	border-top: 5px solid var(--primary-color);
	border-bottom: 5px solid var(--primary-color);
	margin: 0;
	padding: 0 10px;
}

/* 中央の1000px幅コンテナ */
.h2inner {
	position: relative; /* 中央配置基準 */
	display: flex;
	width: 1000px;
	max-width: 100%;             /* 小さい画面でも収まる */
	height: 100%;
	align-items: center; /* 縦中央 */
}

.h2left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.h2box a{
	display: flex;
	width: 8rem;
	height: 60px;
	font-size: 50%;
	text-decoration:none;
	align-items: center; /* 縦中央 */
	justify-content: center;    /* ← 横中央 */
	background: #fff;
	color: var(--primary-color);
	border: 2px solid #abcef8;
	border-radius: 8px;
	word-break: break-word; /* 長い文字は折り返す */
	box-sizing: border-box;
	flex-shrink: 0;        /* 縮まない */
	flex-grow: 0;          /* 大きくならない */
	padding: 0 0px;
}

/* 地点名を中央配置 */
.h2center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.h2box3 {
	text-align: center;
/*  padding: 10px 20px;*/

}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	h2 {
		height: 120px;
	}

	.h2inner {
		display: flex;
		width: 100%;
		align-items: center;
		justify-content: flex-start;
	}

	.h2left {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
		margin-right: 10px;
	}

	.h2box a{
		height: 40px;
	}

	.h2center {
		position: static;
		transform: none;
	}
	}


















h3{
	font-size:180%;
	letter-spacing: 0em;
	text-indent: 1em;
	font-weight: normal;
	color: var(--primary-color);
	background: var(--base-color);
	border-left: solid 8px var(--primary-color);
	margin: 30px 0px;
	padding: 0.6em 0em 0.4em 0em;
}



h2.hide,
h3.hide{
	display: none;
}



h5 {
	display: flex;
	width: 100vw;
	height: 130px;              /* 高さ固定 */
	font-size: 200%;
	font-weight: normal;
	color: var(--primary-color);
	align-items: center;        /* h2内で縦中央 */
	box-sizing: border-box;
	background-color: #fff;
	border-top: 5px solid var(--primary-color);
	border-bottom: 5px solid var(--primary-color);
	margin: 0;
	padding: 0 10px;
}

h5 .inner {
	width: var(--large_w);
	max-width: 100%;             /* 小さい画面でも収まる */
	margin: 0 auto;
}

h5 .boxes-wrapper {
	display: flex;
	align-items: center;        /* BOX・テキスト縦中央 */
	gap: 10px;
	flex-wrap: nowrap;             /* 改行禁止 */
}

h5 .box {
	display: flex;
	flex: 0 1 auto;         /* shrink可、growなし */
	width: 8rem;        /* 文字数10文字分を最低幅として固定 */
	height: 80px;
	font-size: 50%;
	align-items: center;
	justify-content: flex-start;
	justify-content: center;

	background: #fff;
	color: var(--primary-color);
	border: 2px solid #abcef8;
	border-radius: 8px;
	word-break: break-word; /* 長い文字は折り返す */
	box-sizing: border-box;
	flex-shrink: 0;        /* 縮まない */
	flex-grow: 0;          /* 大きくならない */
	padding: 0 10px;
}

h5 .title-text {
flex: 1 1 auto;        /* 残り幅で伸縮 */
/*  height: 100%;*/
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
/*  background-color: #ddd;*/
  word-break: break-word; /* 長い文字は折り返す */
  box-sizing: border-box;
/*  font-size: 24px;*/
}


/***************************************************************************

  ヘッダー

****************************************************************************/
header {
	z-index: 1;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 90px;
	flex-shrink: 0;
	align-items: center;
	justify-content: space-between;
	background: var(--primary-color);
}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	header {
		height: 60px;
	}
	}

.top_title {
	width: var(--large_w);
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
}

/* タイトル画像 */
#titlelogo img {
	display: block;
	width: 250px;
}

#titlelogo {
	margin: 0;padding: 0;
	padding-left: 0.5em;
}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	.top_title {
		height: 60px;
	}

	#titlelogo img {
		width: 200px;
	}
	}


/*---------------------------------------------------------------------------

 ヘッダー内メインメニュー

-----------------------------------------------------------------------------*/
header > .top_title > nav > ul {
	display: flex;
	color: #fff;
	align-items: center;
	margin-right: 0px; /*ハンバーガーアイコンに重ならないための余白 */
}

header .top_title > nav li a {
	display: block;
	text-decoration: none;
	font-size: 0.9rem;
	padding: 0.8rem 0rem 0.5rem 30px;
}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	header .top_title > nav ul {display: none;} /* ヘッダー内メニューを非表示 */
	}

header .top_title > nav img.menu_icon{
/*	width: 60%;
	height: 60%;*/
}


/*---------------------------------------------------------------------------
 ヘッダー内メインメニュー：ドロップダウン
-----------------------------------------------------------------------------*/
header .top_title > nav ul ul {
	position: absolute;
	z-index: 100;
	margin-left: 1rem;
}

header .top_title > nav ul ul a {
	background: var(--base-color);
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
	border-radius: 5px;
	text-align: center;
	margin-top: 4px;
	padding: 0.2em 1em;
}

/* デフォルト：非表示 */
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

/* 非表示→表示 設定 */
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

/* ハンバーガーメニューフォルトで非表示*/
#menubar_hdr.display-none {display: none;}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {display: none;}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指示*/
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
}

/*メニューブロック内のロゴ画像の幅*/
#menubar .logo {
	width: 260px;
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*animation1のキーフレーム設定*/
@keyframes animation1 {
	0% {right: -100vw;}
	100% {right: 0px;}
}

/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	width: 100%;
	height: 100%;
	top: 0px;
	right: 0px;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	animation: animation1 0.2s both;
	padding: 90px 10vw 50px;
}

/*メニュー１個あたりの設定*/
.small-screen #menubar li {
	margin: 1rem 0;
}
.small-screen #menubar a {
	border-radius: 5px;
	background: #ffec17;
	color: #000;
	padding: 1rem 2rem;
}

/*子メニュー*/
.small-screen #menubar ul ul a {
	border: 1px solid var(--base-inverse-color);	/*枠線の幅、線種、varは色の指定で冒頭のbase-inverse-colorを読み込みます。*/
	background: var(--base-color);		/*背景色。冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	margin-left: 2rem;	/*左に空けるスペース*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: fadeIn 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 0px;				/*右からの配置場所指定*/
	top: 0px;				/*上からの配置場所指定*/
	padding: 20px 15px;		/*上下、左右への余白*/
	width: 60px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 60px;			/*高さ*/
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transform-origin: right top;
	background: var(--base-inverse-color);	/*背景色。冒頭のbase-inverse-colorを読み込みます。*/
/*	border-radius: 0px 0px 0px 10px;		/*角を丸くする指定。左上、右上、右下、左下への順番。*/
}

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

	#menubar_hdr {
		transform: scale(1.5);	/*1.5倍のサイズに。お好みで。*/
	}

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


/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1.5px solid var(--base-color);	/*線の幅、線種、varは色のことで冒頭のbase-colorを読み込みます。*/
}

/*×印が出ている状態の3本バーの背景色*/
#menubar_hdr.ham {
	background: var(--base-inverse-color);
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(6px, 5.8px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(7px, -7px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}


/***************************************************************************

  メインコンテンツ

****************************************************************************/
main {
	display: block;
	flex: 1 0 auto;
	overflow-x: hidden;
	background: var(--base-color);
}

/*---------------------------------------------------------------------------

  共通レイアウト

----------------------------------------------------------------------------*/

/*---------------------------------------------------------------------------
 標準エリア（最大指定幅いっぱい）
----------------------------------------------------------------------------*/

	/*---------------------------------------------------
	 画面幅901px以上（タブレット横・PC）
	---------------------------------------------------*/
	@media screen and (min-width:901px){
	.base_area{
		width: var(--large_w);
		margin: 0px auto var(--margin-last) auto;
	}

	.white_base{
		width: calc(var(--large_w) - 50px);
		background: #fff;
		border: 1px solid #abcef8;
		padding: 30px;
		margin: 0px auto 0px auto;
	}

/*	h2 + .base_area{
		margin-top: 30px;
	}
*/
	}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	.base_area{
		width: 98%;
		margin: 0px auto var(--margin-last) auto;
	}
	}


/*---------------------------------------------------------------------------
 発表日付
----------------------------------------------------------------------------*/
 p.update{
	text-align:right;
	font-size: 90%;
}

/*---------------------------------------------------------------------------
  [要：場所変更] マーク説明
----------------------------------------------------------------------------*/
.exmark{
	text-align:right;
	font-size: 90%;
	margin-top: 1em;
}

.exmark a{
	border: 1px solid var(--bd-color);
	padding: 0.2em 1em;
	margin: 0em 0.5em;;
}

.exmark a:hover{
	background: var(--back-color);
}


/*---------------------------------------------------------------------------
 テーブル共通
----------------------------------------------------------------------------*/
table.base{
	border-collapse: collapse;
	border-spacing: 0;
	color: var(--primary-color);
	margin: 40px auto 40px auto;
}

table.base a { text-decoration: none;} /* 通常時は下線を非表示 */
table.base a:hover { text-decoration: underline;} /* ホバー時に下線を表示 */

table.base th {
	background-color: var(--list-color);
	font-weight: normal;
}

table.base td {
	background-color: white;
}

table.base th,
table.base td{
	border: 1px solid #ced4dc;
	border: 1px solid #ced4dc;
	padding: 0px;
}


/*---------------------------------------------------------------------------
 ［要：場所移動］テーブル：各地の天気、警報注意報（地方）※未チェック
----------------------------------------------------------------------------*/

	/*---------------------------------------------------
	 画面幅901px以上（タブレット横・PC）
	---------------------------------------------------*/
	@media screen and (min-width:901px){
	table.region_list{
/*		margin-bottom: var(--margin-last);*/
	}
	}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	table.region_list{
		width: 100%;
	}
	}


table.region_list th{
	width: 18%;
	background: #edf3fa;
}

table.region_list td{
	width: 82%;
	padding: 0.5em 0em;
}

table.region_list td ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	gap: 10px;
	padding: 0;
	margin: 0;
}

table.region_list li.point {
	flex: 0 0 calc((100% - (10px * 4)) / 5); /* 5等分 */
	text-align: left;
	box-sizing: border-box;
	font-size: 90%;
	padding-left: 1em;
}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	table.region_list th{
		width: 22%;
	}
	table.region_list td{
		width: 78%;
	}
	table.region_list td ul {
		gap: 5px;
	}
	table.region_list li.point {
		flex: 0 0 calc((100% - (5px * 2)) / 3); /* 3等分 */
	}
	}


/*---------------------------------------------------------------------------

  トップページ（地図表示エリア／ポイント天気エリア）

---------------------------------------------------------------------------*/
.top_wether{
	display: flex;
	width: var(--large_w);
	margin: 30px auto 50px auto;
}

	/* トップページは地図とポイント天気を表示 */
	/*---------------------------------------------------
	 画面幅901px以上（タブレット横・PC）
	---------------------------------------------------*/
	@media screen and (min-width:901px){
	.map_area{
		display: block;
		width: 70% !important;
		text-align : center;
		background: var(--base-color);
	}
	.ver_top{
		width: 75%;
	}
	.point_area{
		/*width: 24%;*/
		background: #fff;
		color: var(--primary-color);
/*		border: 1px solid var(--primary-color);*/
		margin: 0px auto;
	}
	}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	.map_area{
		display: block;
		width: 98% !important;
		text-align : center;
		background: var(--base-color);
	}
	.top_wether{
		display: block;
		width: 100%;
	}
	.point_area{
		display: none; /* ポイント天気を非表示 */
	}
	}


/*---------------------------------------------------------------------------
 地図表示天気
---------------------------------------------------------------------------*/

/* 日付タブ
---------------------------------------------------------------------------*/
.tab_day {
	display: flex;
	width: 100%;
	justify-content: space-between;
	gap: 0.5rem;	/* 余白 */
	margin: 0px auto;
}

.tab {
	flex: 1;
	text-align: center;
	border: 2px solid var(--primary-color);
	border-radius: 8px;
	background: #fff;
	color: var(--primary-color);
	cursor: pointer;
	padding: 10px 0 8px 0;
}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	.tab_day {
		width: 98%;
		gap: 0.2rem;	/* 余白 */
	}
	.tab {
		line-height: 1.5;
		border: 2px solid var(--primary-color);
		padding: 5px 0 4px 0;
	}
	}

.tab.active,
.tab:hover {
	background: var(--primary-color);
	color: #fff;
}

/* 天気マーク
---------------------------------------------------------------------------*/
.w_content {
	position: relative;
	display: flex;
	width: 100%;
	height: auto;
	align-items: center;
	justify-content: center;
}

.w_content img {
	display: block;
	max-width: 100%;
	max-height: 100%;
}

.w_content .noimage {
	display: none;
}

.w_content img.noimage {
	display: none;
}

/*---------------------------------------------------------------------------
 ポイント天気
---------------------------------------------------------------------------*/
.point_area .date {
	text-align: center;
	line-height: 1.5;
	font-size: 1.6rem;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	padding: 20px 0px;
}

.point_area .date span.fsize_s {
	font-size: 0.9rem;
	padding-right: 0.3rem;
}

.point_area .region {
	line-height: 1.2;
	text-align: center;
	padding: 10px;
}

.point_area .region .change-link {
	text-align: right;
	font-size: 0.9rem;
	text-decoration: underline;
}

.point_area .region .area {
	font-size: 1.1rem;
	margin-top: 10px;
}

.point_area .region .city {
	font-size: 2.2rem;
	margin-top: 0px;
}

/* 天気マーク */
.point_area .icon {
	width: 40%;
	height: auto;
	margin: 0px auto;
}

/* 気温・降水確率 */
.point_area .temps{
	display: flex;
	justify-content: space-around;
	text-align: center;
	align-items: center;
	font-size: 1.1rem;
	line-height: 1;
	margin-top: 1rem;
	padding: 0px 10px;
}

.point_area .temps .ticon {
	width: 15%;
	padding: 0px 0px;
}

.point_area .temps .title {
	width: 30%;
	padding: 0px 0px;
}

.point_area .temps .high {
	width: 30%;
	color: var(--temp_h-color);
	font-size: 2rem;
	text-align: right;
}

.point_area .temps span{
	font-size: 1.1rem;
	font-weight: normal;
}

.point_area .temps .sa {
	width: 25%;
}

.point_area .temps .low {
	width: 30%;
	color: var(--temp_l-color);
	font-size: 2rem;
	text-align: right;
}

.point_area .temps .rain {
	width: 30%;
	color: var(--rain_p-color);
	font-size: 2rem;
	text-align: right;
}

/* 熱中症警戒アラート */
.point_area .wbgt_alert {
	width: 90%;
	display: flex;
	align-items: center;
	text-align: center;
	font-size: 0.9rem;
	line-height: 1.2;
	background: #cc00cc;
	margin: 20px auto 0px auto;
	padding: 10px 0px 8px 0px;
}

.point_area .wbgt_alert div {
	padding: 0px 10px;
	background: #cc00cc;
	color: #fff;
}

.point_area .wbgt_alert .wbgt{
	width: 35%;
	border-right: 1px solid #fff;
}

.point_area .wbgt_alert .wbgt span{
	font-size: 2rem;
}

.point_area .wbgt_alert .alert {
	width: 65%;
}

.point_area .wbgt_alert .alert span{
	display: block;
	font-size: 1.5rem;
	margin-top: 10px;
}

/* 警報・注意報（すべてのページで共通） */
.warnings{
	margin: 10px auto 0px auto;
	padding: 10px;
}

p.war_mark{
	display: inline-block;
	width: 4em;
	font-size: 0.8rem;
	line-height: 1.6em;
	vertical-align: middle;
	text-align: center;
	border-radius: 3px;
	margin-left: 5px;
	padding: 0.2em 0em;
}

p.war_mark_none{
	width: auto;
}

/* さらに詳しく見る */
.point_area a.morenext{
	display: block;
	width: 10em;
	text-align: center;
	background: #e6ecf3;
	border-radius: 5px;
	text-decoration: none; 
	font-size: 1.2rem;
	margin: 15px auto;
	padding: 10px 0px;
}

/*---------------------------------------------------------------------------

  トップページ：TOPICS

---------------------------------------------------------------------------*/
.containerT {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 0px auto;
	padding: 0px 0px 100px 0px;
}

.item {
  flex: 1 1 45%;
  max-width: 45%;
  box-sizing: border-box;
}

	/*---------------------------------------------------
	 画面幅901px以上（タブレット横・PC）
	---------------------------------------------------*/
	@media screen and (min-width:901px){
	.item {
		flex: 1;
		min-width: 150px;
	}
	}

/* 画像とテキストを重ねるラッパー */
.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

/* 半透明画像 */
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  display: block;
}

/* 重ねるテキスト */
.overlay-text {
	position: absolute;
	width: 80%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 1.2em;
	pointer-events: none;
	line-height: 1;
	text-align: center;
	color: var(--primary-color);
	border-radius: 4px;
	padding: 10px;
}


/*---------------------------------------------------------------------------

  全国の天気・地方の天気（地図）

---------------------------------------------------------------------------*/
.zenkoku_area{
	width: 80%;
	margin: 0px auto;
}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	.zenkoku_area{
		width: 100%;
	}
	}

/*---------------------------------------------------------------------------

  詳細天気

---------------------------------------------------------------------------*/
.point_title {
	display: flex;
	width: var(--large_w);
	height: 80px;
	justify-content: space-between; /* 両端に配置する */
	align-items: center;
	margin: 0px auto;
}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	.point_title {
		height: 90px;
		padding: 10px 0px 8px 0px;
	}
	}

.box_back,
.box_alert{
	display: flex;
	width: 50%;
}

/* 戻る */
.box_back .back{
	display: flex;
	width: 10rem;
	height: 4em;
	justify-content: center;
	align-items: center;
	font-size: 90%;
	background: #fff;
	color: var(--primary-color);
	border: 2px solid #abcef8;
	border-radius: 8px;
	margin: auto 10px auto 0px;
}
.box_back .back > a{
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	margin: 0 auto 0 auto;
}

/* 暑さ指数 */
.box_alert{
	display: flex;
	justify-content: space-between;
	width: 30%;
	align-items: center;
	text-align: center;
	font-size: 0.8rem;
	line-height: 1.2;
	background: #cc00cc;
	color: #fff;
	padding: 5px 0px;
}

.box_alert .wbgt{
	width: 35%;
	border-right: 1px solid #fff;
}

.box_alert .wbgt span{
	font-size: 2rem;
}

.box_alert .alert {
	width: 65%;
}

.box_alert .alert span{
	display: block;
	font-size: 1.2rem;
	margin-top: 8px;
}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	/* 戻る */
	.box_back .back{
		width: 10rem;
		padding: 10px 0px;
	}

	/* 暑さ指数 */
	.box_alert{
		width: 50%;
	}
	.box_alert .wbgt span{
		font-size: 1.6rem;
	}
	.box_alert .alert span{
		font-size: 1.1rem;
	}
	}


/*---------------------------------------------------------------------------
  共通枠
---------------------------------------------------------------------------*/
.data_area{
	width: var(--large_w);
	color: var(--primary-color);
	background: #fff;
	line-height: 1.5;
	padding: 10px 40px;
	margin: 50px auto 0px auto;
}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	.data_area{
		width: 98%;
		padding: 10px;
	}
	}


/*---------------------------------------------------------------------------
  警報・注意報
---------------------------------------------------------------------------*/
.point_tk{
	text-align: right;
	margin-top: 10px;
}

.point_tk p.point_name{
	display: inline-block;
	font-size: 0.9rem;
}


/*---------------------------------------------------------------------------
  詳細天気各コンテンツ
---------------------------------------------------------------------------*/
.point_day,
.amedas{
	margin: 20px auto 80px auto;
}


/* メニュー
---------------------------------------------------------------------------*/
.point_day > nav,
.amedas > nav{
/*	width: 95%;*/
	margin: 30px auto 20px auto;
}

.point_day > nav > ul,
.amedas > nav > ul {
	display: flex;	
	justify-content: space-between;
	align-items: center;
	color: #fff;
	gap: 1rem;	/*このブロック内の直下のブロック同士に空ける余白。４文字分。*/
}

.point_day > nav li,
.amedas > nav li{
	width: var(--large_w);
	flex: 1;
}

.point_day > nav li a,
.amedas > nav li a {
	display: flex;
	height: 4em;
	font-size: 1.3rem;
	text-decoration: none;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
	border-radius: 8px;
	text-align: center;
	justify-content: center;
	align-items: center;
	line-height: 1.2;
	padding-top: 0.2rem;
}

.point_day > nav li a.active,
.point_day > nav li a:hover,
.amedas > nav li a.active,
.amedas > nav li a:hover{
	background: var(--primary-color);
	color: #fff;
}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	.point_day > nav{
		width: 98%;
		margin: 10px auto 10px auto;
	}

	.point_day > nav > ul {
		gap: 0.2rem;
	}

	.point_day > nav li a {
		font-size: 0.8rem;
		padding: 0.8rem 0rem;
	}
	}


/*---------------------------------------------------------------------------
  詳細天気：今日・明日の天気
---------------------------------------------------------------------------*/

	/*---------------------------------------------------
	 画面幅901px以上（タブレット横・PC）
	---------------------------------------------------*/
	@media screen and (min-width:901px){

	/* 詳細展開ボタン非表示 */
	.toggle-btn {
		display: none;
	}

	/* 日選択タブ非表示 */
	.tab-buttons {
		display: none;
	}
	}


/* 日選択タブスタイル
------------------------------------------------------------ */

	/*---------------------------------------------------
	画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	.tab-buttons {
		display: flex;
/*		width: 95%;*/
		margin: 10px auto 0px auto;
	}

	.tab-btn {
		flex: 1;
		font-size: 1.1rem;
		text-align: center;
		cursor: pointer;
		color: var(--primary-color);;
		background: #fff;
		border: 1px solid var(--base-color);
		padding: 1rem 0rem;
	}

	.tab-btn.active {
		background-color: var(--base-color);
		color: var(--primary-color);
	}
	}


/* 日詳細天気スタイル
------------------------------------------------------------ */
.container {
	display: flex;
/*	width: 95%;*/
	flex-wrap: wrap;
	gap: 10px;
	margin: 0px auto 0px auto;
}

.box {
	border: 1px solid #a3a3a3;
	display: block;
	flex: 1 1 0;
	min-width: 0;
}

.content {
	display: block;
	margin-bottom: 10px;
}

/* 日付 
------------------------------------------------------------ */
.day_title{
	border: none;
	background-color: var(--base-color);
	color: var(--primary-color);
	text-align: center;
	text-indent: 0em;
	font-weight: normal;
	font-size: 180%;
	margin: 0em auto;
	padding: 1em 0em;
}

	/*---------------------------------------------------
	画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	.day_title{
		padding: 0.8em 0em 0.6em 0em;
	}
	}

/* 天気マーク・気温
------------------------------------------------------------ */
.forecast_area{
	display: flex;
	align-items: center;
	justify-content: center; /* 横軸 */
	margin: 20px 0px 20px 0px;

}

.forecast_area .data_box1{
	width: 30%;
	line-height: 1.5em;
	text-align: center;
}

.forecast_area .data_box2{
	width: 70%;
	line-height: 1.5em;
}

/* 天気マーク */
.forecast_area .data_box1 img{
	width: 110px;
	height: 73px;
	margin: 0 auto;

}

.forecast_area .data_box1 p.telop{
	font-size: 90%;
}

/* 気温・降水確率 */
.forecast_area .temps{
	display: flex;
	justify-content: flex-start
	align-items: center;
	font-size: 1.1rem;
	line-height: 1;
	margin-top: 1rem;
	padding: 0px 10px;
}

.forecast_area .temps > div{
	display: flex; /* 子要素をflexに */
	align-items: center; /* 縦中央揃え */
}

.forecast_area .temps .ticon {
	width: 12%;
	padding: 0px 0px;
}

.forecast_area .temps .title {
	width: 30%;
	padding: 0px 0px;
}


.forecast_area .temps .high {
	display: flex;
	width: 25%;
	color: var(--temp_h-color);
	font-size: 2rem;
	justify-content: flex-end; /* flexの中でも右寄せ */
}

.forecast_area .temps span{
	font-size: 1.1rem;
	font-weight: normal;
	vertical-align: baseline; /* デフォルトはこれ */
	position: relative;
	top: 0.2em; /* 下にずらす */
}

.forecast_area .temps .sa {
	width: 40%;
	padding-left: 0.5em;

}

.forecast_area .temps .low {
	display: flex;
	width: 25%;
	color: var(--temp_l-color);
	font-size: 2rem;
	justify-content: flex-end; /* flexの中でも右寄せ */
}

.forecast_area .temps .rain {
	display: flex;
	width: 25%;
	color: var(--rain_p-color);
	font-size: 2rem;
	justify-content: flex-end; /* flexの中でも右寄せ */
}

/* 気温 */
.forecast_area .data_box p.sumarry {
	font-size: 120%;
	font-weight: bold;
}
.forecast_area .data_box p.sumarry span.before {
	display: block;
	font-size: 80%;
	font-weight: normal;
	color: #000;
}

.forecast_area .data_box .temp{
	font-size: 250%;
	font-weight: bold;
	margin-top: 0.5em;
}

.forecast_area .data_box .temp span.unit {
	font-size: 50%;
	font-weight: normal;
	margin-left: 5px;
}

.forecast_area .data_box .tempdiff {
	font-size: 110%;
}


/* 生活情報
------------------------------------------------------------ */
.expand {
	margin-top: 10px;
	padding: 10px;
}

.expand.day1_data,
.expand.day2_data {
	display: none;
}

.life_area{
	display: flex;
	width: 90%;
	height: 4em;
	align-items: center;
	justify-content: center;
	border-top: 1px solid #a3a3a3;
	margin: 0px auto 0px auto;
	padding: 40px 0px;
}

	/*---------------------------------------------------
	画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	.life_area{
		width: 95%;
	}
	}

.life_area p.title{
	width: 35%;
	line-height: 1.5em;
	text-align: center;
	color: #356a95;
}

.life_area p.mark{
	width: 20%;
	text-align: center;
}

.life_area p.mark img{
	width: 70px;
	height: 70px;
}

.life_area p.lv_s{
	width: 45%;
	font-size: 90%;
	text-align: center;
}

.life_area p.lv_l{
	width: 35%;
	font-size: 90%;
}

/* 生活情報表示切替ボタン
------------------------------------------------------------ */
.toggle-btn {
	float: right;
	border: 1px solid #a3a3a3;
	background-color: var(--base-color);
	color: var(--primary-color);
	cursor: pointer;
	padding: 5px 10px;
	margin: 0px 10px 10px auto;
}

	/*---------------------------------------------------
	 画面幅901px以上（タブレット横・PC）
	---------------------------------------------------*/
	@media screen and (min-width:901px){

	/* 横並び表示 */
	.container {
		flex-direction: row;
	}
	.box {
		width: calc(50% - 10px);
	}
	.expand.day1_data,
	.expand.day2_data {
		display: block;
	}
	}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){

	/* タブ切替表示 */
	.container {
		flex-direction: column;
	}
	.box {
		display: none;
		width: 100%;
	}
	.box.active {
		display: block;
	}
	.expand.day1_data,
	.expand.day2_data {
		display: none;
	}
	.expand.show {
		display: block;
	}
	}


/*---------------------------------------------------------------------------

　アメダス実況

----------------------------------------------------------------------------*/
.amedas_area{
	width: 85%;
	margin: 0px auto 0px auto;
}

.amedas_area .w_content img {
  width: 900px;
  height: 900px;
/*  object-fit: fill; /* 縦横比無視で伸縮 */
}

.amedas_area .tab-menu {
	display: flex;
	justify-content: space-between;
	gap: 1rem;	/* 余白 */
	margin: 30px auto 20px auto;
}

.amedas_area .data_view .noimage {
	display: none;
}

.amedas_area .data_view{
	text-align: center;
}

.amedas_area .tab-menu .tab {
	display: flex;
	height: 4em;
	font-size: 1.3rem;
	text-decoration: none;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
	border-radius: 8px;
	justify-content: center;
	align-items: center;
}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	.amedas_area{
		width: 98%;
		margin: 0px auto 0px auto;
	}
	.amedas_area .tab-menu {
		gap: 0.5rem;	/* 余白 */
	}
	.amedas_area .tab-menu .tab {
		font-size: 1rem;
	}
	.amedas_area .w_content img {
		width: 100vw;
		height: 100vw;
	}
	}

.amedas_area .tab-menu .tab.active,
.amedas_area .tab:hover {
	background: var(--primary-color);
	color: #fff;
}


/*===========================================================================

　防災情報

============================================================================*/

.warning_area{
	width: 85%;
	margin: 0px auto 0px auto;
}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	.warning_area{
		width: 100%;
	}
	}

/* 警報・注意報／台風／地震 */
ul.tabmenu_b {
	display: flex;
	list-style: none; /* リストマーカーを消す */
	gap: 1rem;	/* 余白 */
	align-items:center;
	margin: 30px auto 20px auto;
	padding: 0px;
}

.tabmenu_b li {
  flex: 1; /* 幅を均等に */
}

ul.tabmenu_b li a {
	display: flex; /* flex にして縦中央 */
	height: 4em;             /* 高さ固定 */
	max-height: 4em;         /* 超えないように制限 */
	overflow: hidden;        /* はみ出した場合は隠す */
	align-items: center;     /* 縦中央揃え */
	justify-content: center; /* 横中央揃え */
	text-align: center;      /* 複数行の中央揃え */
	line-height: 1.2;        /* 行間調整 */
	text-decoration: none;
	font-size: 1.3rem;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
	border-radius: 8px;
	padding: 0 5px; /* 左右余白だけ */
}

ul.tabmenu_b > li.select a,
ul.tabmenu_b > li a:hover {
	background: var(--primary-color);
	color: #fff;
}


/*---------------------------------------------------------------------------

　警報注意報

----------------------------------------------------------------------------*/

/*---------------------------------------------------------------------------
 全国一覧表テーブル
----------------------------------------------------------------------------*/

	/*---------------------------------------------------
	 画面幅901px以上（タブレット横・PC）
	---------------------------------------------------*/
	@media screen and (min-width:901px){
	table.list_tk{
		width: 100%;
	}
	}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	table.list_tk{
		width: 100%;
	}
	}

table.list_tk th{
	width: 18%;
	background: #edf3fa;
}

table.list_tk td{
	width: 82%;
}

table.list_tk td ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}

table.list_tk li {
	flex: 0 0 calc(100% / 6); /* 6等分 */
	text-align: left;
	box-sizing: border-box;
	font-size: 90%;
	padding: 0.5em;
}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	table.list_tk{
		font-size: 100%;
	}

	table.list_tk th{
		width: 22%;
	}

	table.list_tk td{
		width: 78%;
	}

	table.list_tk li {
		flex: 0 0 calc(100% / 3); /* 3等分 */
	}
	}


/*---------------------------------------------------------------------------
 凡例
----------------------------------------------------------------------------*/
.kt_hanrei{
	text-align:right;
}
.kt_hanrei p{
	display: inline-block;
	width: 5em;
	line-height: 1.6em;
	vertical-align: middle;
	text-align: center;
	border-radius: 3px;
	margin-left: 5px;
	padding-top: 0.2em;
}


/*---------------------------------------------------------------------------
 地域別一覧表テーブル
----------------------------------------------------------------------------*/
table.pref_list{
	width: 100%;
	margin: 0;
	margin: 20px auto 50px auto;

}

table.pref_list th{
	width: 18%;
	font-size: 110%;
	font-weight: bold;
}

table.pref_list td{
	padding: 0.5em;
}

table.pref_list td.point1{
	width: 18%;
	text-align: center;
}

table.pref_list td.ktmark{
	width: 64%;
}


/*---------------------------------------------------------------------------

　台風情報

----------------------------------------------------------------------------*/
.typhoon{
	width: 100%;
	margin: 0px 0px 0px auto;
}

	/*---------------------------------------------------
	 画面幅901px以上（タブレット横・PC）
	---------------------------------------------------*/
	@media screen and (min-width:901px){
	.typhoon{
		display: flex;
	}
	}

.typhoon .typh_img{
	position: relative;
}

	/*---------------------------------------------------
	 画面幅901px以上（タブレット横・PC）
	---------------------------------------------------*/
	@media screen and (min-width:901px){
	.typhoon .typh_img{
		width: 65%;
		text-align : right;
		margin-right: 20px;
	}

	.typhoon .typh_list{
		width: 35%;
	}
	}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	.typhoon .typh_img{
		margin-bottom: 20px;
	}

	.typhoon .typh_list{
		width: 100%;
	}
	}

.typhoon .typh_img > img{
	max-width: 100%;
	border: 1px solid #939393;
}

/* 台風情報表 */
table.typh_data{
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px solid #939393;
	line-height: 1.5; /* 行間 */
	text-align: center;
	margin: 0px 0px 20px auto;
}

/* 台風未発生コメント */
.typhoon .typh_img > p{
	position: absolute;
	top: 350px;
	left: 50%;
	transform: translate(-50%, -50%);
	font-weight: bold;
	font-size: 200%;
	color: rgb(0, 0, 0, 0.5);
	white-space: nowrap;
}


table.typh_data th {
	background-color: #ebebeb;
	font-weight: normal;
}

/* 各台風表内 */
table.typh_data th,
table.typh_data td{
	border: 1px solid #939393;
	border: 1px solid #939393;
	padding-top: 3px;
}

table.typh_data td p{
	position: relative;
}

table.typh_data td.typh_no{
	font-size: 130%;
	color: #fff;
	background-color: var(--primary-color);
}

table.typh_data td.typh_date,
table.typh_data td.typh_lv{
	font-size: 110%;
}

table.typh_data td.title{
	width: 45%;
	background-color: #eee;
}

table.typh_data td.data{
	width: calc(55% - 1em);
	text-align : right;
	padding-right: 1em;
}


/*---------------------------------------------------------------------------

 地震

---------------------------------------------------------------------------*/
.earthquake{
	margin: 0em auto;
}

	/*---------------------------------------------------
	 画面幅901px以上（タブレット横・PC）
	---------------------------------------------------*/
	@media screen and (min-width:901px){
	.earthquake{
		width: 85%;
	}
	} /* 追加ここまで */


	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){
	.earthquake{
		width: 100%;
	}
	} /* 追加ここまで */


.earthquake .earthq_now{
	text-align: right;
}

p.btn{
	display: inline-block;
	font-size: 90%;
	border-radius: 3px;
	border: 1px solid #939393;
	line-height: 1em;
	text-align: center;
	margin: 0.5em 0em 0.5em 0em;
	padding: 0.5em 1em 0.4em 1em;
}

.earthquake img{
	width: 100%;
	border: 1px solid #939393;
}


/* 凡例 */
.earthq_ex{
	text-align: right;
	margin-top: 5px;
}

.earthq_ex ul li{
	display: inline-block;
	text-align: center;
}

.earthq_ex ul li.ex{
	width: 22px;
	height: 22px;
	line-height: 22px;
	font-size: 14px;
	border-radius: 50%;
	border: 1px solid #000;
	margin-left: 5px;
}
.earthq_ex ul li.ex span{
	font-size: 0.8em;
	vertical-align: top;
}

.earthq_ex ul li.exx{
	width: 24px;
	height: 24px;
	line-height: 24px;
	font-size: 20px;
	font-weight: bold;
	color: rgb(255,  40,  0, 1);
	margin-left: 10px;
}
.earthq_ex ul li.exs{
	width: 3em;
	height: 24px;
	line-height: 24px;
	font-size: 18px;
	color: #000;
}


/* 地震情報表 */
table.earthq_data,
table.earthq_point{
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px solid #939393;
	margin: 20px auto;
}

table.earthq_data td,
table.earthq_point td{
	border: 1px solid #939393;
	border: 1px solid #939393;
	padding-top: 6px;
	padding-bottom: 5px;
}

table.earthq_data td.title{
	width: 40%;
	background-color: #eee;
	text-align: center;
}

table.earthq_data td.data{
	width: calc(60% - 1em);
	padding-left: 1em;
}
/* 地震震度表 */
table.earthq_point td.lv{
	width: 10%;
	text-align: center;

}

table.earthq_point td.point{
	width: 15%;
	background-color: #eee;
	text-align: center;
}

table.earthq_point td.data{
	width: calc(75% - 1em);
	padding-left: 1em;
}

/***************************************************************************

  フッター設定

*****************************************************************************/
footer{
	display: block;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
}

/*---------------------------------------------------------------------------
  ロゴ
-----------------------------------------------------------------------------*/
#footer_area{
	max-width: var(--large_w);
	display: flex;
	align-items: center;
	margin: 0px auto;
	padding: 50px 0px;
}

	/*---------------------------------------------------
	 画面幅901px以上（タブレット横・PC）
	---------------------------------------------------*/
	@media screen and (min-width:901px){

	/*フッター直下の1つ目ブロック（ロゴやSNSアイコンが入ったブロック）*/
	#footer_area div:nth-of-type(1) {
		width: 40%;
	}

	/*フッター直下の２つ目ブロック（メニューブロック）*/
	#footer_area div:nth-of-type(2) {
		display: flex;
		flex: 1;
		width: 60%;
		gap: 2rem;	/*このブロック内の直下のブロック同士に空ける余白。４文字分。*/
	}
	}

	/*---------------------------------------------------
	 画面幅900px以下（タブレット縦・スマートフォン）
	---------------------------------------------------*/
	@media screen and (max-width:900px){

	#footer_area{
		display: block;
		width: 90%;

	}

	#footer_area div:nth-of-type(1),
	#footer_area div:nth-of-type(2){
		display: block;
		width: 100%;
	}
	}

#footer_area p.logo{
	width: 50%;
	margin-bottom: 20px;
}

/* 各種ソーシャルメディアアイコン
---------------------------------------------------------------------------*/
#footer_area .icons {
	display: flex;
	justify-content: flex-start;
	list-style: none;
	gap: 1rem;	/*アイコン同士のマージン的な要素。１文字分。*/
	margin: 0px 0px 30px 0px;
	padding: 0px;
}

.icons i {
	font-size: 30px;	/*アイコンサイズ*/
}

/*---------------------------------------------------------------------------
  フッターメニュー
-----------------------------------------------------------------------------*/
#footer_menu a {
  text-decoration: none; /* 通常時は下線を非表示 */
}

#footer_menu a:hover {
  text-decoration: underline; /* ホバー時に下線を表示 */
}

#footer_menu ul{
	display:inline-block;
	list-style: none;
}

#footer_menu li.sub{
	font-size: 80%;
	margin-bottom: 0.5em;
	margin-left: 2em;
}

#footer_menu li.sub > a{
	display:inline-block;
	border-left: 1px solid #767676;
	padding: 0em 1em;
}

#footer_menu li.sub > a:last-child{
	border-right: 1px solid #767676;
}

/*---------------------------------------------------------------------------
  連絡先
-----------------------------------------------------------------------------*/
#footer_address{
	max-width: var(--large_w);
	font-size: 90%;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	margin: 00px auto 0 auto;
	padding: 20px 20px ;
}

#footer_address span{
	font-size: 70%;
}

/*---------------------------------------------------------------------------
  コピーライト
-----------------------------------------------------------------------------*/
#footer_copy{
	max-width: var(--large_w);
	font-size: 70%;
	line-height: 1;
	margin: 00px auto 0 auto;
	padding: 10px 20px;
}

footer ul {
	margin: 0;padding: 0;list-style: none;
	margin-bottom: 2rem;
}





/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
.pr a {
	text-decoration: none;
	display: block;
	background: rgba(0,0,0,0.9);
	font-size: 0.7rem;
	text-align: right;
	padding: 0.2rem 1rem;
	color: #ccc;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: bold;
	margin-right: 0.5em;
}


/*c2（２カラムレイアウト用）
---------------------------------------------------------------------------*/

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

	.c2 {
		display: flex;
		gap: 2rem;
	}

	/*左側のタイトルブロックの幅*/
	.c2 .title {
		width: 30%;
	}

	/*右側のテキストブロック*/
	.c2 .text {
		flex: 1;
	}

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


/*FAQ
---------------------------------------------------------------------------*/

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

	.faq {
		font-size: 1.2rem;	/*文字サイズを120%*/
	}

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

/*質問*/
.faq dt {
	display: flex;
	align-items: flex-start;
	border-radius: 3px;		/*角を少しだけ丸く*/
	margin-bottom: 1rem;	/*下に空けるスペース。質問ブロック同士の余白です。*/
	background: var(--base-color);		/*背景色。冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	padding: 1rem;	/*ブロック内の余白。１文字分。*/
}

/*「Q」アイコン*/
.faq dt::before {
	font-family: "Font Awesome 6 Free";
	content: "\51";	/*アイコン画像の指定*/
	margin-right: 0.5rem;	/*右側に空けるスペース*/
	background: var(--primary-inverse-color);	/*背景色。冒頭のprimary-inverse-colorを読み込みます。*/
	color: var(--primary-color);				/*文字色。冒頭のprimary-colorを読み込みます。*/
	border-radius: 50%;	/*角を丸くする*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
	flex-shrink: 0;
	margin-top: 0.2em;	/*微調整*/
}

/*回答*/
.faq dd {
	padding: 0 1rem 1rem 3.7rem;	/*ボックス内の余白。上、右、下、左への順番。*/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}



/*bg-primary-color
---------------------------------------------------------------------------*/
.bg-primary-color {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}


/*bg1
---------------------------------------------------------------------------*/
.bg1 {
	background-color: var(--base-inverse-color);	/*背景色。冒頭のbase-inverse-colorを読み込みます。*/
	color: var(--base-color);	/*文字色。冒頭のbase-colorを読み込みます。*/
}


/*bg2
---------------------------------------------------------------------------*/
.bg2 {
	background: #f3f3e9;	/*背景色*/
}


/*bg3
---------------------------------------------------------------------------*/
.bg3 {
	background: #fff;	/*背景色*/
}



/*ボックス下部を三角形（▼）にする場合。三角形の高さ自体はmask-imageのd=の中にある２つの「95」という数値で変更できます。小さいほど角度が大きくなります。
---------------------------------------------------------------------------*/
/*.arrow {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L100,0 L100,95 L50,100 L0,95 Z' fill='%23000000'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
}

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

	/*三角形の高さの再設定。95を90に変更しています。*/
/*	.arrow {
		mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L100,0 L100,90 L50,100 L0,90 Z' fill='%23000000'/%3E%3C/svg%3E");
		padding-bottom: 150px;
	}
	

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


/*背景色が切れているのが見えないように微調整*/
/*.arrow + section {
	padding-top: calc(var(--space-large) + 150px);
	margin-top: -150px;
}*/


/*list-grid-simple（制作実績ブロック）
---------------------------------------------------------------------------*/
.list-grid-simple .list * {margin: 0;padding: 0;}

/*listブロック全体を囲むブロック*/
.list-grid-simple {
    display: grid;
    grid-template-columns: repeat(2, 1fr);	/*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
    gap: 3rem;	/*ブロックの間に空けるマージン的な指定*/
}

/*ボックス１個あたり*/
.list-grid-simple .list {
    display: grid;
	position: relative;
}

/*h4見出し*/
.list-grid-simple .list h4 {
	margin-top: 0.5rem;		/*上に0.5文字分のスペースを空ける*/
	font-weight: normal;	/*太さを標準に*/
}

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

	/*listブロック全体を囲むブロック*/
	.list-grid-simple {
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
	}

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


/*list-grid1（３カラムボックス）
---------------------------------------------------------------------------*/
.list-grid1 .list * {margin: 0;padding: 0;}

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

	/*listブロック全体を囲むブロック*/
	.list-grid1 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 3vw;	/*ブロックの間に空けるマージン的な指定*/
	}

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


/*ボックス１個あたり*/
.list-grid1 .list {
    display: grid;
	margin-bottom: 3rem;	/*ボックスの下に空けるスペース*/
	position: relative;
	border-radius: 5px;	/*角を少しだけ丸く*/
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
	box-shadow: 2px 5px 5px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅。0,0,0は黒のことで0.1は色が10%出た状態。*/
	padding: 2rem;	/*ボックス内の余白。２文字分。*/
}

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

	/*ボックス１個あたり*/
	.list-grid1 .list {
		margin-bottom: 0;	/*下に空けるスペースをなくす*/
	}

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


/*bg-black内のボックスへの追加設定*/
.list-grid1 .list.bg-black {
	background: #111;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*ナンバー（01〜03の飾り番号）*/
.list-grid1 .list .num {
	position: absolute;
	left: -20px;		/*左からの配置場所。マイナスがつくので本来とは逆向きに移動。*/
	top: -30px;			/*上からの配置場所。マイナスがつくので本来とは逆向きに移動。*/
	font-size: 60px;	/*文字サイズ*/
	line-height: 1;
	font-family: "MonteCarlo", cursive;	/*フォント指定*/
	opacity: 0.2;	/*透明度。色を20%出す。*/
}

/*引用符（“）の装飾*/
.list-grid1 .list h4.kazari::before {
	content: "“";	/*わかりづらいですが、中央にあるのが引用符でこの文字を出力しています。*/
	position: absolute;
	left: -1rem;	/*左からの配置場所。マイナスがつくので本来とは逆向きに移動。*/
	top: -40px;		/*上からの配置場所。マイナスがつくので本来とは逆向きに移動。*/
	opacity: 0.2;	/*透明度。色を20%出す。*/
	font-size: 60px;	/*文字サイズ*/
	line-height: 1;
}

/*ボックス内のh4見出し*/
.list-grid1 .list h4 {
	font-size: 1.4rem;	/*文字サイズを140%に*/
	line-height: 1.6;	/*行間*/
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける*/
	position: relative;
}

/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 0.9rem;	/*文字サイズを90%に*/
	line-height: 1.6;	/*行間*/
	font-weight: normal;
}

/*bg-black内のp要素への追加設定*/
.list-grid1 .list.bg-black p {
	color: #999;	/*文字色*/
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure.icon {
	margin: 0 auto;
	width: 100px;		/*画像サイズ*/
	margin-top: -40px;	/*本来の場所より上にずらす*/
}

/*bg1内のfigureへの追加設定*/
.bg1 .list-grid1 .list figure.icon {
	filter: grayscale(100%) brightness(90%);	/*画像をグレースケールにし、明るさも少し暗くする。そのままの画像色を出したければこの１行を削除。*/
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける*/
}

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

	/*ボックス内のfigure画像*/
	.list-grid1 .list figure.icon {
		width: 150px;		/*画像サイズ*/
		margin-top: -50px;	/*本来の場所より上にずらす*/
	}

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



/*list-c2（お問い合わせ、資料請求）
---------------------------------------------------------------------------*/
.list-c2 > a {
    text-decoration: none;
    display: block;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	/*２つのボックスを囲むボックス*/
	.list-c2 {
		display: flex;	/*横並びにする*/
		gap: 2vw;		/*ブロックの間に空けるマージン的な指定*/
	}

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


/*ボックス１個あたり*/
.list-c2 .list {
	text-align: center;
	position: relative;
	overflow-y: hidden;
	color: #fff;		/*文字色*/
	text-shadow: 0px 0px 10px rgba(0,0,0,0.6);	/*テキストの影。右へ、下へ、ぼかす量、0,0,0は黒のことで0.6は色が出た状態。*/
	padding: 5rem 2rem;	/*上下、左右へのボックス内の余白*/
	margin: 1rem 0;		/*上下、左右へのマージン*/
	border-radius: 30px;	/*角を丸くする指定*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	.list-c2 > * {
		flex: 1;
	}
	.list-c2 .list {
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.list-c2 > a .list {
		height: 100%;
	}
	
	/*1つ目のボックス（お問い合わせ）*/
	.list-c2 .list:nth-of-type(1) {
		border-radius: 0px 30px 30px 0px;	/*角丸の上書き。左上、右上、右下、左下への順番。*/
	}
	
	/*2つ目のボックス（資料請求）*/
	.list-c2 .list:nth-of-type(2) {
		border-radius: 30px 0px 0px 30px;	/*角丸の上書き。左上、右上、右下、左下への順番。*/
	}
	
	}/*追加指定ここまで*/


/*左側ボックスの背景*/
.list-c2 .list.image1 {
	background: url("../images/bg_contact.jpg") no-repeat center center / cover;
}

/*右側ボックスの背景*/
.list-c2 .list.image2 {
	background: url("../images/bg_request.jpg") no-repeat center center / cover;
}

/*h4見出し*/
.list-c2 h4 {
	line-height: 1.2;	/*行間を狭く*/
	font-family: "Jost", sans-serif;	/*フォント指定*/
	font-optical-sizing: auto;
	font-weight: 300;	/*フォントの太さ。100〜900の間で指定が可能。大きいほど太くなります。*/
}

/*h4見出し内のメインテキスト（main-text）*/
.list-c2 h4 .main-text {
	display: block;
	font-size: 3rem;		/*文字サイズ。3倍。*/
	padding-top: 1.5rem;	/*上に空ける余白*/
	padding-bottom: 3rem;	/*下に空ける余白*/
}

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

	.list-c2 h4 .main-text {
		font-size: 4rem;	/*文字サイズ。4倍。*/
	}

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


/*テキスト*/
.list-c2 .list .text {
	position: relative;z-index: 1;
	font-size: 0.85rem;	/*文字サイズ85%*/
}

/*マウスオン用のアニメーション*/
.list-c2 .list::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.6);		/*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
	transition: transform 0.3s 0.1s;	/*アニメーションの速度（0.3秒）と待機時間（0.1秒）。*/
}
.list-c2 .list:hover::before {
	transform: translateY(100%);	/*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}


/*背景画像が少しずつ上に移動する
---------------------------------------------------------------------------*/
/*ブロック全体*/
.bg-slideup {
	margin-left: calc(-1 * var(--space-large));
	margin-right: calc(-1 * var(--space-large));
}

section > .bg-slideup:first-child {
/*	margin-top: calc(-1 * var(--space-large));*/
}

/*画像ボックス*/
.bg-slideup .image {
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	padding: 10vw 20px;	/*上下、左右へのボックス内の余白。画面幅100% = 100vwです。*/
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 3rem;		/*英語テキストと日本語テキストの間のスペース。３文字分。*/
	color: #fff;	/*文字色*/
}

/* 英語テキスト */
.en-text {
	writing-mode: horizontal-tb;
	font-size: 0.8rem;	/*文字サイズ80%*/
}

/* 日本語テキスト */
.jp-text {
	writing-mode: vertical-rl;
	text-orientation: upright;
}

/*制作実績ブロックの画像指定*/
#products .bg-slideup .image {
	background-image: url("../images/bg_works.jpg");	/*背景画像の指定*/
}

/*会社概要ブロックの画像指定*/
#company .bg-slideup .image {
	background-image: url("../images/bg_company.jpg");	/*背景画像の指定*/
}


/*list-normal1（「お客様の声」「制作の流れ」ブロックで使用）
---------------------------------------------------------------------------*/
.list-normal1 * {margin: 0;padding: 0;}

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

	/*テキストブロック*/
	.list-normal1 .text {
		flex: 1;
	}
	
	/*画像とテキストの左右を入れ替えたい場合（600px以上のみ使用可能）*/
	.reverse {
		flex-direction: row-reverse;
		background-position: left bottom !important;
	}
	
	}/*追加指定ここまで*/


/*ブロック１個あたり*/
.list-normal1 .list {
	background: var(--base-color) url("../images/bg-dot.png") no-repeat right bottom / 200px;
	color: var(--base-inverse-color);	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	padding: 3rem;
	margin-bottom: 2rem;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
	position: relative;
}

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

	/*ブロック１個あたり*/
	.list-normal1 .list {
		display: flex;
		gap: 2rem;	/*画像とテキストの間のスペース。２文字分。画像がない場合はこれは適用されません。*/
	}
	
	}/*追加指定ここまで*/


/*画像ブロック*/
.list-normal1 figure {
	width: 30%;	/*幅*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
}

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

	/*画像の下マージンのリセット*/
	.list-normal1 figure {
		margin-bottom: 0;
	}

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


/*h4見出し*/
.list-normal1 h4 {
	font-size: 1.2rem;	/*文字サイズ200%*/
	line-height: 1.5;	/*行間*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
}

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

	.list-normal1 h4 {
		font-size: 2rem;	/*文字サイズ200%*/
		line-height: 1.8;	/*行間*/
	}

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


/*h4内にアイコンを配置した場合（制作の流れの見出し左のアイコン）*/
.list-normal1.flow h4 i {
	margin-right: 1rem;	/*アイコンとテキストとの間の余白*/
}

/*名前*/
.list-normal1 .name {
	text-align: right;	/*右寄せ*/
	margin-top: 1rem;	/*上に空けるスペース*/
}

/*制作の流れで使用しているブロック間の「▼」の矢印*/
.list-normal1.flow .list::after {
	content: "▼";	/*このテキストを出力します*/
	position: absolute;
	left: 50%;		/*左からの配置場所。厳密ではありませんが、文字が小さいので問題ないかと。*/
	bottom: -2rem;	/*下からの配置場所。マイナスがつくので本来の場所とは逆向きに移動。*/
	transform: scaleX(1.5);	/*横幅を150%に*/
	opacity: 0.5;			/*透明度。色が50%出た状態。*/
}

/*最後のボックスだけ下矢印を出さない*/
.list-normal1.flow .list:last-child::after {
	content: none;
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 0.5rem 1rem;	/*ボックス内の余白*/
	background: var(--base-inverse-color);	/*背景色*/
	color: var(--base-color);				/*文字色*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;				/*幅*/
	border-top: 1px solid #ccc;	/*テーブルの一番上の線。幅、線種、色*/
	margin-bottom: 2rem;		/*テーブルの下に空けるスペース。２文字分。*/
}
/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #ccc;	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 td, .ta1 th {
	word-break: break-all;
	background: var(--base-color);		/*背景色。冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	text-align: left;	/*左よせにする*/
	padding: 0.5rem;	/*余白*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 25%;			/*幅*/
	text-align: center;	/*テキストをセンタリング*/
}


/*テーブル（プラン）　※基本的な設定は上のta1で設定
---------------------------------------------------------------------------*/
.ta1.plan, .ta1.plan td, .ta1.plan th {
	text-align: center;
	border: 2px solid var(--base-inverse-color);	/*テーブルの枠線の幅、線種、varは色のことで冒頭のbase-inverse-colorを読み込みます*/
	padding: 0.5rem;
}

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

	.ta1.plan, .ta1.plan td, .ta1.plan th {
		font-size: 1.2rem;
		padding: 2rem 1rem;
	}

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


/*一番左側の縦列の幅*/
.ta1.plan th:first-child,
.ta1.plan td:first-child {
    width: 12rem;	/*目安としては約12文字分。*/
}

/*１行目のプランブロック*/
.ta1.plan th {
	width: auto;
	position: relative;
	overflow: hidden;
}

/*１行目のプランブロック内の「おすすめ」表示*/
.ta1.plan th .osusume {
	position: absolute;
	left: 0px;
	top: 0px;
	background: #ff0000;	/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 0.8rem;		/*文字サイズ80%*/
	width: 120px;
	text-align: center;
	padding-top: 43px;
	padding-bottom: 2px;
	transform: rotate(-45deg) translate(-18px, -60px);
}

/*１行目のプランブロック内のアイコン（王冠マーク）*/
.ta1.plan th i {
	display: block;
	font-size: 1.4rem;	/*サイズ*/
}

/* 左から2つ目の「エコノミープラン」の見出し（th）に背景色を設定 */
.ta1.plan th:nth-child(2) {
	background: #fffcda;
}
/* 左から2つ目の「エコノミープラン」の列（td）に背景色を設定 */
.ta1.plan td:nth-child(2) {
	background: #fffcda;
}

/* 左から３つ目の「スタンダードプラン」の見出し（th）に背景色を設定 */
.ta1.plan th:nth-child(3) {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}
/* 左から３つ目の「スタンダードプラン」の列（td）に背景色を設定 */
.ta1.plan td:nth-child(3) {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}

/* 左から４つ目の「プレミアムプラン」の見出し（th）に背景色を設定 */
.ta1.plan th:nth-child(4) {
	background: #fffcda;
}
/* 左から４つ目の「プレミアムプラン」の列（td）に背景色を設定 */
.ta1.plan td:nth-child(4) {
	background: #fffcda;
}

/*１行目の金額*/
.plan th > span {
	display: block;
	font-size: 1.6rem;	/*文字サイズを160%*/
	font-family: "Oswald", sans-serif;	/*フォント指定*/
	font-optical-sizing: auto;
	font-weight: 700;	/*太さ。200〜900まで指定できます。数値が大きいほど太くなる。*/
}

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

	/*１行目の金額*/
	.plan th > span {
		font-size: 2.4rem;	/*文字サイズを240%*/
	}

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


	/*画面幅800px以下の追加指定*/
	@media screen and (max-width:800px) {

	.scroll .ta1.plan {width: 700px;}
	.scroll {overflow-x: auto;}

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


/*調整用スタイル
---------------------------------------------------------------------------*/
.padding0 {
	padding: 0 !important;
}
.padding-lr0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}


/*マニュアルページ用
---------------------------------------------------------------------------*/
#manual #container {
	all: unset;
}
.manual {
	background: #fff;
	color: #333;
	padding: 5vw;
}
.manual .look {background: #eee;}
.manual h2 {
	margin-top: 2rem;
	font-size: 2rem;
	text-align: center;
}
.manual h3 {
	line-height: 3;
	margin-top: 2rem;
}
.manual h3 span {
	background: linear-gradient(transparent 60%, yellow);
}
.manual h3 + p {margin-top: -0.5rem;}
.manual.margin-left {padding-left: 300px;}

	/*画面幅999px以下の追加指定*/
	@media screen and (max-width:999px) {

	.manual.margin-left {padding-left: 4vw;}

	}/*画面幅900px以上の追加指定ここまで*/


/*その他
---------------------------------------------------------------------------*/
.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;}
.mb-space-large {margin-bottom: var(--space-large) !important;}
.look {line-height: 1.5 !important; display: inline-block;padding: 5px 10px;background: rgba(0,0,0,0.1);border: 1px solid rgba(0,0,0,0.3);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;}
.inline-block {display: inline-block !important;}
.relative {position: relative;}
.marker {background: linear-gradient(transparent 50%, yellow);}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}

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

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

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


/*==========================================================================

  [↑] TOPへ戻る

============================================================================*/
@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;
	z-index: 100;
	position: fixed;
	width: 50px;
	line-height: 50px;
	bottom: 50px;
	right: 3%;
	background: #000;
	background: rgba(0,0,0,0.6);
	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;
}

