html {
	font-size: 62.5%;
}
body {
	font-family: "source-han-sans-japanese", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.header_top {
	position: fixed;
	top: 0;
	display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
	justify-content:space-between;
	width: 100%;
	padding-bottom: 1%;
	background: #fff;
	z-index: 99;
}
.header_top_left {
	width: 350px;
	margin: .5% 0 0 2%;
}
.header_top_left a {
	display: block;
	width: 100%;
}
@media screen and (max-width: 480px) {
	.header_top_left {
	width: 300px;
	margin: 3% 0 0 3%;
}
}
.header_top_left a img {
	display: block;
	width: 100%;
}
.header_top_right {
	margin: 2.4% 2% 0 0 ;
	width: 500px;
}
.header_top_right nav {
	width: 100%;
}
.header_top_right nav ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}
.header_top_right nav ul li a {
	font-size: 1.6rem;
	color: #000;
	text-decoration: none;
	padding: 8px 12px;
	transition: color 0.2s;
}

.header_top_right nav ul li a:hover {
	color: #004a80; /* ホバー色 */
}

.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 28px;
	height: 22px;
	cursor: pointer;
	z-index: 4000;
	position: relative;
}

.hamburger span {
	display: block;
	height: 3px;
	width: 100%;
	background: #333;
	border-radius: 2px;
	transition: all 0.3s ease;
}

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

	.header_top_right {
		width: auto;
		margin-right: 0;
		position: relative;
	}

	/* ハンバーガー表示 */
	.hamburger {
		display: flex;
		position: fixed;
		top: 20px;
		right: 20px;
		background: #fff;
		padding: 10px;
		border-radius: 6px;
		box-shadow: 0 2px 8px rgba(0,0,0,0.1);
		z-index: 4000;
	}

	/* バツアイコンに変形 */
	.hamburger.active span:nth-child(1) {
		transform: rotate(45deg) translate(6px, 6px);
	}
	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}
	.hamburger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -7px);
	}

	/* メニュー（右からスライド） */
	#nav-menu {
		position: fixed;
		top: 0;
		right: -260px;
		width: 250px;
		height: 100vh;
		background: #339B4E;
		color: #fff;
		box-shadow: -2px 0 8px rgba(0,0,0,0.2);
		transition: right 0.3s ease;
		z-index: 3000;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding-top: 80px; /* バツボタンとの被り防止 */
		border-radius: 0 0 0 8px;
	}

	#nav-menu.active {
		right: 0;
	}

	#nav-menu ul {
		list-style: none;
		margin: 0;
		padding: 0;
		width: 100%;
	}

	#nav-menu ul li {
		border-bottom: 1px solid rgba(255,255,255,0.15);
		width: 100%;
	}

	#nav-menu ul li a {
		display: block;
		padding: 16px 20px;
		color: #fff;
		text-decoration: none;
		font-size: 1.6rem;
		font-weight: 500;
		transition: background 0.3s ease;
		width: 100%;
	}

	#nav-menu ul li a:hover {
		background: rgba(255,255,255,0.1);
	}
}
header {
	margin-top: 80px;
	padding: 17rem 0;
	background-image: url("../images/header_img.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.header_h1_01 {
	display: block;
	width: 410px;
	margin: 0 auto 1rem;
	padding: 1rem 0;
	font-size: 3rem;
	text-align: center;
	color: #fff;
	background: #F89C1C;
	font-feature-settings: "palt";
	letter-spacing: .2rem;
}
.header_h1_02 {
	display: block;
	margin: 0 auto;
	padding: .5rem 1rem;
	font-size: 5.4rem;
	font-weight: 700;
	text-align: center;
	color: #fff;
	text-shadow: 3px 3px 0 #000;
	line-height: 130%;
}
.header_bottom {
	padding: 1rem 0;
	font-weight: 700;
	font-size: 3rem;
	text-align: center;
	color: #F99E1C;
	background: #FEE8CB;
}
@media screen and (max-width: 900px) and (min-width: 481px) {
	header {
	margin-top: 80px;
	padding: 10rem 0;
}
.header_h1_01 {
	display: block;
	width: 300px;
	margin: 0 auto 1rem;
	padding: 1rem 0;
	font-size: 2rem;
}
.header_h1_02 {
	font-size: 3.2rem;
	text-shadow: 2px 2px 0 #000;
}
.header_bottom {
	padding: .8rem 0;
	font-size: 1.6rem;
}
}
@media screen and (max-width: 480px) {
	header {
	margin-top: 80px;
	padding: 18rem 0;
	background-image: url("../images/header_img_sp.jpg");
}
.header_h1_01 {
	display: block;
	width: 300px;
	margin: 0 auto 1rem;
	padding: 1rem 0;
	font-size: 2rem;
}
.header_h1_02 {
	font-size: 2.6rem;
	text-shadow: 2px 2px 0 #000;
}
.header_bottom {
	padding: .6rem 0;
	font-size: 1.6rem;
	line-height: 130%;
}
}
.sharoshi_about {
	padding: 5rem 0;
}
.sharoshi_about h2 {
	font-weight: 700;
	font-size: 3rem;
	text-align: center;
	color: #F99E1C;
	line-height: 150%;
}
@media screen and (max-width: 900px) and (min-width: 481px) {
.sharoshi_about {
	padding: 2.5rem 0;
}
	.sharoshi_about h2 {
	font-size: 2.5rem;
}
}
@media screen and (max-width: 480px) {
.sharoshi_about {
	display: block;
	width: 90%;
	margin: 0 auto;
	padding: 2rem 0;
}
	.sharoshi_about h2 {
	font-size: 2rem;
}
}
.sharoshi_tetsuzuki {
	display: block;
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
}
.sharoshi_tetsuzuki_title h2 {
	padding: 1rem 0;
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	background: #29A2DB;
	color: #fff;
}
.sharoshi_tetsuzuki_title p {
	margin: 2rem 0;
	font-size: 1.8rem;
	text-align: center;
}
.sharoshi_tetsuzuki_box {
	display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
	justify-content:space-between;
	margin: 5rem auto 0;
}
.sharoshi_tetsuzuki_box_block {
	width: 48%;
	border: 2px solid #29A2DB;
}
.sharoshi_tetsuzuki_box_block h3::before {
	content: '';
	position: absolute;
	bottom: 3px;
	left: 0;
	width: 60px;
	height: 60px;
	margin: auto;
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
}
.sharoshi_tetsuzuki_box_block01 h3::before {
	background-image: url("../images/icon01.png");
	right: 300px;
}
.sharoshi_tetsuzuki_box_block02 h3::before {
	background-image: url("../images/icon02.png");
	right: 300px;
}
.sharoshi_tetsuzuki_box_block h3 {
	position: relative;
	padding: 1rem 0;
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
	background: #29A2DB;
	color: #fff;
}
.sharoshi_tetsuzuki_box_block p {
	margin: 1rem 2rem;
	font-size: 1.8rem;
	line-height: 200%;
}
.sharoshi_tetsuzuki_box_block p span {
	display: block;
	font-size: 1.4rem;
	color: #707070;
}
@media screen and (max-width: 900px)  {

.sharoshi_tetsuzuki_title h2 {
	font-size: 2rem;
}
.sharoshi_tetsuzuki_title p {
	font-size: 1.6rem;
}
.sharoshi_tetsuzuki_box {
	margin: 5rem auto 0;
}
.sharoshi_tetsuzuki_box_block {
	width: 100%;
	margin-bottom: 5rem;
	border: 2px solid #29A2DB;
}
.sharoshi_tetsuzuki_box_block h3::before {
	width: 50px;
	height: 50px;
}
.sharoshi_tetsuzuki_box_block01 h3::before {
	right: 250px;
}
.sharoshi_tetsuzuki_box_block02 h3::before {
	right: 250px;
}
.sharoshi_tetsuzuki_box_block h3 {
	font-size: 1.8rem;
}
.sharoshi_tetsuzuki_box_block p {
	font-size: 1.6rem;
}
}
.sharoshi_nayami {
	display: block;
	width: 90%;
	max-width: 1280px;
	margin: 10rem auto 0;
}
.sharoshi_nayami_title h2 {
	padding: 1rem 0;
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	background: #8BC63E;
	color: #fff;
}
.sharoshi_nayami_title p {
	margin: 2rem 0;
	font-size: 1.8rem;
	text-align: center;
}
.sharoshi_nayami_box {
	width: 100%;
	border: 2px solid #8BC63E;
	margin: 5rem auto 0;
}
.sharoshi_nayami_box h3::before {
	content: '';
	position: absolute;
	bottom: 3px;
	left: 0;
	right: 330px;
	width: 60px;
	height: 60px;
	margin: auto;
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	background-image: url("../images/icon03.png");
}
.sharoshi_nayami_box h3 {
	position: relative;
	padding: 1rem 0;
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
	background: #8BC63E;
	color: #fff;
}
.sharoshi_nayami_box p {
	margin: 1rem 2rem;
	font-size: 1.8rem;
	line-height: 200%;
}
.sharoshi_nayami_box p span {
	display: block;
	font-size: 1.4rem;
	color: #707070;
}
@media screen and (max-width: 900px) {
	
.sharoshi_nayami {
	margin: 5rem auto 0;
}
.sharoshi_nayami_title h2 {
	font-size: 2rem;
}
.sharoshi_nayami_title p {
	font-size: 1.6rem;
}
.sharoshi_nayami_box h3::before {
	width: 50px;
	height: 50px;
	right: 280px;
}
.sharoshi_nayami_box h3 {
	font-size: 1.8rem;
}
.sharoshi_nayami_box p {
	font-size: 1.6rem;
}
}
.sharoshi_flow {
	display: block;
	width: 90%;
	max-width: 1280px;
	margin: 10rem auto 0;
}
.sharoshi_flow h2::before {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -20px;
	margin: auto;
	content: '';
	width: 70px;
	height: 3px;
	background: #F99E1C;
}
.sharoshi_flow h2 {
	position: relative;
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	color: #F99E1C;
}
.sharoshi_flow img {
	display: block;
	width: 90%;
	max-width: 1100px;
	margin: 5rem auto 0;
}
@media screen and (max-width: 900px) {
.sharoshi_flow {
	margin: 10rem auto 0;
}
.sharoshi_flow h2::before {
	width: 50px;
	height: 2px;
}
.sharoshi_flow h2 {
	font-size: 2rem;
}
.sharoshi_flow img {
	width: 100%;
}
}
.sharoshi_tsuyomi {
	display: block;
	width: 90%;
	max-width: 1280px;
	margin: 10rem auto 0;
}
.sharoshi_tsuyomi h2::before {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -20px;
	margin: auto;
	content: '';
	width: 70px;
	height: 3px;
	background: #29A2DB;
}
.sharoshi_tsuyomi h2 {
	position: relative;
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	color: #29A2DB;
}
.sharoshi_tsuyomi p {
	display: block;
	width: 80%;
	margin: 5rem auto 0;
	font-size: 1.8rem;
	line-height: 200%;
}
@media screen and (max-width: 900px) {
	
.sharoshi_tsuyomi {
	margin: 10rem auto 0;
}
.sharoshi_tsuyomi h2::before {
	width: 50px;
	height: 2px;
}
.sharoshi_tsuyomi h2 {
	font-size: 2rem;
}
.sharoshi_tsuyomi p {
	font-size: 1.6rem;
}
}
.sharoshi_contact {
	display: block;
	position: relative;
	width: 90%;
	max-width: 1280px;
	margin: 10rem auto;
	border: 3px solid #F99E1C;
}
.sharoshi_contact h2 {
	position: absolute;
	display: inline-block;
	width: 300px;
	top: -13px;
	left: 0;
	right: 0;
	margin: auto;
	padding: 0 1rem;
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
	color: #F99E1C;
	background: #fff;
}
.sharoshi_contact h3 {
	margin: 5rem 0 2rem;
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	color: #F99E1C;
}
.sharoshi_contact_p01 {
	font-size: 1.8rem;
	text-align: center;
}
.sharoshi_contact_p02 {
	margin: 2rem 0;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	color: #F99E1C;
}
.sharoshi_contact_p02 span {
	margin-right: 1rem;
	padding: .2rem 1rem;
	font-size: 1.8rem;
	color: #fff;
	background: #F99E1C;
}
.sharoshi_contact_p03 {
	display: block;
	width: 90%;
	max-width: 600px;
	margin: 0 auto 5rem;
	font-size: 1.6rem;
	color: #707070;
	line-height: 180%;
}
@media screen and (max-width: 900px) and (min-width: 481px) {
.sharoshi_contact h2 {
	font-size: 2rem;
}
.sharoshi_contact h3 {
	font-size: 2rem;
}
.sharoshi_contact_p01 {
	font-size: 1.6rem;
}
.sharoshi_contact_p02 {
	margin: 2rem 0;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	color: #F99E1C;
}
}
@media screen and (max-width: 480px) {
	
.sharoshi_contact h3 {
	font-size: 1.8rem;
}
.sharoshi_contact_p01 {
	display: block;
	width: 90%;
	margin: 0 auto;
	font-size: 1.6rem;
	line-height: 130%;
}
.sharoshi_contact_p02 {
	margin: 2rem 0;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	color: #F99E1C;
}
}
copy {
	display: block;
	padding: .3rem 0;
	text-align: center;
	font-size: 1.3rem;
	color: #fff;
	background: #707070;
}