﻿@charset "utf-8";
/*
Created		2021/04/08
Last update	2021/04/08
Author		Hayashi Ryosuke
*/

html{
	font-size: 62.5%; /*フォント級数10px*/
}
body{
	padding: 0 0.5rem;
	/*max-width: 680px;*/
	max-width: 980px;
	margin: 0 auto;
}
/*
　UMIN ID　関連のヘッダCSS
　ヘッダ共通部分
*/
.top_header{
	display: grid;
	grid-template-areas: "title-img title-text menu";
	grid-template-columns: 90px 1fr 110px;
	/*background-color: rgb(255,255,200);*/
}
.header_link_flex{
	padding: 0;
}
.header_link_flex a{
	text-decoration: none;
}
@media only screen and (max-width : 500px) {
	.top_header{
		grid-template-areas:
		"title-img title-text"
		"menu menu";
		grid-template-columns: 90px 1fr;
	}
	.header_link_flex{
		display: flex;
		justify-content: flex-start;
	}
	.header_link_flex li{
		margin-right: 1rem;
	}
}
.grid-aria-a{
	grid-area: title-img;
}
.grid-aria-b{
	grid-area: title-text;
}
.grid-aria-c{
	grid-area:menu;
}
.header_link ol{
	list-style: none;
}
h1{
	font-size: 2.0rem;
	margin: 0;
	padding: .5rem 0 0 0 ;
}
@media only screen and (max-width : 500px) {
	.nav_br::after{
		content: "\A";
		white-space: pre ;
	}
}

/*
　取得選択メニューのCSS
　<div class="section-select--div">
*/


/*
　規約ページのCSS
　<div class="section-kiyaku--div">
*/
div.section-kiyaku--div{
	max-width: 680px;
	margin: 0 auto;
}
	.h1-label{
		border-bottom: double 4px rgb(50,50,250);
		margin-bottom: 1rem;
	}
	.h1-label p{
		font-size: 1.5rem;
		font-weight: bold;
		text-indent: 0;
	}
.section-kiyaku--div h2{
	font-size: 1.8rem;
	margin: 0;
	padding: .5rem 0 0 0 ;
}
.section-kiyaku--div h3{
	font-size: 1.4rem;
	margin: 0;
	padding: .5rem 0 0 0 ;
}
.section-kiyaku--div h4{
	font-size: 1.4rem;
	margin: 0;
	padding: .5rem 0 0 0 ;
}
.section-kiyaku--div p{
	margin: 0;
	padding: 0;
	text-indent: 1em;
}
.section-kiyaku--div ul{
	margin: 0 0 0 2rem;
	padding: 0;
}
.section-kiyaku--div li{
	margin: 0;
	padding: 0;
}
.section-kiyaku--div table,
.section-kiyaku--div tr,
.section-kiyaku--div td,
.section-kiyaku--div th{
	border-spacing: 0;
	border: 1px solid rgb(100,100,100);
}
.section-kiyaku--div th{
	background-color: rgb(230,230,240);
}
/*同意表示*/
	.agree{
		margin: 1rem;
		padding: 2rem;
		border: 2px solid rgb(100,100,255);
	}
	.agree p{
		font-size: 2rem;
		padding-top: 1rem;
	}
	.agree--a{
		display: none;
		padding:.5rem;
		margin: 2rem 1rem 1rem 2rem ;
	}
	.agree--a a{
		font-size: 3rem;
		border: 1px solid rgb(50,50,255);
		border-radius: 5px;
		padding:.5rem;
		box-shadow: 2px 2px 4px rgb(100,100,100,1);
		text-decoration: none;
	}
.section-kiyaku--div label{
	font-size: 2rem;
	margin-right: 2rem;
}
.section-kiyaku--div input[type="radio"]{
	width:20px;
	height:20px;
}

/*
	フッター共通部分
*/
footer{
	margin-top: 2rem;
	width: 100%;
}
footer img{
	width: 100%;
}
