@charset "UTF-8";
/* FlexStyleBox by　真夜 */

/*////////////////////////////////////////////////////////////////////////
General
-------*/

* {
/*box-sizing*/
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
/*transition*/
	-webkit-transition: .4s margin ease-out;
	-moz-transition: .4s margin ease-out;
	-ms-transition: .4s margin ease-out;
	-o-transition: .4s margin ease-out;
	transition: .4s margin ease-out;
}


html {
  	scroll-behavior: smooth; /*Smooth scroll(chrome only)*/
	font-size: 62.5%; /* 10px = 1rem */
}

body {
	color: #426579;
	font-family: "MyYuGothic-M", "YuGothic", "-apple-system", "blinkMacSystemFont", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-weight: 500;
	text-align: justify;
	line-height: 1.61;
	-webkit-text-size-adjust: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}



/* -------
	Link Style
------- */

a {
	color: #43abc9;
	text-decoration: none;
}

a:hover {
	color: #107896;
	-webkit-transition: 0.1s ease;
	-moz-transition: 0.1s ease;
	-o-transition: 0.1s ease;
	transition: 0.1s ease;
}

a:hover img {
	opacity: 0.7;
}


p a {
	text-decoration: underline;
}

p a:hover {
	text-decoration: none;
}