@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&family=Shippori+Mincho+B1&display=swap');

:root {
	--content-width:800px;
	--content-width-wide: 1280px;
	--maincolor-gry: #7F95A0;
	--maincolor-gry2: #eee;
	--maincolor-wht: #fff;
	--maincolor-yel: #FFF100;
	--maincolor-grn:#8FC31F;
	--fontcolor-p: #6c7279;
	--fontcolor-title: #3A6282;
	--color-shadow:rgba(0,0,0,0.3);
	--bg-yel:#fffbb6;
}

html.fixed body {
	overflow: hidden;
	-webkit-overflow-scrolling: auto;
	height: 100%
}

body {
	position: relative;
	font-weight:400;
	color:var(--fontcolor-p);
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiry;
}

p{
	font-size: 8px;
	font-size: 0.8rem;
	line-height: 1.5;
}

a {
	text-decoration: none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 1;
	transition: .2s;
	color: var(--fontcolor-p);
	border-bottom: 2px dotted var(--fontcolor-p);
}

a:hover {
	opacity: 0.6;
  transition: .2s;
}

dl,
dt,
dd {
  box-sizing: border-box;
}

img{width: 100%; max-width: 980px;}

/* Heading
----------------------------------------------------*/
h1,h2,h3,h4,h5,h6{color:var(--fontcolor-title);font-weight:500;text-transform: uppercase; line-height: 1.2; font-family: 'Zen Maru Gothic', sans-serif;}

h1 {
	font-size: 13px;
	font-size: 1.3rem;
}

h2 {
	font-size: 22px;
	font-size: 2.1rem;
}

h3 {
	font-size: 18px;
	font-size: 1.8rem;
}

h4 {
	font-size: 16px;
	font-size: 1.6rem;
}

h5 {
	font-size: 12px;
	font-size: 1.2rem;
	letter-spacing: 0.05em;
}

h6 {
		font-size: 8px;
		font-size: 0.8rem;
		letter-spacing: 0.2em;
}

@media screen and (max-width: 670px){


}

@media screen and (max-width: 480px){
	p {
		font-size: 5px;
		font-size: 0.75rem;
	  }
}

/* Header
----------------------------------------------------*/
header {
	width: 100%;
	position: relative;
}


/* Contents
----------------------------------------------------*/
main {
	width: 100%;
	position: relative;
	text-align:center;
	padding: 0;
}

section {
	width: 100%;
	position: relative;
	padding:40px 0;
}

.sectionHeader,.sectionContents {
	position: relative;
	max-width: var(--content-width);
	margin:0 auto;
	padding:20px 30px;
}
.sectionHeader.wide,
.sectionContents.wide {
	max-width: var(--content-width-wide);
}



@media screen and (max-width: 670px){

.sectionHeader,.sectionContents {
	width: 100%;
	padding:20px 15px;
}
}


/* Footer
----------------------------------------------------*/
footer {
	width: 100%;
	position: relative;
}

.gfContents {
	position: relative;
	max-width: var(--content-maxW);
	margin:0 auto;
	padding:0 30px;
}


/* Input,Select,Textarea
----------------------------------------------------*/
input[type="text"],
input[type="password"],
select,
textarea {
	font-size: 16px;
	font-family: "Noto Sans Japanese";
	font-weight: 600;
	padding: 11px 10px;
	width: 100%;
	background: #FFF;
	border: 1px solid #D3D4D5;
	border-radius: 5px;
	box-shadow: 0 1px 1px rgba(3,4,5,0.2) inset;
}

textarea {
	min-height: 180px;
	resize: vertical;
	display: block;
}

textarea:focus {
	outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #939495;
}
