@charset "utf-8";

:root{
  --wrap: 1200px;
  --page_margin: 60px;
  /* --color: #1C7E89; */
  --color: #0ca278;
  /* --color: #895541; */
  /* --color2: #0d5861; */
  --color2: #067e5c;
  /* --color2: #744532; */
  --color3: #F38200;
  --radius: 10px;
}


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



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


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

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

.l_footer a{
  color: #333!important;
}

.l_footer a: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;
}