@charset "utf-8";

html {
	font-size: 62.5%;
	word-break: break-word;
	overflow-y: scroll;
}

body {
	font-size: 1.4rem;
	line-height: 1.5;
	font-family: "Noto Sans JP", sans-serif;
	color: #3f322f;
}

/* self add */

p {
	margin: 0;
}

ul {
	padding: 0;
	margin: 0;
}

li {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

a {
	text-decoration: none;
}

img {
	border: 0;
	max-width: 100%;
}

.inner {
	width: 90%;
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

.clear:after {
	display: block;
	content: "clear";
	width: 0;
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}

.f_orange {
	color: #ff7c00;
}

.content_txt {
	font-size: 1.6rem;
	line-height: 1.75;
}

.font20 {
	font-size: 2rem;
	font-weight: bold;
}

/* -------------------- header -------------------- */
header {
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	position: fixed;
	padding-bottom: 15px;
}

header.fixed {
	background-color: #fff4ea;
	box-shadow: 0 0 10px rgba(227, 122, 42, 0.35);
}

.header_content {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.logo {
	width: 349px;
	display: block;
	position: relative;
}

.logo_pc{
	display: block;
}
.logo_sp{
	display: none;
}

.header_contact {
	display: flex;
	align-items: center;
}

.header_contact_tel {
	margin-left: 10px;
}

nav {
	width: 100%;
	background-color: #ffffff;
	border-radius: 33px;
	padding: 10px 70px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.nav_list {
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.nav_list>li {
	width: auto;
	margin-right: 30px;
}

.nav_list>li>a {
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
	color: #3e3533;
	text-align: center;
	position: relative;
	padding: 5px 0;
	overflow: hidden;
}

.nav_list>li>a::before {
	content: "";
	position: absolute;
	width: 100%;
	left: -100%;
	height: 2px;
	bottom: 0;
	background-color: #ff7c00;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.d-menu {
	display: none;
}

/* -------------------- footer -------------------- */
footer {
	width: 100%;
	background-color: #412e2b;
	color: #FFFFFF;
	text-align: center;
	padding: 70px 0 30px;
}

footer a {
	color: #FFFFFF;
}

.footer_list {
	display: flex;
	justify-content: center;
	margin-bottom: 45px;
}

.footer_list>li {
	font-size: 1.8rem;
	font-weight: bold;
	margin-right: 70px;
}

.footer_list>li:last-of-type {
	margin-right: 0;
}

.footer_list>li>a {
	position: relative;
	overflow: hidden;
	display: block;
}

.copyright {
	font-size: 1.2rem;
}

.pagetop {
	display: none;
	display: block;
	position: fixed;
	right: 100px;
	bottom: 160px;
	cursor: pointer;
}

/* -------------------- common -------------------- */
.btn_common_wrap {
	width: 100%;
}

.btn_common {
	display: block;
	width: 324px;
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	color: #ffffff;
	padding: 18px 0;
	border-radius: 33px;
	position: relative
}

.btn_common_orange {
	background-color: #ff7c00;
}

.btn_common_blue {
	background-color: #008ece;
}

.btn_common_white {
	background-color: #ffffff;
	color: #412e2b;
}

.btn_common:hover::after,
.btn_submit:hover::after {
	transform: rotate(90deg);
}

.btn_common::after,
.btn_submit::after {
	content: "";
	width: 36px;
	height: 36px;
	background: url(../img/ico_btn_arrow_orange.png) no-repeat center center;
	background-size: cover;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.btn_common_white::after {
	background-image: url(../img/ico_btn_arrow_white.png);
}

.btn_common_white#prev {
	background-color: #aaaaaa;
}

.btn_common_white#prev::after {
	left: 15px;
	right: auto;
}

.btn_common_white#prev::after {
	background-image: url(../img/ico_btn_arrow_gray.png);
}

.btn_common_white#prev:hover::after {
	transform: rotate(-90deg);
}

.content {
	padding: 100px 0;
}

.ttl_h2 {
	margin-bottom: 60px;
}

.ttl_h2 img {
	display: block;
	margin: 0 auto;
}

/* -------------------- banner -------------------- */
.bnr_block {
	width: 280px;
	position: fixed;
	z-index: 99;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: #ffffff;
	border-radius: 20px 0 0 20px;
	box-shadow: 0 0 10px rgba(227, 122, 42, 0.35);
	padding: 0 15px 20px 15px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.bnr_block img {
	display: block;
	margin: 0 auto;
	position: relative;
	top: -24px;
}

.close_bnr{
	display: block;
	width: 25px;
	height: 25px;
	position: absolute;
	top: -10px;
	left: -10px;
}
.close_bnr img{
	top: 0;
}

.bnr_block .btn_common_wrap {
	margin-top: -12px;
}

.bnr_block .btn_common {
	font-size: 1.6rem;
	padding: 12px 0 12px 20px;
	border-radius: 24px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.bnr_block .btn_common::after {
	width: 29px;
	height: 26px;
	background: url(../img/ico_bnr_arrow_orange.png) no-repeat center center;
	left: 12px;
	right: auto;
}

.bnr_block .btn_common_blue {
	margin-top: 10px;
}

.bnr_block .btn_common_blue::after {
	background-image: url(../img/ico_bnr_arrow_blue.png);
}

@media only screen and (min-width:1200px) {

	.fade {
		-webkit-transition: .3s ease-in-out;
		-moz-transition: .3s ease-in-out;
		-o-transition: .3s ease-in-out;
		transition: .3s ease-in-out;
	}

	/* -------------------- header -------------------- */


	.header_contact a:hover {
		transform: translateY(-5px);
	}

	.nav_list>li>a::before {
		content: "";
		position: absolute;
		width: 100%;
		left: -100%;
		height: 2px;
		bottom: 0;
		background-color: #ff7c00;
		-webkit-transition: .3s ease-in-out;
		-moz-transition: .3s ease-in-out;
		-o-transition: .3s ease-in-out;
		transition: .3s ease-in-out;
	}

	.nav_list>li>a:hover::before {
		left: 0;
	}

	.nav_list>li a:hover {
		color: #ff7c00;
	}

	/* -------------------- footer -------------------- */


	.footer_list>li>a::before {
		content: "";
		position: absolute;
		width: 100%;
		left: -100%;
		height: 2px;
		bottom: 0;
		background-color: #ff7c00;
		-webkit-transition: .3s ease-in-out;
		-moz-transition: .3s ease-in-out;
		-o-transition: .3s ease-in-out;
		transition: .3s ease-in-out;
	}

	.footer_list>li>a:hover::before {
		left: 0;
	}

	.footer_list>li a:hover {
		color: #ff7c00;
	}

	.pagetop:hover {
		transform: translateY(-5px);
	}

	/* -------------------- common -------------------- */

	.btn_common:hover::after,
	.btn_submit:hover::after {
		transform: rotate(90deg);
	}

	.btn_common_white#prev:hover::after {
		transform: rotate(-90deg);
	}

}

@media only screen and (max-width:1024px) {
	.content_txt {
		font-size: 1.6rem;
		line-height: 1.75;
	}

	.font20 {
		font-size: 2rem;
		font-weight: bold;
	}

	/* -------------------- header -------------------- */
	header{
		padding-bottom: 0;
	}

	.logo {
		width: calc(100% - 200px);
		display: block;
		position: relative;
	}

	.header_contact {
		width: 140px;
		display: flex;
		align-items: center;
	}

	.header_contact a{
		width: 60px;
		height: 60px;
		border-radius: 10px;
		background-repeat: no-repeat;
		background-position: center center;
		background-color: #ff7c00;
		margin-right: 10px;
	}

	.header_contact a img{
		display: none;
	}

	.header_contact .header_contact_mail{
		background-image: url(../img/sp_mail.png);
	}

	.header_contact .header_contact_tel {
		background-image: url(../img/sp_tel.png);
		margin-left: 0;
	}

	nav {
		display: none;
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		border-radius: 0;
		padding: 0;
		border-top: 2px solid #ff7c00;
	}

	.nav_list {
		width: 100%;
		display: block;
	}

	.nav_list>li {
		width: auto;
		margin-right: 0;
		border-bottom: 2px solid #ff7c00;
	}

	.nav_list>li>a {
		text-align: left;
		padding: 20px 5%;
	}

	
	.d-menu {
		display: block;
		width: 60px;
	}

	.d-menu .panel-btn {
		display: block;
		width: 60px;
		height: 60px;
		background: #3c8dcb;
		position: relative;
		cursor: pointer;
		border-radius: 10px;
	}

	.d-menu .panel-btn-icon {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 36px;
		height: 4px;
		margin: -2px 0 0 -18px;
		background: #FFFFFF;
		transition: .2s;
	}

	.d-menu .panel-btn-icon:before,
	.d-menu .panel-btn-icon:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 36px;
		height: 4px;
		background: #FFFFFF;
		transition: .3s;
	}

	.d-menu .panel-btn-icon:before {
		margin-top: -12px;
	}

	.d-menu .panel-btn-icon:after {
		margin-top: 8px;
	}

	.d-menu .panel-btn .close {
		background: transparent;
	}

	.d-menu .panel-btn .close:before,
	.d-menu .panel-btn .close:after {
		margin-top: 0;
	}

	.d-menu .panel-btn .close:before {
		-ms-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	.d-menu .panel-btn .close:after {
		-ms-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
	/* -------------------- footer -------------------- */
	

	.footer_list>li {
		margin-right: 50px;
	}

	.pagetop {
		right: 40px;
	}

	/* -------------------- banner -------------------- */
	.bnr_block {
		width: 100%;
		position: fixed;
		right: auto;
		top: auto;
		left: 0;
		bottom: 0;
		transform: translateY(0);
		border-radius: 20px 20px 0 0;
		padding: 0 15px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.bnr_block img {
		top: -24px;
		margin: 0;
	}
	.close_bnr{
		right: 10px;
		left: auto;
	}
	.close_bnr img{
		top: 0;
	}

	.bnr_block .btn_common_wrap {
		width: calc(100% - 260px);
		margin-top: 0;
		display: flex;
		align-items: center;
	}
	.bnr_block .btn_common_blue {
		margin-top: 0;
		margin-left: 10px;
	}

}

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

	.content_txt {
		font-size: 1.4rem;
	}

	.font20 {
		font-size: 1.8rem;
	}

	/* -------------------- header -------------------- */

	.header_content {
		padding: 15px 0;
	}

	.logo {
		width: calc(100% - 140px);
	}

	.header_contact {
		width: 100px;
	}

	.header_contact a{
		width: 40px;
		height: 40px;
		border-radius: 5px;
		background-size: 28px;
	}

	.nav_list>li>a {
		padding: 15px 5%;
		font-size: 1.6rem;
	}
	
	.d-menu {
		width: 40px;
	}

	.d-menu .panel-btn {
		width: 40px;
		height: 40px;
		border-radius: 5px;
	}

	.d-menu .panel-btn-icon {
		width: 26px;
		height: 2px;
		margin: -1px 0 0 -13px;
	}

	.d-menu .panel-btn-icon:before,
	.d-menu .panel-btn-icon:after {
		width: 26px;
		height: 2px;
	}

	.d-menu .panel-btn-icon:before {
		margin-top: -8px;
	}

	.d-menu .panel-btn-icon:after {
		margin-top: 6px;
	}

	/* -------------------- footer -------------------- */
	footer {
		padding: 50px 0 20px;
	}

	.footer_list {
		margin-bottom: 20px;
		flex-wrap: wrap;
	}

	.footer_list>li {
		width: 32%;
		margin-right: 2%;
		font-size: 1.6rem;
		margin-bottom: 10px;
	}

	.footer_list>li:nth-of-type(3n) {
		margin-right: 0;
	}

	.pagetop {
		right: 20px;
		width: 40px;
	}

	/* -------------------- common -------------------- */

	.btn_common {
		width: 280px;
		font-size: 1.6rem;
		padding: 15px 0;
		border-radius: 25px;
	}

	.btn_common::after,
	.btn_submit::after {
		width: 30px;
		height: 30px;
		right: 15px;
	}

	.content {
		padding: 60px 0;
	}

	.ttl_h2 {
		margin-bottom: 40px;
	}

	.ttl_h2 img {
		width: 520px;
		max-width: 100%;
	}
	/* -------------------- banner -------------------- */
	
	.bnr_block .btn_common_wrap {
		display: block;
	}
	
	.bnr_block .btn_common {
		font-size: 1.4rem;
	}
	
	.bnr_block .btn_common::after {
		width: 24px;
		height: 22px;
		background-size: 100%;
	}
	
	.bnr_block .btn_common_blue {
		margin-top: 10px;
		margin-left: auto;
	}
	
}

@media only screen and (max-width: 600px) {
	/* -------------------- header -------------------- */
	.logo_pc{
		display: none;
	}
	.logo_sp{
		display: block;
	}
	/* -------------------- banner -------------------- */
	.bnr_block{
		padding: 10px;
	}

	.bnr_block img {
		width: 180px;
	}
	.bnr_block .btn_common_wrap {
		width: calc(100% - 200px);
	}
}

@media only screen and (max-width: 480px) {
	.font20 {
        font-size: 1.6rem;
    }
	/* -------------------- header -------------------- */

	.header_content {
		padding: 10px 0;
	}

	/* -------------------- footer -------------------- */

	.footer_list>li {
		width: 49%;
		font-size: 1.4rem;
	}

	.footer_list>li:nth-of-type(3n) {
		margin-right: 2%;
	}

	.footer_list>li:nth-of-type(2n) {
		margin-right: 0;
	}

	/* -------------------- banner -------------------- */

	.bnr_block img {
		width: 130px;
		display: block;
		top: 0;
	}
	.close_bnr{
		width: 20px;
		height: 20px;
		top: -15px;
	}
	.close_bnr img{
		top: 0;
	}

	.bnr_block .btn_common_wrap {
		width: calc(100% - 140px);
	}

	.bnr_block .btn_common {
		font-size: 1.3rem;
		padding: 8px 0 8px 20px;
		border-radius: 20px;
	}

	.bnr_block .btn_common::after {
		left: 8px;
	}

	.bnr_block .btn_common_blue {
		margin-top: 5px;
	}
}