@charset "Shift_JIS";

/*
	基礎となるstyle

*/

/* -----------------------------------------------
 html, body
-------------------------------------------------- */

* {
	box-sizing: border-box;
}

:root {
    --white: #fff;
	--black: #021220;
	--blue: #013f75;
	--lightblue: #e0eff9;
	--lightgray: #f5f6f7;
	--darkgray: #8797a2;
	--green: #0f683f;
	--pink: #cf4242;
}

html, body {
	margin: 0;
	font-feature-settings: "palt";
	letter-spacing: 1px;
	line-height: 1.75;
	color: var(--black);
	font-family: "BIZ UDPGothic","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	font-weight: normal;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
    background-color: var(--lightgray);
	position: relative;
}

b, strong, .bold{
	font-family: "BIZ UDPGothic","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
    font-weight: bold;
}

html a, body a {
	color: var(--black);
	text-decoration: none;
    display: block;
}

a:focus,button:focus,input:focus,select:focus,textarea:focus {
    outline-width: medium;
}


	/* -------------------------------------------
		html, body > SP
	--------------------------------------------- */
	@media (min-width:0px) {

		html, body {
			font-size: 14px;
		}

	}
	/* -------------------------------------------
		html, body > TABLET
	---------------------------------------------- */
	@media (min-width:768px) {

		html, body {
			font-size: 16px;
		}

	}
	/* -------------------------------------------
		html, body > PC
	---------------------------------------------- */
	@media (min-width:1024px) {

	}


/* -----------------------------------------------
  Layout
-------------------------------------------------- */
.inner,
.page-inner {
	margin-right: auto;
	margin-left: auto;
	max-width: 1200px;
}

#AreaContentsBase{
    background-color: var(--white);
	overflow: hidden;
}

	/* -------------------------------------------
		Layout > SP
	--------------------------------------------- */
	@media (min-width:0px) {

		#AreaContainer {
			padding: 5px 0 30px;
		}

		.inner {
			width: calc(100% - 2rem);
		}

		.page-inner {
			width: 100%;
		}

		#AreaContentsBase{
			padding: 20px 0;
		}

	}
	/* -------------------------------------------
		Layout > TABLET
	---------------------------------------------- */
	@media (min-width:768px) {

		#AreaContainer {
			padding: 30px 0 40px;
		}

		.inner,
		.page-inner {
			width: calc(100% - 4rem);
		}

		#AreaContentsBase{
			padding: 30px;
		}
		
	}
	/* -------------------------------------------
		Layout > PC
	---------------------------------------------- */
	@media (min-width:1024px) {

		.inner,
		.page-inner {
			width: 90%;
		}

	}

	
/*------------------------------
	そのほか
-------------------------------- */

ul {
    list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

h2, h3, h4, h5 {
	line-height: 1.4;
	font-weight: bold;
	display: block;
}

:hover {
	transition: all 0.3s;
}



/*=================================================
  tpath
=================================================*/

#tpath {
    padding: 5px 0 10px 0;
}

#tpath ol {
    font-size: 0.8em;
	line-height: 1.6;
    font-weight: bold;
    list-style: none;
    display: flex;
    flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}

#tpath ol li {
    display: inline-block;
}

#tpath ol li a::after{
    content: '>';
    display: inline-block;
    padding: 0 5px; /*左右に余白*/
}

