@charset "utf-8";
/*フォントの指定はコメントアウトして指定する*/

/*ゴシック体*/

body {
	font-family: YuGothic, /* Mac用 */ Yu Gothic, /* Windows用 */ sans-serif;
}

.bold {
	font-weight: 800;
}

.font-m {
	font-family: YuMincho, /* Mac用 */ Yu Mincho, /* Windows用 */ serif;
}

/*ゴシック体をクラス名で指定する用*/
.font-g {
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic",
		"Meiryo", sans-serif;
}

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
	min-width: 1100px;
	position: relative;
}

:root {
	--color: #da5411;
}

.container {
	width: 980px;
	margin: 0 auto;
}

.btn {
	height: 44px;
	line-height: 44px;
	font-size: 13px;
	color: #fff;
	background-color: #da5411;
	transition: 0.2s;

	display: block;
	max-width: 217px;

	position: relative;
}

.btn img {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	width: 20px;
}

.h100 {
	height: 100%;
}

.fw-bold {
	font-weight: bold;
}

img {
	/*width: 100%;*/
	display: block;
}

.section-title {
	font-size: 25px;
	line-height: 35px;
	font-weight: 400;
	text-align: center;
}

.section-desc {
	font-size: 18px;
	line-height: 28px;
	margin-top: 30px;

	text-align: center;
}

.section-desc .text01{
	font-size: 22px;
	line-height: 32x;
	color: #c91a1a;
}

.color-w {
	color: #fff;
}

/*PC用CSS(ipad mini 7.9インチ対応)*/
@media only screen and (min-width: 768px) {
	.pc_none {
		display: none !important;
	}
}
/*SP用CSS(ipad mini 7.9インチ未対応)*/
@media only screen and (max-width: 767px) {
	.sp_none {
		display: none !important;
	}
}

/*iPad 縦横両方*/
/*@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
}*/
/*iPad 縦向きのみ*/
/*@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {
}*/
/*SP用CSS(ipad mini 7.9インチ未対応)*/
/*@media only screen and (max-width: 767px) {
}*/

/* main {
	margin-top: 119px;
} */
section.hero,
div.page-bg {
	margin-top: 119px;
}
div.page-bg img{
	width: 100%;
}
/* ==============header============== */
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background-color: #fff;

	width: 100%;
	min-width: 1100px;
	height: auto;
	box-shadow: 0 0 7px 0 rgb(0 0 0 / 30%);
}

.header-top {
	width: 100%;
	display: flex;
	justify-content: space-between;
	height: 78px;
}

.header-top__logo {
	display: flex;
	align-items: center;
}

.logo a {
	max-width: 238px;
	display: block;
}
.logo a img{
	width: 100%;
}

.header-top__logo p {
	font-size: 12px;
	line-height: 16px;
	margin-left: 30px;
	padding-top: 8px;
}

.header-top__contact {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.header__phone {
	margin-right: 20px;
	display: flex;
	align-items: center;
}
.header__phone img {
	max-width: 30px;
}

.header__phone span {
	font-weight: 800;
	font-size: 28px;
	line-height: 38px;
	margin-left: 5px;
	color: #da5411;
}

.header__contact {
	display: block;
	height: 62px;
	width: 177px;
	line-height: 62px;
	font-size: 16px;
	padding-left: 30px;
	color: #fff;
	font-weight: 800;
	position: relative;
	background-color: #da5411;
}

.header__contact img {
	position: absolute;
	width: 19px;
	right: 19px;
	top: 50%;
	transform: translateY(-66%);
}

.menu-main {
	padding-top: 2px;
	display: flex;
	justify-content: space-between;
}

.menu-main li {
	position: relative;
}

.menu-main li a,
.menu-main li p {
	font-size: 16px;
	line-height: 26px;
	font-weight: bold;
	display: block;
	padding-bottom: 13px;
	position: relative;
}

.menu-main li a::after {
	position: absolute;
	content: "";
	width: 0;
	height: 4px;

	bottom: 0px;
	left: 0;

	background-color: #da5411;
	transition: 0.2s;
	transform: scale(0);
}

.menu-main li a:hover::after {
	width: 100%;
	transform: scale(1);
}

.menu-main li .is-active {
	position: relative;
}

.menu-main li .is-active::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 4px;

	bottom: 0px;
	left: 0;

	background-color: #da5411;
	transform: scale(1);
}

.sub-menu {
	position: absolute;
	width: 166px;
	top: 100%;
	background-color: #fff;
	left: -30%;
	padding: 6px 15px;

	display: none;
	z-index: 10;
}

.sub-menu li a {
	display: block;
	padding: 5px 0;
	text-align: left;
	font-size: 15px;
}

/* ==============end-header============== */
/* =================footer================= */
footer {
	width: 100%;
	background-color: #f2f2f2;
	position: relative;
}

.back-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	cursor: pointer;

	transition: 0.2s;
	opacity: 0;
	visibility: hidden;
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top img {
	width: auto;
}

.copyright {
	color: #fff;
	background-color: #3d3a39;
	font-size: 11px;
	text-align: center;
	padding: 12px 0;
	font-family: Devanagari MT;
}

.footer-content {
	display: flex;
	width: 100%;
	justify-content: space-between;

	padding: 55px 0 30px;
}

.footer-l {
	width: 45%;
}

.footer-r {
	width: 30%;
}

.footer-c {
	flex: 1;
}

.footer-l p {
	font-size: 12px;
	line-height: 22px;
}

a.footer__logo {
	max-width: 289px;
	margin-top: 15px;
	display: block;
}

a.footer__logo img{
	width: 100%;
}

.footer__contact {
	margin-top: 90px;
}

.footer__contact h3 {
	font-size: 15px;
	line-height: 25px;
}

.footer__contact .header__phone {
	margin-top: 10px;
}

.footer__contact .header__phone span {
	font-size: 27px;
	line-height: 37px;
}

.footer__contact p {
	font-size: 12px;
	line-height: 22px;
	margin-top: 10px;
}

.menu_footer li {
	font-size: 15px;
	line-height: 25px;
	font-weight: bold;
	padding: 9px 0px;
}

.menu_footer li:first-child {
	padding: 0px 0px 9px 0px;
}

.menu_footer li a {
	font-size: 15px;
	line-height: 25px;
	font-weight: bold;
}

.footer-sub__menu {
	margin-top: 10px;
	margin-left: 4px;
}

.footer-sub__menu li {
	padding: 3px 0px;
	font-weight: 400;
}

.footer-sub__menu li a {
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
}

.footer-sub__menu li:first-child {
	padding: 0px 0px 3px 0px;
}

.footer-r__link {
	margin-top: 30px;
}

.footer-r__link a {
	color: #e95504;
	font-size: 16px;
	font-weight: bold;
	height: 50px;
	line-height: 50px;
	padding-left: 20px;

	display: block;
	max-width: 228px;
	border: 1px solid #da5411;
	border-radius: 13px;
	background-color: #fff;

	position: relative;
	transition: 0.2s;
}

.footer-r__link a .img__position-inner {
	position: absolute;
	width: 17px;
	right: 17px;
	top: 50%;
	transform: translateY(-50%);
}

.img__position {
	position: absolute;
	width: 73px;
	top: -25px;
	right: 20px;
}

.footer-r__security {
	margin-top: 25px;
}

.footer-r__security a {
	font-size: 13px;
	line-height: 23px;
	padding: 0 18px;
	position: relative;
}

/*iPad 縦向きのみ*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {
	.footer-r__security a {
		padding: 0 5px;
	}
}
/*SP用CSS(ipad mini 7.9インチ未対応)*/
@media only screen and (max-width: 767px) {
	.footer-r__security a {
		padding: 0 5px;
	}
}

.footer-r__security a::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;

	height: 100%;
	width: 1px;

	background-color: rgb(173, 173, 173);
}

.footer-r__security a:last-child:before {
	position: absolute;
	content: "";
	top: 0;
	right: 0;

	height: 100%;
	width: 1px;

	background-color: rgb(173, 173, 173);
}
/* =================footer================= */

/* =================include case================= */
section.case {
	width: 1014px;
	margin: 0 auto;
	padding-top: 80px;
	position: relative;
}
.case__list {
	width: 1014px;
	margin: 45px auto 0;
}
.new__item {
	width: 220px;
	padding: 0 17px;
}
.new__item-date {
	font-size: 12px;
	line-height: 22px;
}
.new__item-title {
	padding: 15px 0;
	font-size: 17px;
	line-height: 27px;
	border-bottom: 2px solid #c0c0c0;
	font-weight: 400;
}
.new__item-desc {
	font-size: 13px;
	line-height: 23px;
	padding-top: 15px;
}
.slide-left,
.slide-right {
	width: 47px;
	height: 47px;
	background-color: #da5411;
	display: flex;
	align-items: center;
	justify-content: center;

	position: absolute;
	cursor: pointer;
}
.slide-left {
	left: -51px;
	top: 57%;
}
.slide-right {
	right: -51px;
	top: 57%;
}
.slide-left img,
.slide-right img {
	width: 24px;
	height: 30px;
}
.case__link {
	margin-top: 50px;
}
.case__link a {
	display: flex;
	font-size: 12px;
	color: #da5411;
	width: 100px;
	margin: 0 auto;
	line-height: 22px;
}
.case__link a img {
	width: 15px;
	margin-left: 10px;
}
/* =================colum================= */
section.colum {
	width: 1014px;
	margin: 0 auto;
	padding-top: 80px;
	position: relative;
}
.colum__list {
	width: 1014px;
	margin: 45px auto 0;
}
.colum__list a img{
	width: 100%;
	height: 101px;
	margin-bottom: 10px;
	object-fit: cover;
	font-family: 'object-fit: cover;';/*IE対策*/
}
.colum__list a .new__item-title{
	border: 0;
	padding-bottom: 0;
}
.colum__link {
	margin-top: 50px;
}
.colum__link a {
	display: flex;
	font-size: 12px;
	color: #da5411;
	width: 100px;
	margin: 0 auto;
	line-height: 22px;
}
.colum__link a img {
	width: 15px;
	margin-left: 10px;
}
.slide-left3,
.slide-right3 {
	width: 47px;
	height: 47px;
	background-color: #da5411;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	cursor: pointer;
}
.slide-left3 {
	left: -51px;
	top: 57%;
}
.slide-right3 {
	right: -51px;
	top: 57%;
}
.slide-left3 img,
.slide-right3 img {
	width: 24px;
	height: 30px;
}
.work {
	width: 100%;
	margin: 65px auto 0;
	padding-top: 80px;
	padding-bottom: 65px;
	background-color: #f7f7f7;
	position: relative;
}
.work_inner {
	width: 1014px;
	margin: 0 auto;
	position: relative;
}
.work__list {
	width: 1014px;
	margin: 45px auto 0;
}
.work__list li {
	display: block;
	height: auto;
	margin: 0 15px;
	padding-bottom: 20px;
	/*overflow: hidden;*/
	background-color: #fff;
}
.work__list li a {
	display: block;
	width: 100%;
	height: auto;
	color: #000;
	overflow: hidden;
	position: relative;
}
.work__list li a .seiyakuzumi {
	position: absolute;
	top: 0;
	right: 3px;
	display: block;
	width: 80px;
	height: auto;

	filter: alpha(opacity=20); /* IE 6,7*/
	-ms-filter: "alpha(opacity=20)"; /* IE 8,9 */
	-moz-opacity: 0.2; /* FF , Netscape */
	-khtml-opacity: 0.2; /* Safari 1.x */
	opacity: 0.2;
	zoom: 1; /*IE*/
}
.work__list li a .performance_area {
	display: block;
	width: 90%;
	margin: 15px auto 0;
	height: 32px;
}
.work__list li a .floor_plan {
	margin: 15px auto 0;
	padding: 5px 10px;
	color: #fff;
	background-color: #e85504;
}
.work__list li a ul {
	width: 90%;
	height: auto;
	margin: 15px auto 0;
	border-collapse: collapse;
}
.work__list li a ul li {
	width: 100%;
	height: auto;
	margin: 2px auto 0;
	padding: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 1px;
	text-align: left;
}
.work__list li a .performance_more {
	position: absolute;
	bottom: 5px;
	right: 3%;
	width: 15px;
	height: auto;
}
.work__list br {
	display: none;
}
.slide-left2,
.slide-right2 {
	width: 47px;
	height: 47px;
	background-color: #da5411;
	display: flex;
	align-items: center;
	justify-content: center;

	position: absolute;
	cursor: pointer;
}

.slide-left2 {
	left: -51px;
	top: 50%;
}

.slide-right2 {
	right: -51px;
	top: 50%;
}

.slide-left2 img,
.slide-right2 img {
	width: 24px;
	height: 30px;
}

.news__link {
	margin-top: 50px;
}

.news__link a {
	display: flex;
	font-size: 12px;
	color: #da5411;
	width: 100px;
	margin: 0 auto;
	line-height: 22px;
}

.news__link a img {
	width: 15px;
	margin-left: 10px;
}

/* =========start include contact-section========= */
/* ============section contact============ */
section.contact {
	width: 100%;
	margin-top: 70px;

	background-image: url(../img/index/contact-bg.jpg);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;

	position: relative;
}

section.contact::after {
	position: absolute;
	content: "";
	width: 344px;
	height: 172px;
	top: 0;
	left: 32%;
	background-image: url(../img/index/contact-position.png);
	background-size: cover;
}
/*iPad 縦向きのみ*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {
	section.contact::after {
		left: 30%;
	}
}
/*SP用CSS(ipad mini 7.9インチ未対応)*/
@media only screen and (max-width: 767px) {
	section.contact::after {
		left: 30%;
	}
}

.contact-content {
	display: flex;
	justify-content: flex-end;
}

.contact__inner {
	width: 47%;
	min-width: 450px;
	padding: 55px 0;
	text-align: center;
}

.contact__inner h3 {
	font-size: 35px;
	line-height: 45px;
	margin-top: 10px;
	font-weight: 400;
}

.contact__inner p {
	font-size: 16px;
	line-height: 26px;
}

.contact__inner-phone {
	display: flex;
	width: 100%;
	margin-top: 20px;
	justify-content: center;
	align-items: center;
}
.contact-time {
	font-size: 13px;
	line-height: 23px;
	display: block;
	padding-left: 10px;
}

.contact__inner-phone span {
	font-size: 36px;
	line-height: 46px;
	margin-left: 7px;
}
/*iPad 縦向きのみ*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {
	.contact__inner-phone span {
		font-size: 34px;
		line-height: 44px;
	}
}
/*SP用CSS(ipad mini 7.9インチ未対応)*/
@media only screen and (max-width: 767px) {
	.contact__inner-phone span {
		font-size: 34px;
		line-height: 44px;
	}
}

.contact__inner-phone img {
	width: 40px;
}

.contact__inner a {
	max-width: 435px;
	height: 60px;
	line-height: 60px;
	text-align: center;

	font-weight: bold;
	margin-top: 20px;
	font-size: 16px;
}

.contact__inner a img {
	right: 22%;
}
/* ============section contact============ */
/* =========end include contact-section========= */

/* =======include-banner======= */
.banner {
	width: 100%;
}

.banner-top {
	display: block;
	width: 100%;
	height: 188px;

	background-image: url(../img/index/banner1.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

	margin-bottom: 85px;
	position: relative;
	padding: 40px 0 0 65px;
	color: #fff;
}

.banner-top p {
	font-size: 16px;
	line-height: 26px;
}

.banner-top h3 {
	font-size: 30px;
	font-weight: 400;
	line-height: 40px;
	margin: 5px 0 10px;
}

.banner-top span {
	display: flex;
	font-size: 12px;
	line-height: 22px;
}

.banner-top span img {
	width: 15px;
	margin-left: 10px;
}

.banner-bottom {
	display: block;
	width: 100%;
	height: 188px;
	position: relative;

	background-image: url(../img/index/banner2.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.banner-bottom h3 {
	font-size: 30px;
	line-height: 40px;
	font-weight: 400;

	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 13%;
}

.banner-bottom a {
	display: flex;
	font-size: 12px;
	line-height: 22px;

	position: absolute;
	bottom: 23px;
	right: 65px;
}

.banner-bottom span {
	display: flex;
	font-size: 12px;
	line-height: 22px;

	position: absolute;
	bottom: 23px;
	right: 65px;
}

.banner-bottom span img {
	width: 15px;
	margin-left: 10px;
}

.banner-bottom a img {
	width: 15px;
	margin-left: 10px;
}

.banner3 {
	margin: 90px 0px;
}

.banner3__inner {
	display: block;
	width: 100%;
	height: 188px;
	position: relative;

	background-image: url(../img/index/banner3.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.banner3__inner::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;

	background-color: rgb(13 5 1 /48%);
}

.banner3__inner h3 {
	font-size: 30px;
	line-height: 40px;
	font-weight: 400;

	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	right: 13%;
	color: #fff;
}

.banner3__inner span {
	display: flex;
	font-size: 12px;
	line-height: 22px;

	position: absolute;
	z-index: 2;
	bottom: 23px;
	right: 65px;

	color: #fff;
}

.banner3__inner span img {
	width: 15px;
	margin-left: 10px;
}

.banner-business {
	margin-top: 80px;
}

.banner-business__inner {
	display: block;
	width: 100%;
	height: 188px;
	position: relative;

	background-image: url(../img/flow/banner-business.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

	display: flex;
	align-items: center;
	justify-content: space-between;
}

.banner__inner-text {
	padding: 0 45px 0 45px;
	color: #fff;
}

.banner__inner-text h3 {
	font-size: 30px;
	line-height: 40px;
	font-weight: 400;
}

.banner__inner-text span {
	font-size: 14px;
	line-height: 24px;
	margin-top: 10px;
	display: flex;
}

.banner__inner-text span img {
	width: 15px;
	margin-left: 15px;
}

.banner__inner-icon {
	flex: 1;
	display: flex;
	justify-content: space-between;
}

.inner__item {
	width: calc(100% / 6);
	border-right: 1px solid #ccc;

	display: flex;
	flex-direction: column;
	align-items: center;
}

.inner__item:last-child {
	border-right: inherit;
}

.inner__item img {
	width: auto;
}

.inner__item span {
	color: #fff;
	font-size: 20px;
	margin-top: 25px;
}
/* =======include-banner======= */
/* =========include section intro========= */
.intro {
	width: 100%;
	margin-top: 90px;
	position: relative;
	margin-bottom: 190px;
}

.intro__img {
	width: calc(100vw /2 + 490px);
	min-width: 1041px;
	display: flex;
	align-items: flex-start;
	top: 0;
	left: 0;
	height: auto;
	position: relative;
}

.intro__img img {
	width: calc(100% / 3 - 26px);
	height: auto;
}

.intro__bg {
	position: absolute;
	background-color: #f8f5f4;
	min-height: 370px;
	height: 105%;
	width: 78%;
	top: 80px;
	right: 0;
	z-index: -1;
}

.intro__card {
	position: absolute;
	background-color: #fff;
	padding: 28px 0 0 45px;
	width: 460px;
	height: 218px;
	bottom: -53px;
	right: 0;
	-webkit-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 25%);
	-moz-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 25%);
	box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 25%);
}

.intro__card a {
	position: absolute;
	width: 217px;
	right: 40px;
	bottom: 33px;

	padding-left: 50px;
}

.intro__card a img {
	right: 40px;
	width: 20px;
}

.intro__card h3 {
	font-size: 31px;
	line-height: 41px;
	font-weight: 400;
}

.intro__card ul {
	margin-top: 10px;
}

.intro__card ul li {
	margin-bottom: 5px;
	font-size: 14px;
	line-height: 24px;
}
/* =========section intro========= */

/* ========responsive======== */
@media only screen and (max-width: 767px) {
	body,
	html {
		min-width: 320px;
	}
	body {
		min-width: 100%;
	}
	/* main {
		margin-top: 60px;
	} */
	section.hero,
	div.page-bg {
		margin-top: 60px;
	}
	header {
		min-width: 100%;
	}
	.overflow-y {
		overflow-y: hidden;
	}
	.container {
		width: 100%;
		padding: 0 5%;
	}
	.sp_tel {
		position: absolute;
		width: 25px;
		height: 25px;
		top: 0;
		bottom: 0;
		right: 15%;
		margin: auto;
		cursor: pointer;
	}
	.sp_tel img{
		width: 100%;
		height: auto;
		display: block;
		margin: 0;
	}
	.burger_sp {
		position: absolute;
		width: 23px;
		top: 20px;
		right: 5%;
		cursor: pointer;
	}
	.burger_sp.show {
		width: 30px;
	}
	.burger_sp.show div:nth-child(2) {
		transform: translateX(40px);
		opacity: 0;
		visibility: hidden;
		transition: 0.2s;
	}
	.burger_sp.show div:nth-child(1) {
		position: absolute;
		top: 50%;
		right: 0;
		transform: rotate(-40deg);
	}
	.burger_sp.show div:nth-child(3) {
		position: absolute;
		top: 50%;
		right: 0;
		transform: rotate(40deg);
	}
	.burger_sp div {
		width: 100%;
		height: 2px;
		background-color: #3e3a39;

		transition: 0.2s;
	}
	.burger_sp div:nth-child(2) {
		margin: 6px 0;
	}
	nav {
		position: absolute;
		width: 100%;
		left: 0;
		top: 100%;

		background-color: #fff;
		z-index: 100;
		padding: 0 5%;
		height: calc(100vh - 60px);

		display: none;
		overflow-y: scroll;
	}
	.logo a {
		max-width: 200px;
	}
	.header-top {
		height: 60px;
	}
	.menu-main {
		flex-direction: column;
	}
	.menu-main li .is-active::after,
	.menu-main li a::after {
		position: static;
	}
	.menu-main li a,
	.menu-main li p {
		padding: 15px 0;
	}
	.menu-main li {
		border-bottom: 1px solid #ccc;
	}
	.header-top__contact {
		margin-top: 30px;
		display: block;
		padding-bottom: 100px;
	}
	.header__contact {
		width: 243px;
		margin: 0 auto;
		height: 52px;
		line-height: 52px;
		padding-left: 60px;
	}
	.header__contact img {
		right: 50px;
	}
	.header__phone {
		display: flex;
		margin-right: 0px;
		justify-content: center;
		align-items: center;
		margin-top: 25px;
	}
	.header__phone span {
		font-size: 26px;
		line-height: 36px;
		margin-left: 7px;

		position: relative;
	}
	.header__phone span::after {
		position: absolute;
		content: "";
		width: 100%;
		height: 2px;
		bottom: 4px;
		left: 0;

		background-color: #da5411;
	}
	.header__phone a {
		font-size: 26px;
		line-height: 36px;
		margin-left: 7px;
		color: #da5411;
		font-weight: 800;
	}
	.header__phone img {
		max-width: 27px;
	}
	.sub-menu__icon {
		position: absolute;
		width: 100%;
		top: 0;
		height: 100%;
		right: 0px;
		transition: 0.2s;
	}
	.sub-menu__icon.rotate {
		transform: rotate(90deg);
		transform-origin: center;
	}
	.sub-menu__icon img.rotate {
		transform: translateY(-50%) rotate(90deg);
		transform-origin: center;
	}
	.sub-menu__icon img {
		width: 10px;
		position: absolute;
		right: 5px;
		top: 50%;
		transform: translateY(-50%);
		transition: 0.2s;
	}
	.sub-menu {
		position: static;
		width: 100%;
		top: 100%;
		left: 0;
		padding: 6px 15px;
		display: none;
		z-index: 10;
		padding: 0 20px;
	}
	.sub-menu li {
		border-bottom: none;
	}

	.sub-menu li a {
		padding: 10px 0;
	}
	.sub-menu li:nth-child(1) a {
		padding: 0 0 10px 0;
	}
	.section-title {
		font-size: 24px;
		line-height: 34px;
	}
	.section-desc {
		font-size: 15px;
		line-height: 25px;
		margin-top: 22px;
	}
	.section-desc .text01{
		font-size: 19px;
		line-height: 29px;
		color: #c91a1a;
	}
	.footer-r__security {
		margin-top: 25px;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.footer-r__security a {
		font-size: 14px;
		padding: 0 18px;
		position: relative;
	}

	/* =====footer===== */
	.footer-content {
		flex-wrap: wrap;
		padding: 30px 10px;
	}
	.footer-l,
	.footer-r {
		width: 100%;
		text-align: center;
	}
	.footer__logo {
		max-width: 226px;
		margin: 15px auto 0;
	}
	.footer__contact {
		margin-top: 16px;
	}

	.footer__contact h3 {
		font-size: 13px;
		line-height: 23px;
	}

	.header__phone img {
		max-width: 27px;
	}
	.footer-r__link a {
		margin: 0 auto;
		text-align: left;
	}
	.back-to-top {
		bottom: 34px;
		right: 0px;
	}
	.footer__contact .header__phone {
		margin-top: 5px;
	}
	.footer__contact p {
		margin-top: 5px;
	}
	.copyright {
		font-size: 10px;
	}
	/* =====footer===== */

	/* =====inc case===== */
	section.case {
		width: 100%;
		max-width: 335px;
		padding-top: 55px;
	}
	.new__item {
		padding: 0;
	}
	.case__list {
		width: 220px;
		margin: 20px auto 0;
	}
	.slide-right,
	.slide-left {
		top: 52%;
	}
	.slide-right {
		right: 0;
	}
	.slide-left {
		left: 0;
	}
	.case__link {
		margin-top: 25px;
	}
	/* =====colum===== */
	section.colum {
		width: 100%;
		max-width: 335px;
		padding-top: 55px;
	}
	.colum__list {
		width: 220px;
		margin: 20px auto 0;
	}
	.colum__list a img{
		width: 100%;
		height: auto;
		margin: 0 auto 10px;
	}
	.colum__list a .new__item-title{
		border: 0;
		padding-bottom: 0;
	}
	.colum__link {
		margin-top: 25px;
	}
	.slide-right3,
	.slide-left3 {
		top: 52%;
	}
	.slide-right3 {
		right: 0;
	}
	.slide-left3 {
		left: 0;
	}
	.work {
		padding: 40px 0;
		margin-top: 55px;
	}
	.work_inner {
		width: 100%;
		max-width: 335px;
	}
	.work__list {
		width: 220px;
		margin: 20px auto 0;
	}
	.work__list li {
		margin: 0px;
	}
	.new__item {
		padding: 0;
	}
	.slide-right2,
	.slide-left2 {
		top: 43%;
	}
	.slide-left2 {
		left: 0;
	}
	.slide-right2 {
		right: 0;
	}
	/* slider */
	.news {
		padding-top: 65px;
	}
	.news__link {
		margin-top: 25px;
	}
	/* include contact-section */
	section.contact {
		margin-top: 55px;
		background-image: none;
		background-color: #f8f5f4;
		padding-bottom: 25px;
		overflow: hidden;
	}
	section.contact::after {
		width: 260px;
		height: 100px;
		left: 38%;
	}
	.contact__inner-sp {
		background-image: url(../img/index/contact-bg_sp.jpg);
		background-position: top center;
		background-size: cover;
		background-repeat: no-repeat;

		width: 100%;
		height: 183px;
		position: relative;
	}
	.contact__inner-sp p {
		position: absolute;
		font-size: 13px;
		line-height: 19px;
		text-align: center;
		bottom: 0px;
		left: 50%;
	}
	.contact-content {
		justify-content: flex-start;
	}
	.contact__inner {
		width: 100%;
		min-width: 100%;
		padding: 17px 0 0;
	}
	.contact__inner h3 {
		margin-top: 0px;
		font-size: 25px;
		line-height: 35px;
	}
	.contact__inner-phone span {
		font-size: 26px;
		line-height: 36px;
		margin-left: 10px;
		position: relative;
	}
	.contact__inner-phone span::after {
		position: absolute;
		content: "";
		width: 100%;
		height: 2px;
		bottom: 3px;
		left: 0;
		background-color: #000;
	}
	.contact__inner-phone span a{
		padding: 0;
		margin: 0;
		font-size: 26px;
		line-height: 36px;
	}
	.contact__inner-phone img {
		width: 25.5px;
	}
	.contact__inner a {
		margin: 20px auto 0;
		max-width: 224px;
		height: 50px;
		line-height: 50px;
		text-align: left;
		padding-left: 30px;

		font-size: 13px;
	}
	.contact__inner a img {
		right: 30px;
		transform: translateY(-60%);
	}
	.contact__inner-phone {
		margin: 5px auto;
	}
	.contact-time {
		font-size: 11px;
		line-height: 20px;
	}
	/* contact */
	/* include-banner */
	.banner-top {
		margin-bottom: 27px;
		height: 112px;
		padding: 15px 25px;
		background-image: url(../img/index/banner1_sp.jpg);
	}
	.banner-top p {
		font-size: 14px;
		line-height: 24px;
	}
	.banner-top h3 {
		font-size: 22px;
		line-height: 32px;
		margin: 0px;
	}
	.banner-bottom {
		height: 112px;
		background-image: url(../img/index/banner2_sp.jpg);
	}
	.banner-bottom h3 {
		font-size: 21px;
		line-height: 31px;
		top: 42%;
		right: 16px;
		text-align: right;
	}
	.banner-bottom span {
		right: 16px;
		bottom: 10px;
	}
	.banner3 {
		margin: 50px 0px 40px;
	}
	.banner3__inner {
		height: 112px;
		background-image: url(../img/index/banner3_sp.jpg);
	}
	.banner3__inner h3 {
		font-size: 22px;
		line-height: 32px;
		top: 45%;
		right: inherit;
		left: 15px;
	}
	.banner3__inner span {
		right: 20px;
		bottom: 20px;
	}
	.banner-business {
		margin-top: 40px;
	}
	.banner-business__inner {
		display: block;
		position: relative;
		height: 112px;
		background-image: url(../img/rescue/banner-business_sp.jpg);
	}
	.banner__inner-text {
		padding: 0px;
		text-align: center;
		width: 100%;
		display: flex;
		flex-direction: column;
		height: 100%;
		padding-top: 36px;
	}
	.banner__inner-text h3 {
		font-size: 22px;
		line-height: 32px;
	}
	.banner__inner-text span {
		font-size: 12px;
		line-height: 22px;
		justify-content: flex-end;
		padding-right: 20px;
		margin-top: 6px;
	}
	/* end banner */
	/* include intro section */
	.intro {
		margin-top: 65px;
		margin-bottom: 200px;
	}
	.intro__img {
		width: 89%;
		min-width: initial;
		top: 0;
		left: 0;
		height: auto;
		display: block;
	}
	.intro__img img {
		width: 100%;
		height: auto;
	}
	.intro__card {
		width: 92%;
		max-width: 400px;
		right: -21px;
		bottom: auto;
		top: 74%;
		height: auto;
		padding: 14px 18px 20px 20px;
	}
	.intro__card a {
		position: relative;
		float: right;
		right: 0px;
		bottom: -5px;
		width: 157px;
		padding-left: 28px;
	}
	.intro__card a img {
		right: 20px;
	}
	.intro__card h3 {
		font-size: 25px;
		line-height: 35px;
	}
	.intro__card ul {
		margin-top: 0px;
	}
	.intro__card ul li {
		line-height: 20px;
		margin-bottom: 0px;
	}
	.intro__bg {
		width: 94%;
		height: 100%;
		min-height: 262px;
		top: 21px;
		left: 6%;
	}
	/* intro section */
}
@media only screen and (max-width: 375px) {
	/*section contact */
	.contact__inner h3 {
		font-size: 22px;
		line-height: 32px;
	}
	.contact__inner-phone {
		padding-left: 0px;
	}
	.contact__inner-phone img {
		width: 24px;
	}
	.contact__inner-phone span {
		font-size: 24px;
		line-height: 34px;
		margin-left: 5px;
	}
	/*section contact */
	/* intro section */
	.intro__card h3 {
		font-size: 24px;
		line-height: 34px;
	}
	/* intro section */

	.contact__inner-phone span {
		font-size: 25px;
		line-height: 35px;
	}
}
@media only screen and (max-width: 320px) {
	.intro__card {
		right: -16px;
	}
}
/* ========responsive======== */
