@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');

/*全体設定
---------------------------------------------------------------------*/
html {
	-webkit-text-size-adjust: none; /* iOSで自動拡大を防ぐ */
	-moz-text-size-adjust: none; /* Android Firefox */
	-ms-text-size-adjust: none; /* IE/Edge */
	text-size-adjust: none; /* その他 */
}

body {
	font-family: sans-serif;
	font-size: 32px;
	margin-top: -50px;
	width: 100%;
	margin: auto;
}

.center-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.center-align {
	text-align: center;
	margin-top: 20px;
}

.info-ico {
	margin-top: 0em;
	margin-right: 0.5em;
	width: 300px;
}

h1 {
	line-height: 1.2;
	display: flex;
	align-items: center;
	margin-left: 50px;
	margin-top: 50px;
	gap: 2px; /* 文字と画像の間隔 */
}

/*TOPページ タイトル背景
------------------------------------------------------------------------*/
.header-container {
	background-color: #385723; /* 濃い緑 */
	color: white;
	text-align: center;
	padding: 20px 0px;
	margin: 0 auto;
	position: relative; /* 画像の絶対位置指定のため追加 */
	overflow: visible; /* はみ出た画像が見えるように */
}

.header-container2 {
	background-color: #FFF2CC; /* クリーム色 */
	margin: 0 auto;
}

.header-img {
	position: absolute;
	margin: 0;
	z-index: 1;
}

.yorijii-img {
	height: 13vw;
}

.woman-img {
	height: 16vw;
}

	/*画面幅1020px以下の追加指定
	------------------------------------------------------------------------*/
	@media screen and (max-width:1020px) {
		h1 {
			margin-left: 4.9vw;
			margin-top: 4.9vw;
			gap: 1.96vw;
		}

		.header-container {
			padding: 1.96vw 0px;
		}

		.yorijii-img {
			height: 13vw;
		}

		.woman-img {
			height: 16vw;
		}
	}
	/*
	-------------------------------------------------------------------------
	画面幅1020px以下の追加設定ここまで*/


/*TOPページの遷移ボタン
------------------------------------------------------------------------*/
.orange-button {
	display: inline-block;
	border: none;
	background-color: #ff8c00;
	color: white;
	padding: 15px 10px;
	margin: 0;
	text-decoration: none;
	border-radius: 10px;
	font-weight: bold;
}

.orange-button:hover {
	filter: brightness(0.9);
	cursor: pointer;
}

	/*画面幅1020px以下の追加指定
	------------------------------------------------------------------------*/
	@media screen and (max-width:1020px) {
		.orange-button {
			padding: 1.47vw 0.98vw;
			border-radius: 0.98vw;
		}
	}
	/*
	-------------------------------------------------------------------------
	画面幅1020px以下の追加設定ここまで*/


/*吹き出し＋画像の設定
---------------------------------------------------------------------*/
.section {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin: 40px auto 40px auto;
	position: relative;
}

/*bubble1 よりじい吹き出し
---------------------------------------------------------------------*/
.bubble1 {
	background-color: #e0f0d9;
	border: 2px solid #3B5525;
	border-radius: 10px;
	padding: 25px 10px 25px 30px;
	margin-top: 50px;
	margin-left: 50px;
	position: relative;
}

/* 吹き出しの三角部分（左側） */
.bubble1::before {
	content: "";
	position: absolute;
	top: 10px;
	left: -20px; /* 三角が大きくなる分、位置を調整 */
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 20px solid #385723; /* ← 枠の色＆幅を広げた */
}

.bubble1::after {
	content: "";
	position: absolute;
	top: 11px;
	left: -16px;
	width: 0;
	height: 0;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	border-right: 18px solid #e0f0d9; /* ← 背景色＆幅広く */
}


/*bubble2 女性吹き出し
---------------------------------------------------------------------*/
.bubble2 {
	background-color: #fbe5d6;
	border: 2px solid #ed7d31;
	border-radius: 10px;
	padding: 25px 20px 25px 10px;
	margin-right: 10px;
	margin-top: 30.6px;
	position: relative;
	text-align: right;
}

/* 吹き出しの三角部分（右側） */
.bubble2::before {
	content: "";
	position: absolute;
	top: 10px;
	right: -20px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 20px solid #ed7d31;
}

.bubble2::after {
	content: "";
	position: absolute;
	top: 11px;
	right: -16px;
	width: 0;
	height: 0;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	border-left: 18px solid #fbe5d6;
}

	/*画面幅1020px以下の追加指定
	------------------------------------------------------------------------*/
	@media screen and (max-width:1020px) {
		.section {
			margin: 3.92vw auto 3.92vw auto;
		}

		.bubble1 {
			border: 0.196vw solid #3B5525;
			border-radius: 0.98vw;
			padding: 2.45vw 0.98vw 2.45vw 2.94vw;
			margin-top: 5vw;
			margin-left: 5vw;
		}

		/* 吹き出しの三角部分（左側） */
		.bubble1::before {
			top: 0.98vw;
			left: -1.96vw; /* 三角が大きくなる分、位置を調整 */
			border-top: 0.98vw solid transparent;
			border-bottom: 0.98vw solid transparent;
			border-right: 1.96vw solid #385723; /* ← 枠の色＆幅を広げた */
		}

		.bubble1::after {
			top: 1.07vw;
			left: -1.56vw;
			border-top: 0.88vw solid transparent;
			border-bottom: 0.88vw solid transparent;
			border-right: 1.76vw solid #e0f0d9; /* ← 背景色＆幅広く */
		}


		/*bubble2 女性吹き出し
---------------------------------------------------------------------*/
		.bubble2 {
			border: 0.19vw solid #ed7d31;
			border-radius: 0.98vw;
			padding: 2.45vw 1.96vw 2.45vw 0.98vw;
			margin-right: 0.98vw;
			margin-top: 3vw;
			position: relative;
			text-align: right;
		}

		/* 吹き出しの三角部分（右側） */
		.bubble2::before {
			content: "";
			position: absolute;
			top: 0.98vw;
			right: -1.96vw;
			width: 0;
			height: 0;
			border-top: 0.98vw solid transparent;
			border-bottom: 0.98vw solid transparent;
			border-left: 1.96vw solid #ed7d31;
		}

		.bubble2::after {
			content: "";
			position: absolute;
			top: 1.07vw;
			right: -1.56vw;
			width: 0;
			height: 0;
			border-top: 0.88vw solid transparent;
			border-bottom: 0.88vw solid transparent;
			border-left: 1.76vw solid #fbe5d6;
		}
	}
	/*
	-------------------------------------------------------------------------
	画面幅1020px以下の追加設定ここまで*/


/* ＼サクッとかんたん／
------------------------------------------------------------------------*/
.slash-box {
	position: relative;
	display: inline-block;
	padding: 5px 50px 20px 50px;
	font-weight: 500;
}

.slash-box::before,
.slash-box::after {
	content: "";
	position: absolute;
	background-color: black;
	top: auto;
	margin-top: -10px;
}

/* ＼の線（左上→右下） */
.slash-box::before {
	left: 0;
	transform: rotate(-25deg);
	transform-origin: top left;
}

/* ／の線（右上→左下） */
.slash-box::after {
	right: 0;
	transform: rotate(25deg);
	transform-origin: top right;
}

	/*画面幅1020px以下の追加指定
	------------------------------------------------------------------------*/
	@media screen and (max-width:1020px) {
		.slash-box {
			padding: 0.49vw 4.9vw 1.96vw 4.9vw;
		}

		.slash-box::before,
		.slash-box::after {
			margin-top: -1vw;
		}
	}
	/*
	-------------------------------------------------------------------------
	画面幅1020px以下の追加設定ここまで*/


/*TOPページ 注意事項
------------------------------------------------------------------------*/
.note-box {
	border: 4px solid #9c6c3a; /* 茶色い枠線 */
	padding: 10px 20px 10px 20px;
	background: #fff;
	margin: 50px auto 100px auto;
}

.note {
	color: #e60000; /* 赤文字 */
	margin-top: 0;
	margin-bottom: 0;
	font-weight: bold;
}

.note-text {
	
}

	/*画面幅1020px以下の追加指定
	------------------------------------------------------------------------*/
	@media screen and (max-width: 1020px) {
		.note-box {
			border: 0.4vw solid #9c6c3a; /* 茶色い枠線 */
			padding: 0.98vw;
			background: #fff;
			margin: 4.9vw auto 9.8vw auto;
		}
	}
	/*
	-------------------------------------------------------------------------
	画面幅1020px以下の追加設定ここまで*/


/*共通設定
------------------------------------------------------------------------*/
span.font-red {color: red; font-weight: bold;}
.mt0 {margin-top: 0 !important;}

/*pannding-leftで全体を1字下げ、text-indexで1文字上げる*/
.indent1-1 {margin: 0; padding: 0 0 0 1em; text-indent: -1em; word-break:break-all;}

/* PC */
.font-pc {

}

/* タブレット横 */
.font-tablet-landscape {
	
}

/* タブレット縦 */
.font-tablet-portrait {
	
}

/* スマホ横 */
.font-mobile-landscape {
	
}

/* スマホ縦 */
.font-mobile-portrait {
	
}


/*Footer
------------------------------------------------------------------------*/
#footer .jabank {
	padding: 2.5em 0 1em;
	color: #fff;
	font-size: 0.75rem;
	text-align: center;
	background-image: -webkit-gradient(linear, left top, right top, from(#37b600), to(#008b00));
	background-image: -webkit-linear-gradient(left, #37b600, #008b00);
	background-image: linear-gradient(to right, #37b600, #008b00);
}

	#footer .jabank .logo {
		margin: 0 auto .25rem;
		max-width: 270px;
		display: block;
		overflow: hidden;
		color: transparent;
		text-decoration: none;
		text-indent: 110%;
		white-space: nowrap;
		font-size: 0;
	}

		#footer .jabank .logo::before {
			display: block;
			content: "";
			padding-top: 11.11111%;
			background: transparent url(../img/img_footer_logo.png) no-repeat center center;
			background-size: contain;
		}