@charset "utf-8";

:root{
  --wrap: 1140px;

  --color: #333399;
  --color2: #F27A13;
  --color3: #2751AF;
  --color4: #132F6E;
  --color5: #005399;

  --rec_menu_bg: #003663f5;
}


/*----------------------------------------------
	html
---------------------------------------------*/
html {
  font-size: 62.5%;
  scroll-padding-top: 100px!important;
}

html:has(.c_nav_type02){
  scroll-padding-top: 150px!important;
}



/*----------------------------------------------
	body
---------------------------------------------*/
body {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', arial, helvetica, sans-serif;
  color: #333;
  line-height: 1.5;
}


/*----------------------------------------------
	a
---------------------------------------------*/
a {
  color: var(--color3);
  text-decoration: none;
  transition: 0.2s;
  text-decoration-color: var(--color3);
}
a:hover,
a:active,
a:focus {
  color: var(--color3);
  opacity: 0.7;
}

a img{
  transition: 0.2s;
}
a img:hover{
  opacity: 0.7;
}


/*----------------------------------------------
	table
---------------------------------------------*/
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*----------------------------------------------
	h1,h2,h3,h4,h5,h6
---------------------------------------------*/
h1,h2,h3,h4,h5,h6{ margin: 0; }

/*----------------------------------------------
	img
---------------------------------------------*/
img {
  vertical-align: bottom;
  max-width: 100%;
}

/*----------------------------------------------
	*
---------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}