@charset "UTF-8";
/*--------------------------------------------------
http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
----------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}



ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*-------------------
フォント設定
---------------------*/
html {
  font-size: 13px;
	scroll-behavior: smooth;
}
body {
  line-height: 1.3;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: lighter;
}

/*:root {
  --px8: 0.6153rem;
  --px10: 0.769rem;
  --px11: 0.846rem;
  --px12: 0.923rem;
  --px13: 1rem;
  --px14: 1.077rem;
  --px15: 1.154rem;
  --px16: 1.231rem;
  --px17: 1.308rem;
  --px18: 1.385rem;
  --px19: 1.462rem;
  --px20: 1.538rem;
  --px21: 1.615rem;
  --px22: 1.692rem;
  --px23: 1.769rem;
  --px24: 1.846rem;
  --px25: 1.923rem;
  --px26: 2rem;
  --px27: 2.077rem;
  --px28: 2.154rem;
  --px29: 2.231rem;
  --px30: 2.308rem;
  --px31: 2.385rem;
  --px32: 2.462rem;
  --px33: 2.583rem;
  --px34: 2.615rem;
}*/

/*--------------
  セレクタ設定
----------------*/
/* <a> */
a {
  display: block;
  text-decoration: none;
  color: black;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	transition: 0.4s ;
}

a:hover {
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}

/*<img>
img {
  display: block;
}*/

/*<label>*/
label {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

label:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

/*
<input>
<textarea>
*/
input,
textarea {
  -webkit-appearance: none;
}

/*---------------
  color設定
-----------------*/
:root {
  /* マイナビメインテーマカラー */
  --mynavi-main: rgb(0,170,238);
  /* マイナビサブテーマカラー */
  --mynavi-sub: rgb(240,88,10);
}

/*---------------
    shadow
----------------*/
/* 外側 */
.shadow {
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.18);
}

/* 内側 */
.shadowInset {
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.18) inset;
}

/*---------------------*/
/*	clearfix 
/*---------------------*/
.clearfix:after { 
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden; 
} 
.clearfix {display: inline-block;} 

/* Hides from IE-mac \*/ 
* html .clearfix {height: 1%;} 
.clearfix {display: block;} 
/* End hide from IE-mac */

/*---------------------*/
/*	crossdevice 
/*---------------------*/
.pc_hidden{
		display: none;
	}
.sp_hidden{
		display: block;
	}
@media screen and (max-width:780px) {
	.sp_hidden{
		display: none;
	}
.pc_hidden{
		display: block;
	}
}