@charset "UTF-8";
@import url(../css/notosans_jp.css);

/* reset */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
li {
	margin: 0;
	padding: 0;
}

fieldset,
img {
	border: 0;
	vertical-align: bottom;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-style: normal;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

caption,
th {
	text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

a {
	text-decoration: none;
	color: #000;
}

a:hover {
	text-decoration: underline;
}

a img {
	transition: all 0.5s ease 0s;
}

a:hover img {
	opacity: 0.8;
}

img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}

figure {
	padding: 0;
	margin: 0;
}

.taL {
	text-align: left;
}

.taR {
	text-align: right;
}

.taC {
	text-align: center;
}

.fontB {
	font-weight: 500;
}

.sp {
	display: none !important;
}

.txt_red {
	color: rgb(243, 90, 58);
}


select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

select::-ms-expand {
	display: none;
}

input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea {
	-webkit-appearance: none;
	border-radius: 0;
}

*:focus {
	outline: none;
}




/*スクロールフェード表示*/
.effect {
	opacity: 0;
	transition: ease 1.0s;
	transform: translateY(100px);
	filter: blur(20px);
}

.effect.fadein {
	opacity: 1;
	transform: translateY(0px);
	filter: blur(0);
}

.effect_2 {
	opacity: 0;
	transition: ease 1.0s;
	filter: blur(20px);
}

.effect_2.fadein {
	opacity: 1;
	filter: blur(0);
}

.effect_3-1,
.effect_3-2,
.effect_3-3,
.effect_3-4 {
	transition: ease 0.5s;
	opacity: 0;
	transform: scale(0.5);
	filter: blur(20px);
}

.effect_3-1 {
	transition-delay: 200ms;
}

.effect_3-2 {
	transition-delay: 400ms;
}

.effect_3-3 {
	transition-delay: 200ms;
}

.effect_3-4 {
	transition-delay: 250ms;
}

.effect_3-1.fadein,
.effect_3-2.fadein,
.effect_3-3.fadein,
.effect_3-4.fadein {
	opacity: 1;
	transform: scale(1);
	filter: blur(0);
}

.effect_4 {
	opacity: 0;
	transition: ease 0.5s;
	transform: scale(0.5);
	filter: blur(20px);
}

.effect_4.fadein {
	opacity: 1;
	transform: scale(1);
	filter: blur(0);
}

.effect_rotate {
	opacity: 0;
	transition: ease 0.5s;
	transform: scale(0);
	filter: blur(20px);
}

.effect_rotate.fadein {
	opacity: 1;
	transform: scale(1);
	filter: blur(0);
}

.effect_rotate_2 {
	opacity: 0;
	transition: ease 0.5s;
	transform: scale(0.6);
	filter: blur(20px);
}

.effect_rotate_2.fadein {
	opacity: 1;
	transform: scale(1);
	filter: blur(0);
}

.effect_l {
	opacity: 0;
	transition: ease 1.0s;
	transform: translateX(-70px);
	filter: blur(20px);
}

.effect_l.fadein {
	opacity: 1;
	transform: translateX(0px);
	filter: blur(0);
}

.effect_r {
	opacity: 0;
	transition: ease 1.0s;
	transform: translateX(70px);
	filter: blur(20px);
}

.effect_r.fadein {
	opacity: 1;
	transform: translateX(0px);
	filter: blur(0);
}

.effect_d {
	opacity: 0;
	transition: ease 1.0s;
	transform: translateY(70px);
	filter: blur(20px);
}

.effect_d.fadein {
	opacity: 1;
	transform: translateY(0px);
	filter: blur(0);
}



.effect_d_scale {
	opacity: 0;
	transform: scale(0.8);
	filter: blur(20px);
}

.effect_d_scale.fadein {
	animation: effect_d_scale 1s ease-in-out forwards 0.5s;
}

@keyframes effect_d_scale {
	0% {
		opacity: 0;
		transform: scale(0.8);
		filter: blur(20px);
	}

	80% {
		transform: scale(1.2);
	}

	100% {
		opacity: 1;
		transform: scale(1);
		filter: blur(0);
	}
}



/* base */
body {
	color: #000;
	font-weight: 300;
	line-height: 1.5;
	font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
	word-break: break-all;

	overflow-x: hidden;
}

@media only screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}

	.sp {
		display: block !important;
	}

	img {
		width: 100%;
		height: auto;
	}

}


/*共通-全体*/
.contents::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: url(../images/common/bg_contents.jpg) no-repeat center top / cover;
	position: fixed;
	top: 0;
}

@media only screen and (max-width: 768px) {
	.contents::before {
		background: url(../images/common/bg_contents_sp.jpg) no-repeat center top / cover;
	}
}



/* header */
header {
	width: 100%;
	padding: 0;
	height: 100px;
	box-sizing: border-box;
	position: relative;
	top: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	z-index: 4;
	transition: all .5s;
}

header #logo {
	line-height: 1;
	box-sizing: border-box;
	margin: 0 0 0 50px;
}

header #logo a {
	transition: all 0.5s ease 0s;
}

header #logo a:hover {
	text-decoration: none;
	opacity: 0.7;
	transition: all 0.5s ease 0s;
}

header #logo img {
	width: 222px;
	height: auto;
	transition: all .5s;
}

header nav {
	display: flex;
	align-items: center;
}

header nav>ul {
	margin-top: 10px;
}

header nav>ul>li {
	margin-right: 60px;
	display: inline-block;
}

header nav>ul>li.prd {
	position: relative;
}

header nav>ul>li.prd .spacer {
	position: absolute;
	top: 20px;
	width: 100%;
	height: 32px;
}

header nav>ul>li.prd .prd_content {
	display: none;
	position: absolute;
	top: 58px;
	left: -132px;
	padding: min(2.5vw, 25px) min(2.5vw, 25px) min(2.5vw, 25px);
	box-sizing: border-box;
	background-color: #fff;
	z-index: 1;
	border: 1px solid #eee;
	width: fit-content;
	box-sizing: border-box;
}

header nav>ul>li.li01.prd .prd_content {
	width: min(15.7vw, 157px);
	left: min(-1.4vw, -14px);
}

header nav>ul>li.li02.prd .prd_content {
	width: min(23.1vw, 231px);
	right: -30px;
}

header nav>ul>li.prd .prd_active .prd_content {
	display: block;
}

header nav>ul>li:last-child {
	margin-right: 0;
}

header nav>ul>li>a {
	font-size: 1.125rem;
	font-weight: 500;
	padding: 0;
	letter-spacing: .15em;
	position: relative;
	display: block;
	line-height: 1.5;
	cursor: pointer;
	transition: all .5s;
}

header nav>ul>li.prd>a {
	padding: 0 min(1.5vw, 15px) 0 0;
}

header nav>ul>li.prd.prd_active>a {
	color: rgb(249, 144, 52);
}

header nav>ul>li.prd>a::before {
	content: '';
	display: block;
	width: min(.7vw, 7px);
	height: min(.7vw, 7px);
	border-top: 1px solid rgb(249, 144, 52);
	border-right: 1px solid rgb(249, 144, 52);
	transform: rotate(135deg);
	position: absolute;
	top: min(0.8vw, 8px);
	right: 0;
	transition: all 0.5s ease 0s;
}

header nav>ul>li>a::after {
	position: absolute;
	right: 0;
	content: '';
	width: 100%;
	height: 3px;
	background: rgb(249, 144, 52);
	bottom: 25px;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

header nav>ul>li.prd>a::after {
	right: min(1.5vw, 15px);
	width: calc(100% - min(1.5vw, 15px));
}

header nav>ul>li>a:hover::after,
header nav>ul>li.prd_active:hover>a::after,
body.company header nav>ul>li.li01>a::after,
body.strengths header nav>ul>li.li02>a::after,
body.cloud header nav>ul>li.li03>a::after,
body.hgs header nav>ul>li.li03>a::after,
body.contact header nav>ul>li.li04>a::after {
	visibility: visible;
	bottom: -4px;
	opacity: 1;
}

header nav>ul>li>a:hover,
body.company header nav>ul>li.li01>a,
body.strengths header nav>ul>li.li02>a,
body.cloud header nav>ul>li.li03>a,
body.hgs header nav>ul>li.li03>a,
body.contact header nav>ul>li.li04>a {
	text-decoration: none;
	color: rgb(249, 144, 52);
}

header nav>ul>li.prd .prd_content>ul>li+li {
	margin-top: 15px;
}

header nav>ul>li.prd .prd_content>ul>li>a {
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: .05em;
	padding-left: 16px;
	position: relative;
	display: block;
	white-space: nowrap;
}

header nav>ul>li.prd .prd_content>ul>li>a::before {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	border-top: 1px solid rgb(249, 144, 52);
	border-right: 1px solid rgb(249, 144, 52);
	transform: rotate(45deg);
	position: absolute;
	top: 8px;
	left: 0;
	transition: all 0.5s ease 0s;
}

header nav>ul>li.prd .prd_content>ul>li>ul>li {
	margin-top: 15px;
}

header nav>ul>li.prd .prd_content>ul>li>ul>li>a {
	font-size: 0.9375rem;
	line-height: 1.5;
	letter-spacing: .05em;
	padding-left: 42px;
	position: relative;
	display: block;
	white-space: nowrap;
}

header nav>ul>li.prd .prd_content>ul>li>ul>li>a::before {
	content: '';
	display: block;
	height: 2px;
	width: 10px;
	background-color: rgba(208, 155, 75, 1);
	position: absolute;
	left: 22px;
	top: 10px;
}

header nav .telWrap {
	background: linear-gradient(90deg, rgba(242, 130, 47, 1) 0%, rgba(253, 169, 93, 1) 100%);
	color: #fff;
	text-align: center;
	width: 308px;
	height: 100px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 0 50px;
	transition: all .5s;
}

header nav .telWrap .telNum {
	font-family: "din-2014-narrow", sans-serif;
	font-weight: 700;
	font-style: normal;

	font-size: 1.925rem;
	letter-spacing: 0;
	line-height: 1;
	color: #fff;
}

body:not(.is-mobile) header nav .telWrap .telNum a {
	color: #fff;
	pointer-events: none;
}

header nav .telWrap .telTime {
	font-size: 0.875rem;
	letter-spacing: .15em;
	font-weight: 500;
}

/*縮小版*/
header.sDesign {
	position: fixed;
	height: 70px;
	border-bottom: 1px solid #eee;
	z-index: 5;
}

header.sDesign #logo {
	font-size: 1.4rem;
}

header.sDesign #logo img {
	width: 200px;
}

header.sDesign nav>ul>li.prd .prd_content {
	top: 43px;
}

header.sDesign nav .telWrap {
	height: 70px;
}

@media only screen and (max-width: 1500px) {
	header #logo {
		margin: 0 0 0 20px;
	}

	header nav>ul>li {
		margin-right: 20px;
	}

	header nav>ul>li.prd .prd_content {
		left: -138px;
	}

	header nav .telWrap {
		width: 240px;
		margin: 0 0 0 20px;
	}
}

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

	header {
		z-index: 5;
	}

	header #logo img {
		width: 150px;
	}

	header nav>ul>li {
		margin-right: 15px;
	}

	header nav>ul>li>a {
		font-size: 0.95rem;
		letter-spacing: 0;
	}

	header nav>ul>li.prd .prd_content>ul>li>a {
		font-size: 0.9rem;
	}

	header nav>ul>li.prd .prd_content>ul>li>a::before {
		top: 7px;
	}

	header nav>ul>li.prd .prd_content {
		top: 55px;
	}

	header nav .telWrap {
		width: 200px;
		margin: 0 0 0 20px;
	}

	header nav .telWrap .telNum {
		font-size: 1.55rem;
	}

	header nav .telWrap .telTime {
		font-size: 0.7rem;
	}

	header.sDesign #logo img {
		width: 150px;
	}

	header.sDesign nav>ul>li.prd .prd_content {
		top: 40px;
	}

}


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

	html.noScroll,
	body.noScroll {
		overflow: hidden;
	}

	a:hover {
		text-decoration: none;
	}

	header {
		padding: 0 20px;
		height: 60px;
		position: relative;
	}

	header.sDesign {
		height: 60px;
	}

	header #logo img,
	header.sDesign #logo img {
		width: 138px;
	}

	header #logo,
	header.sDesign #logo {
		margin: 0;
	}

	header.sDesign nav {
		margin: 0;
		position: fixed;
		top: 0;
		right: 0;
	}

	/* toggle */
	#toggle {
		display: block;
		float: right;
		width: 60px;
		height: 60px;
		top: 0;
		right: 0;
		position: absolute;
		z-index: 6;
		background: linear-gradient(90deg, rgba(242, 130, 47, 1) 0%, rgba(253, 169, 93, 1) 100%);
	}

	header.open #toggle {
		background-color: #f1f1f1;
	}

	#toggle a {
		display: block;
		width: 60px;
		height: 60px;
	}

	.line1,
	.line2,
	.line3 {
		width: 23px;
		height: 2px;
		left: 17px;
		background-color: #fff;
		position: absolute;
		transition: all 0.5s ease-out;
	}

	.line1 {
		top: 21px;
	}

	.line2 {
		top: 29px;
	}

	.line3 {
		top: 37px;
	}

	.lineclick1 {
		top: 24px;
		transform: translateY(7px) rotate(45deg);
	}

	.lineclick2 {
		transform: translateX(100px);
		opacity: 0;
	}

	.lineclick3 {
		top: 38px;
		transform: translateY(-7px) rotate(-45deg);
	}

	.menu {
		top: 32px;
		position: absolute;
		width: 100%;
		text-align: center;
		display: block;
		font-size: 9px;
	}

	#closeBtn a {
		display: block;
		background-color: rgba(253, 169, 93, 1);
		color: #fff;
		text-align: center;
		padding: 10px;
		/* margin-top: 30px; */
		margin-top: 15px;
	}

	#closeBtn a .navTxt {
		padding-left: 20px;
		position: relative;
	}

	#closeBtn a .navTxt::before {
		content: '';
		display: block;
		width: 8px;
		height: 8px;
		border-top: 1px solid rgba(229.149.58, 1);
		border-right: 1px solid rgba(229.149.58, 1);
		transform: rotate(45deg);
		position: absolute;
		top: 9px;
		left: 0;
		transition: all 0.5s ease 0s;
	}

	#closeBtn a .navTxt {
		padding-left: 32px;
		font-size: 1.2rem;
		font-weight: 500;
	}

	#closeBtn a .navTxt::before,
	#closeBtn a .navTxt::after {
		display: block;
		content: "";
		width: 25px;
		height: 1px;
		background: #fff;
		position: absolute;
		top: 14px;
		left: 0;
		border: none;
	}

	#closeBtn a .navTxt::before {
		transform: rotate(-45deg);
	}

	#closeBtn a .navTxt::after {
		transform: rotate(45deg);
	}

	header nav>.navWrap {
		display: none;
		position: fixed;
		width: 100%;
		left: auto;
		right: 0px;
		border: none;
		z-index: 5;
		top: 0;
		overflow-y: scroll;
		box-sizing: border-box;
		height: 100%;
		overflow-x: hidden;
	}

	header nav>.navWrap>.navInner {
		background-color: #f6f0de;
		padding: 60px 0 0;
		/* padding: 71px 0 0; */
	}

	header nav>.navWrap>.navInner a {
		display: block;
		letter-spacing: .1em;
		position: relative;
		height: auto;
	}

	header nav>.navWrap>.navInner a:hover {
		text-decoration: none;
	}

	header nav>.navWrap>.navInner>ul>li,
	header.sDesign nav>ul>li {
		margin-right: 0;
		display: block;
	}

	header nav>.navWrap>.navInner>ul>li+li {
		margin-top: 0;
		/* margin-top: 5px; */
	}

	header nav>.navWrap>.navInner>ul>li>a {
		font-size: 1rem;
		/* font-size: 1.125rem; */
		padding: 5px 25px;
		/* padding: 9px 25px; */
		font-weight: 500;
	}

	header nav>.navWrap>.navInner>ul>li>a.noLink {
		pointer-events: none;
	}

	header nav>.navWrap>.navInner>ul>li>a>.navTxt {
		padding-left: 15px;
		position: relative;
	}

	header nav>.navWrap>.navInner>ul>li>a>.navTxt::before {
		content: '';
		display: block;
		width: 7px;
		height: 7px;
		border-top: 1px solid rgb(249, 144, 52);
		border-right: 1px solid rgb(249, 144, 52);
		transform: rotate(45deg);
		position: absolute;
		top: 8px;
		left: 0;
		transition: all 0.5s ease 0s;
	}

	header nav>.navWrap>.navInner>ul>li>a.noLink>.navTxt::before {
		display: none;
	}

	header nav>.navWrap>.navInner>ul>li>ul>li>a {
		font-size: 0.9rem;
		/* font-size: 1rem; */
		font-weight: 500;
		padding: 4px 20px 4px 45px;
		/* padding: 8px 20px 8px 45px; */
	}

	header nav>.navWrap>.navInner>ul>li>ul>li>a>.navTxt {
		padding-left: 14px;
		position: relative;
		display: block;
	}

	header nav>.navWrap>.navInner>ul>li>ul>li>a>.navTxt::before {
		content: '';
		display: block;
		width: 6px;
		height: 6px;
		border-top: 1px solid rgb(249, 144, 52);
		border-right: 1px solid rgb(249, 144, 52);
		transform: rotate(45deg);
		position: absolute;
		top: 6px;
		/* top: 8px; */
		left: 0;
		transition: all 0.5s ease 0s;
	}

	header nav>.navWrap>.navInner>ul>li>ul>li>ul>li>a {
		font-size: 0.875rem;
		padding: 9px 75px;
	}

	header nav>.navWrap>.navInner>ul>li>ul>li>ul>li>a>.navTxt {
		padding-left: 18px;
		position: relative;
	}

	header nav>.navWrap>.navInner>ul>li>ul>li>ul>li>a>.navTxt::before {
		content: '';
		display: block;
		width: 10px;
		height: 2px;
		background: #1baa3c;
		position: absolute;
		top: 9px;
		left: 0;
	}

	.navBg {
		display: none;
		background: rgba(0, 0, 0, .7);
		opacity: 0.9;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: none;
		z-index: 4;
	}

	header nav .telWrap {
		width: calc(100% - 54px);
		margin: 5px auto 0;
		/* margin: 20px auto 0; */
		height: auto;
		padding: 5px 10px;
		/* padding: 10px; */
	}

	body:not(.is-mobile) header nav .telWrap {
		pointer-events: none;
	}

	header nav .telWrap .telNum {
		font-size: 1.8rem;
	}

	header nav .telWrap .telTime {
		font-size: 0.8rem;
		/* font-size: 0.875rem; */
	}

}

@media only screen and (min-width: 767px) {
	header nav>.navWrap>.navInner>ul {
		display: block !important;
	}
}

/* contents */
.contents {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.fwB {
	font-weight: bold;
}

.d_inlineB {
	display: inline-block;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.clearfix:before {
	content: "";
	display: block;
	clear: both;
}

.clearfix {
	display: block;
}

.inner1200 {
	max-width: 1200px;
	margin: 0 auto;
}

.inner1500 {
	max-width: 1500px;
	margin: 0 auto;
}

.inner1700 {
	position: relative;
	max-width: 1700px;
	margin: 0 auto;
}

.pagetop {
	position: fixed;
	width: 90px;
	height: 90px;
	right: 30px;
	bottom: 20px;
	text-align: right;
	display: none;
}

.pagetop.absolute {
	position: absolute;
	bottom: 0;
}

.flame .linkTxt {
	font-size: 0.9rem;
	/* font-size: 1rem; */
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.4;
	color: #0d75ea;
	display: inline;

	position: relative;
	padding-bottom: 5px;
	text-decoration: none;
	background-image: linear-gradient(90deg, rgb(251, 153, 64), rgb(251, 153, 64));
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 0 3px;
	transition: all .5s;
}

.flame .linkTxt:hover {
	color: rgb(251, 153, 64);
	text-decoration: none;
	background-size: 100% 3px;
}

.flame .linkTxt.window::after {
	content: '';
	display: inline-block;
	width: 15.5px;
	height: 15px;
	background: url(/common/images/common/icon_window_orange.svg) no-repeat center / cover;
	position: relative;
	top: 1px;
	right: 0;
	margin: 0 5px 0 4px;
}

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

	a:hover img {
		opacity: 1;
		transition: none;
	}

	.inner1200,
	.inner1500,
	.inner1700 {
		padding: 0 calc((40/750)*100vw);
	}

	.pagetop {
		width: 45px;
		height: 45px;
		right: 10px;
		bottom: 30px !important;
	}

	.pagetop.absolute {
		bottom: 15px !important;
	}

	.flame .linkTxt {
		margin-bottom: calc((5 / 750)* 100vw);
		font-size: calc((24/750)*100vw);
		line-height: 1.4;
		display: block;
	}

	.flame .linkTxt:hover {
		color: #0d75ea;
		background-size: 0 3px;
	}

}


/* footer */
footer {
	position: relative;
	padding: min(5.5vw, 55px) min(3vw, 30px) min(6vw, 60px);
	background: #f6f0de;
}

.footerNav {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 min(3vw, 30px);
	display: flex;
}

.footerNav>ul {
	margin-right: 5%;
}

.footerNav>ul:last-child {
	margin-right: 0;
}

.footerNav>ul:nth-child(1) {
	width: 11.0%;
	box-sizing: border-box;
}

.footerNav>ul:nth-child(2) {
	width: 64.4%;
	box-sizing: border-box;
}

.footerNav>ul:nth-child(3) {
	width: 14.6%;
	box-sizing: border-box;
}

.footerNav>ul:nth-child(2),
.footerNav>ul:nth-child(3) {
	margin-top: 47px;
}

.footerNav>ul>li+li,
.footerNav>ul>li>ul>li {
	margin-top: 20px;
}

.footerNav>ul>li>a {
	display: block;
}

.footerNav>ul>li>a.noLink {
	pointer-events: none;
}

.footerNav>ul>li>a>.linkTxt {
	font-weight: 500;
	font-size: 1rem;
	/* font-size: 1.125rem; */
	letter-spacing: 0.05em;
	position: relative;
	padding-left: 17px;
	display: block;
}

.footerNav>ul>li>a>.linkTxt::before {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	border-top: 1px solid rgb(249, 144, 52);
	border-right: 1px solid rgb(249, 144, 52);
	transform: rotate(45deg);
	position: absolute;
	top: 8px;
	left: 0px;
	transition: all 0.5s ease 0s;
}

.footerNav>ul>li>a.noLink>.linkTxt::before {
	display: none;
}

.footerNav>ul>li>ul>li {
	padding-left: 22px;
}

.footerNav>ul>li>ul>li>a {
	display: block;
}

.footerNav>ul>li>ul>li>a>.linkTxt {
	font-weight: 500;
	font-size: 1rem;
	/* font-size: 1.15rem; */
	letter-spacing: .1em;
	display: block;
	text-indent: -1em;
	padding-left: 1em;
}

.footerNav>ul:nth-child(2)>li {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footerNav>ul:nth-child(2)>li>a {
	width: 100%;
	box-sizing: border-box;
}

.footerNav>ul:nth-child(2)>li>ul:nth-child(2) {
	width: 47%;
	margin-right: 1%;
	box-sizing: border-box;
}

.footerNav>ul:nth-child(2)>li>ul:nth-child(3) {
	width: 52%;
	margin-right: 0;
	box-sizing: border-box;
}

footer .copyright {
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	letter-spacing: .05em;
	border-top: 2px solid rgb(249, 144, 52);
	padding-top: min(5.5vw, 55px);
	margin-top: min(5.5vw, 55px);
}


.footerContact {
	max-width: 1200px;
	margin: min(calc((5 / 1700) * 100vw), 5px) auto min(calc((54 / 1700) * 100vw), 54px);
	border: 2px solid rgb(249, 144, 52);
	background-color: rgba(255, 255, 255, .9);
	border-radius: min(calc((30 / 1700) * 100vw), 30px);
	padding: min(calc((42 / 1700) * 100vw), 42px) min(calc((60 / 1700) * 100vw), 60px) min(calc((57 / 1700) * 100vw), 57px);
	box-sizing: border-box;
	box-shadow: 0px 0px 30px rgba(237, 153, 54, .3);
}

.footerContact__inner {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.footerContact__btnForm {
	display: block;
	text-align: center;
	width: 400px;
	box-sizing: border-box;
	color: #fff;
	border-radius: min(calc((10 / 1700) * 100vw), 10px);
	padding: 0.8em;
	font-size: 1.625rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	background: rgb(243, 90, 58);
	box-shadow: #b04028 0px 4px 0px;
	border: 0;
	cursor: pointer;
	transition: all .5s;
	margin: 0 min(calc((60 / 1700) * 100vw), 60px) 0 0;
	position: relative;
	top: 0;
}

.footerContact__btnForm:hover {
	text-decoration: none;
	box-shadow: none !important;
	position: relative;
	top: 4px;
}

.footerContact__btnForm__txt {
	position: relative;
	padding-left: 43px;
}

.footerContact__btnForm__txt::before {
	content: '';
	display: block;
	width: 34px;
	height: 24px;
	background: url(../images/common/icon_mail_white.svg) no-repeat center / contain;
	position: absolute;
	top: 8px;
	left: 0;
	transition: all 0.5s ease 0s;
}

.footerContact__tel__num {
	font-family: "din-2014-narrow", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 3.92rem;
	letter-spacing: 0;
	line-height: 1;
	color: rgb(243, 90, 58);
	position: relative;
	padding-left: 58px;
}

.footerContact__tel__num::before {
	content: '';
	display: block;
	width: 49px;
	height: 48px;
	background: url(../images/common/icon_tel_orange.svg) no-repeat center / contain;
	position: absolute;
	top: 8px;
	left: 0;
	transition: all 0.5s ease 0s;
}

.footerContact__tel__num.tel-link a {
	color: rgb(243, 90, 58);
}

.footerContact__tel__time {
	font-size: 1rem;
	letter-spacing: .1em;
	font-weight: 500;
	margin-left: 104px;
}


@media only screen and (max-width: 1500px) {
	.footerNav>ul:nth-child(1) {
		width: 20%;
	}

	.footerNav>ul:nth-child(2) {
		width: 50%;
	}

	.footerNav>ul:nth-child(3) {
		width: 20%;
	}

	.footerNav>ul:nth-child(2)>li {
		display: block;
	}

	.footerNav>ul:nth-child(2)>li>ul:nth-child(2) {
		width: auto;
		margin-right: 0;
	}

	.footerNav>ul:nth-child(2)>li>ul:nth-child(3) {
		width: auto;
	}

}


@media only screen and (max-width: 1000px) {
	.footerContact__inner {
		display: block;
	}

	.footerContact__btnForm {
		margin: 0 auto;
	}

	.footerContact__tel {
		margin: min(calc((40 / 1700) * 100vw), 40px) auto 0;
		width: fit-content;
	}

}


@media only screen and (max-width: 768px) {
	footer {
		padding: 23px 0 29px;
	}

	footer .inner1500 {
		padding: 0;
	}

	.footerNav {
		display: block;
		width: fit-content;
		margin: 0 auto;
	}

	.footerNav>ul {
		margin-right: 0;
	}

	.footerNav>ul:nth-child(1),
	.footerNav>ul:nth-child(2),
	.footerNav>ul:nth-child(3) {
		width: auto;
	}

	.footerNav>ul:nth-child(2),
	.footerNav>ul:nth-child(3),
	.footerNav>ul>li+li,
	.footerNav>ul>li>ul>li {
		margin-top: 18px;
	}

	.footerNav>ul>li>ul>li {
		padding-left: 14px;
	}

	.footerNav>ul>li>a>.linkTxt {
		font-size: 0.9rem;
		padding-left: 11px;
	}

	.footerNav>ul>li>a>.linkTxt::before {
		width: 5px;
		height: 5px;
		top: 8px;
		left: -2px;
	}

	.footerNav>ul>li>ul>li>a>.linkTxt {
		font-size: 0.8rem;
	}

	footer .copyright {
		font-size: 0.625rem;
		letter-spacing: 0;
		border-top: 1px solid #e79340;
		padding-top: 22px;
		margin-top: 38px;
	}

	.footerContact {
        margin: 18px calc((40 / 750) * 100vw) 23px;
        padding: 19px calc((48 / 750) * 100vw) 24px;
        border-radius: calc((30 / 750) * 100vw);
	}

	.footerContact .flame__circle-heading {
		margin-top: 0;
        margin-bottom: 20px;
    }

	.footerContact .flame__circle-heading__txt {
        font-size: 1.125rem;
    }

	.footerContact .flame__circle-heading__dottedline {
        margin-top: 7.5px;
    }

	.footerContact__btnForm {
        width: fit-content;
        border-radius: 5px;
        padding: 0.8em 1.25em;
        font-size: 1rem;
        box-shadow: #b04028 0px 3px 0px;
	}

	.footerContact__btnForm:hover {
		box-shadow: #b04028 0px 3px 0px !important;
		top: 0;
	}

	.footerContact__btnForm__txt {
		padding-left: 27px;
	}

	.footerContact__btnForm__txt::before {
		width: 20px;
		height: 14.5px;
		top: 5px;
	}

	.footerContact__tel__num {
		font-size: 2.45rem;
		padding-left: 40px;
		margin: 20px auto 0;
		width: fit-content;
	}

	.footerContact__tel {
		margin: 20px auto 0;
	}

	.footerContact__tel__num::before {
        width: 29.5px;
        height: 29.5px;
        top: 5px;
        left: 0;
	}

	.footerContact__tel__time {
		font-size: .625rem;
		margin-left: 7.3em;
	}

}


@media only screen and (max-width: 350px) {
    .footerContact .flame__circle-heading__txt {
        font-size: 1rem;
    }

	.footerContact__btnForm__txt::before {
        top: 4px;
    }

	.footerContact__btnForm {
        font-size: .9rem;
    }

	.footerContact__tel__num {
        font-size: 2.1rem;
		padding-left: 35px;
    }

	.footerContact__tel__num::before {
        width: 25.5px;
        height: 25.5px;
        top: 3px;
    }

	.footerContact__tel__time {
        margin-left: 5.8em;
    }
}


/* モーダル（ポップアップ） */
.md-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .85;
	z-index: 10000;
}

.md-contents {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 89%;
	height: auto;
	transform: translate(-50%, -50%);
	z-index: 10000;
	max-width: 1000px;
	box-sizing: border-box;
}

.md-inner {
	padding: 45px 20px;
	background: #fff;
	height: auto;
	position: relative;
}

.md-xmark {
	position: absolute;
	top: -34px;
	right: -4px;
	width: 33px;
	height: 22px;
	z-index: 9999;
	cursor: pointer;
}

.md-xmark span {
	height: auto;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	border-radius: 4px;
}

.md-xmark span:nth-of-type(1) {
	top: 0;
	transform: translateY(10px) rotate(-45deg);
}

.md-xmark span:nth-of-type(2) {
	bottom: 0;
	transform: translateY(-10px) rotate(45deg);
}

.md-tit {
	font-size: 0.93rem;
	line-height: 1.5;
	text-align: center;
	padding-bottom: 12px;
}

.scroll-box {
	overflow-x: auto;
	padding-bottom: 20px;
	-webkit-overflow-scrolling: touch;
	cursor: pointer;
}

.scroll-box div img {
	max-width: 100%;
	min-width: 760px;
	vertical-align: top;
}

.scroll-box::-webkit-scrollbar {
	height: 7px;
}

.scroll-box::-webkit-scrollbar-track {
	background: #eee;
}

.scroll-box::-webkit-scrollbar-thumb {
	background: #aaa;
	border: none;
}

.scroll-box::-webkit-scrollbar-thumb:hover {
	background: #999;
}