@charset "utf-8";

/*//////////////////////////////////////////////////////////////////////////////

	共通

//////////////////////////////////////////////////////////////////////////////*/


/*------------------------------------------------------------------------------

	変数

------------------------------------------------------------------------------*/

:root {
	--main-color: 50,50,50;
	--theme-color: 70,100,140;
}


/*------------------------------------------------------------------------------

	image replacement

------------------------------------------------------------------------------*/

#content > footer .logo {
	display: block;
	overflow: hidden;
	outline: none;
	clear: both;
	text-indent: -9999px;
	white-space: nowrap;
	background-repeat: no-repeat;
	background-size: contain;
}


/*------------------------------------------------------------------------------

	全体

------------------------------------------------------------------------------*/

/*	site_column
------------------------------------------------------------------------------*/

.site_column {
	position: relative;
	margin: 0 auto;
	width: 86%;
	max-width: 1200px;
}

body.contents .site_column {
	max-width: 900px;
}


/*	body・textarea・input
------------------------------------------------------------------------------*/

body,
textarea,
input,
select {
	line-height: 1.8;
	font-family: YuGothic,"游ゴシック","メイリオ",Meiryo,sans-serif,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,verdana,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	font-size: 16px;
	font-weight: 500;
	color: rgba(51,51,51,1);
  	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
}

textarea,
input,
select {
	-webkit-appearance: none;
}

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

body,
textarea,
input  {
	font-size: 14px;
}

}

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

body,
textarea,
input {
	font-size: 3.2vw;
}

}


/*	見出し
------------------------------------------------------------------------------*/

h1,h2,h3,h4,h5,h6 {
	line-height: 1.4;
}

/*	アンカー
------------------------------------------------------------------------------*/

a,
a:hover,
a:visited {
	outline: none;
	text-decoration: none;
	color: rgba(var(--main-color),1);
}

a {
	transition: opacity .4s;
}

a:hover {
	text-decoration: none;
	opacity: .4;
	transition: color .4s;
}

main a,
main a:visited {
	text-decoration: underline;
}

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

a:hover {
	opacity: 1;
}

a[href^="tel:"] {
	text-decoration: underline;
}

}

@media screen and (min-width: 768px){
	
a[href^="tel:"] {
	pointer-events: none;
	text-decoration: none;
	color: #333;
}

a[href^="tel:"]:hover {
	cursor: default;
	opacity: 1;
}

}


/*	リスト
------------------------------------------------------------------------------*/

main ol,
main ul {
	margin: 1em 0 1em 1.5em;
}

main ul {
	list-style: disc;
}

main ol {
	list-style: decimal;
}

main li {
	margin-bottom: .5em;
	line-height: 1.4;
}


/*	テーブル
------------------------------------------------------------------------------*/

table {
	width: 100%;
}

th,
td {
	line-height: 1.6;
}

th {
	font-weight: bold;
}


/*	その他
------------------------------------------------------------------------------*/

em {
	font-style: normal;
}

figcaption {
	margin-top: .5em;
	text-align: center;
	font-size: .875em;
}

img {
	vertical-align: bottom;
}

address {
	font-style: normal;
}


/*	共通設定
------------------------------------------------------------------------------*/

main p,
main dd {
	margin-bottom: .5em;
	text-align: justify;
}

main li:last-child,
main p:last-of-type,
main dd:last-of-type {
	margin-bottom: 0;
}


/*	独自class
------------------------------------------------------------------------------*/

.note {
	margin-left: 0;
}

.note li {
	display: block;
	position: relative;
	padding-left: 1em;
	font-size: .875em;
}

.note li::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}

.l {
	display: block;
}

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

.l {
	display: inline;
}

}

/*------------------------------------------------------------------------------

	header

------------------------------------------------------------------------------*/

#content > header {
	padding: 3em 0;
	margin-bottom: 3em;
	background-color: rgba(var(--theme-color),1);
}

#content > header h1 {
	font-size: 2em;
	color: #FFF;
	font-weight: bold;
	text-align: center;
}

@media screen and (max-width: 767px) {
	
#content > header h1 {
	font-size: 5vw;
}
	
}


/*------------------------------------------------------------------------------

	main

------------------------------------------------------------------------------*/

main .form_end {
	padding: 5em 1em;
	text-align: center;
}


/*------------------------------------------------------------------------------

	#form

------------------------------------------------------------------------------*/

#form .title {
	margin: 1em 0 .5em;
	font-weight: bold;
}

#form .explanation {
	margin-bottom: 3em;
	padding: 3em;
	background-color: rgba(var(--theme-color),.1);
}

#form .explanation dl {
	margin-bottom: 2em;
}

#form .explanation dt {
	color: rgba(var(--theme-color),1);
	font-weight: bold;
	margin-bottom: 1em;
	padding: .25em 1em;
	border-top: 1px solid rgba(var(--theme-color),.5);
	border-bottom: 1px solid rgba(var(--theme-color),.5);
	background-color: rgba(255,255,255,.5);
}

#form .explanation dl:last-child {
	margin-bottom: 0;
}

#form .explanation table {
	margin: 1em 0;
	width: 100%;
	border-collapse: separate;
	border-spacing: 2px;
	font-size: .875em;
}

#form .explanation th,
#form .explanation td {
	padding: .5em 1em;
}

#form .explanation th {
white-space: nowrap;
	font-weight: bold;
	text-align: center;
	background-color: rgba(var(--theme-color),.35);
}

#form .explanation td {
	background-color: rgba(var(--theme-color),.1);
}

@media screen and (max-width: 767px) {
	
#form .explanation {
	padding: 5.5vw;
}
	
}



/*------------------------------------------------------------------------------

	footer

------------------------------------------------------------------------------*/

#content > footer {
	margin: 3em 0 0;
	padding: 2em 0;
	background-color: rgba(var(--theme-color),1);
}

#content > footer #access,
#content > footer #access a {
	color: #FFF;
}

#content > footer #copy {
	text-align: center;
	font-size: .75em;
	color: #FFF;
}


/*	 page_top
------------------------------------------------------------------------------*/

#page_top {
    position: fixed;
	right: 3vw;
    bottom: 3vw;
	z-index: 1000;
	width: 10vw;
	height: 10vw;	
	max-width: 60px;
	max-height: 60px;
    transition: opacity .6s;
	background-color: #FFF;
	opacity: 0;
}

.moved #page_top {
	opacity: .7;
}

#page_top a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(var(--main-color),1);
	text-decoration: none;
	cursor: default;
}

.moved #page_top a {
	cursor: pointer;
	opacity: 1;
}

#page_top a::after {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%,-50%)  rotate(45deg);
	content: "";
	display: block;
	width: 30%;
	height: 30%;
	border-top: 1px solid #FFF;
	border-left: 1px solid #FFF;
}

