@charset "utf-8";

.indent {
	padding-left: 1em;
}

/*---------------------------------------------------------------------- table.general. --*/

table.general {
	width: 100%;
	background: #fff;
}

table.general th, table.general td {
	padding: 10px 0;
	border: 1px solid #ddd;
	text-align: center;
}

table.general th {
	background: #f0f0f0;
}

table.general td {
	width: 50%;
}

/*---------------------------------------------------------------------- img.full --*/

img.full {
	width: 100%;
	max-width: 100%;
	height: auto;
}

/*---------------------------------------------------------------------- .page_navi --*/

.page_navi {
	display: flex;
	margin-bottom: 15px;
}

.page_navi a {
	font-size: 13px;
}

.page_navi li:first-of-type a {
	color: var(--theme);
	text-decoration: underline;
}

.page_navi li:first-of-type i::before {
	content: '\f015';
	margin-right: 5px;
	color: var(--theme);
}

.page_navi li:nth-of-type(n + 2)::before {
	content: '>';
	margin: 0 5px 0 10px;
}

/*---------------------------------------------------------------------- .list --*/

dl.list {
	display: flex;
	flex-wrap: wrap;
}

dl.list dt {
	width: 25%;
	padding: 15px 0 15px 30px;
	border-bottom: 1px dotted #444;
	font-family: YuGo-B;
}

dl.list dd {
	width: 75%;
	padding: 15px 0 15px 50px;
	border-bottom: 1px dotted #444;
}

dl.list dt:nth-of-type(2n), dl.list dd:nth-of-type(2n) {
	/*background: #fff;*/
}

dl.list dt:last-of-type, dl.list dd:last-of-type {
	padding-bottom: 0;
	border: 0;
}

@media (width <= 767px) {
	dl.list dt {
		width: 100px;
		padding: 15px 0 15px 5px;
	}
	
	dl.list dd {
		width: calc(100% - 100px);
		padding: 15px 0 15px 15px;
	}
			
	dl.list * {
		font-size: 0.9rem;
	}
}

@media (width <= 400px) {
	dl.list dt {
		width: 90px;
	}
	
	dl.list dd {
		width: calc(100% - 90px);
	}
	
	dl.list * {
		font-size: 11px;
	}
}

/*---------------------------------------------------------------------- .underline --*/

a:not(.disabled).underline::after,
.underline a:not(.disabled)::after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--color);
}

@media (hover: hover) and (pointer: fine) {
	a:not(.disabled).underline:hover,
	.underline a:not(.disabled):hover {
		color: var(--hover);
	}
	
	a:not(.disabled).underline:hover::after,
	.underline a:not(.disabled):hover::after {
		background: var(--hover);
	}
}

/*---------------------------------------------------------------------- .hover_underline --*/

@media (hover: hover) and (pointer: fine) {
	a.hover_underline::after,
	.hover_underline a::after {
		content: '';
		position: absolute;
		bottom: -3px;
		left: 0;
		width: 0;
		height: 1px;
		background: var(--theme);
	}
	
	a.hover_underline:hover::after,
	.hover_underline a:hover::after {
		width: 100%;
	}
}

/*---------------------------------------------------------------------- .glass --*/

.glass {
	background: rgba(255, 255, 255, 0.33);
	box-shadow: 0 0 10px #ddd;
}

/*---------------------------------------------------------------------- .tasuki --*/

.tasuki, .tasuki_2, .tasuki_3 {
	position: relative;
	overflow: hidden;
}

.tasuki:before {
	content: '';
	display: block;
	position: absolute;
	top: 200px;
	left: -35%;

	width: 200%;
	height: 500px;
	transform: rotate(-20deg);

	background: linear-gradient(#f2f2f2, #eef);
	
	z-index: -1;
	opacity: 0.9;
}

.tasuki:after {
	content: '';
	display: block;
	position: absolute;
	top: 360px;
	left: -65%;

	width: 200%;
	height: 20px;
	transform: rotate(-20deg);

	background: linear-gradient(#f0f0f0, #f3f3f3);
	z-index: -1;
	opacity: 0.9;
}

.tasuki_2:before {
	content: '';
	display: block;
	position: absolute;
	top: 250px;
	left: -35%;

	width: 200%;
	height: 500px;
	transform: rotate(-20deg);

	background: linear-gradient(#f2f2f2, #ffffff);
	
	z-index: -1;
	opacity: 0.9;
}

.tasuki_2:after {
	content: '';
	display: block;
	position: absolute;
	top: 360px;
	left: -75%;

	width: 200%;
	height: 1000px;
	transform: rotate(20deg);

	background: linear-gradient(#fff, #eee);
	z-index: -2;
	opacity: 0.9;
}

.tasuki_3:before {
	content: '';
	display: block;
	position: absolute;
	top: 250px;
	left: -35%;

	width: 200%;
	height: 500px;
	transform: rotate(-20deg);

	background: linear-gradient(#f2f2f6, #f2f2f2);
	
	z-index: -1;
	opacity: 0.75;
}

.tasuki_3:after {
	content: '';
	display: block;
	position: absolute;
	top: 360px;
	left: -75%;

	width: 200%;
	height: 500px;
	transform: rotate(20deg);

	background: linear-gradient(#fafafa, #f0f0f6);
	z-index: -2;
	opacity: 0.9;
}

/*---------------------------------------------------------------------- .cover --*/

.cover {
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(/asset/image/general/cover_bg.jpg) center / cover;

	text-shadow: 0 0 10px rgba(50, 50, 50, 0.1);
	font-family: var(--serif);
	color: #222;
	letter-spacing: 1px;
}

@media (768px <= width) {
	.cover {
		padding: 65px 0 140px;
		font-size: 35px;
	}
}

@media (width <= 767px) {
	.cover {
		background: #15b2d1;
		font-family: YuGo-B;
		font-size: 1.25rem;
		color: #fff;
		line-height: 50px;
	}
}

/*---------------------------------------------------------------------- .section_title --*/

.section_title {
	background: #fff;
}

@media (768px <= width) {
	.section_title {
		position: relative;
		margin-bottom: 30px;
		padding: 20px 30px;
		border: 1px solid #ccc;
		font-size: 20px;
		line-height: 20px;
	}
	
	.section_title::after {
		content: '';
		position: absolute;
		top: 20px;
		left: 15px;
		width: 5px;
		height: 20px;
		border-radius: 100px;
		background: var(--theme);
	}
}

@media (width <= 767px) {
	.section_title {
		margin-bottom: 15px;
		padding: calc((50px - 1.25rem) / 2) 15px;
		border: 1px dotted #15b2d1;
		border-left: 5px solid #15b2d1;
		font-family: YuGo-B;
		font-size: 1.25rem;
		color: #15b2d1;
	}
}


/*---------------------------------------------------------------------- .two_row --*/

.two_row {
	display: flex;
	flex-wrap: wrap;
	margin-top: 15px;
}

.two_row div:not(h3) {
	text-align: center;
}

.two_row img {
	width: 100%;
}

.two_row img:not(.no_margin) {
	margin-bottom: 15px;
}

@media (768px <= width) {
	.two_row > div {
		width: calc((100% - 30px) / 2);
	}
	
	.two_row > div:nth-of-type(2n) {
		margin-left: 30px;
	}
	
	.two_row > div:nth-of-type(n + 3) {
		margin-top: 50px;
	}
}

@media (width <= 767px) {
	.two_row > div {
		width: 100%;
	}
	
	.two_row > div:nth-of-type(n + 2) {
		margin-top: 30px;
	}
}




ul.general {
	
}

ul.general li {
	padding: 15px 0;
	border-bottom: 1px dotted #aaa;
}

ul.general a {
	color: var(--blue);
}

ul.general div {
	margin-top: 5px;
}


h3 {
	margin-bottom: 15px;
	padding: 15px;
	background: #fffae0;
}




