@charset "utf-8";

/*
Theme Name: 稲尾レントオール
Theme URI:
Author:
*/
/* -------------------------------------------------- */
/* RESET*/
/* -------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ul {
	list-style: none;
}

li {
	list-style-type: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	vertical-align: bottom;
}

textarea,
select,
option {
	font: inherit;
}

/* -------------------------------------------------- */
/* WP*/
/* -------------------------------------------------- */
/* 投稿の画像配置 */
.alignright {
	display: block;
	margin: 0 0 10px auto;
}

/* 配置位置 左 */
.alignleft {
	display: block;
	margin: 0 auto 10px 0;
}

/* 配置位置 右 */
.aligncenter {
	display: block;
	margin: 0 auto 10px;
}

/* 配置位置 中央 */
/* .alignright { float: right; padding: 0px 0 10px 10px; } */
/* 後続のテキスト左回り込み */
/*.alignleft { float: left; padding: 0px 10px 10px 0; }*/
/* 後続テキスト右回り込み */

/* -------------------------------------------------- */
/* LINK */
/* -------------------------------------------------- */
a:link,
a:visited {
	text-decoration: none;
	color: #333333;
}

a:hover {
	text-decoration: none;
	color: #007b43;
}

a:active {
	text-decoration: none;
	color: #007b43;
}

/* -------------------------------------------------- */
/* CLEARFIX */
/* -------------------------------------------------- */
.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	*zoom: 1;
}

/* -------------------------------------------------- */
/* COMMON */
/* -------------------------------------------------- */
html {
	font-size: 62.5%;
	/* 10px */
}

body {
	background: #FFFFFF;
	color: #333333;
	font-size: 14px;
	font-size: 1.4rem;
	-webkit-text-size-adjust: 100%;
	overflow: auto;
}

body.active {
	overflow: hidden;
}

#container {
	position: relative;
	font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.5;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}


.brSp {
	display: none;
}

.brTab {
	display: none;
}

.brPc {
	display: inline-block;
}

.en {
	font-family: "Outfit", sans-serif;
}

.on {
	transition: all 0.3s ease-in-out 0s;
}

.on:hover {
	opacity: 0.7;
}

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

@media screen and (min-width: 1025px) and (max-width: 1199px) {
	.inner {
		max-width: 1000px;
		margin: 0 auto;
	}
}

/* -------------------------------------------------- */
/* PC*/
/* -------------------------------------------------- */
/* header */
/* ----------------------------------- */
header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
}

#headerLogo a {
	padding: 20px 30px;
	background: #FFF;
	border-radius: 0 0 20px 0;
	display: block;
}

#headerLogo img {
	height: 50px;
}

#nav {
	padding: 20px 100px 20px 30px;
	background: #FFF;
	border-radius: 0 0 0 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	position: fixed;
	top: 0;
	right: 0;
}

#searchBtn .btn1 {
	height: 50px;
	cursor: pointer;
}


#navContact .btn2 {
	height: 50px;
}


/* ハンバーガーメニュー */
/* ----------------------------------- */
#menuBtnWrap {
	position: fixed;
	top: 20px;
	right: 30px;
	z-index: 1200;
}

#menuBtn {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: #007b43;
	cursor: pointer;
	width: 50px;
	height: 50px;
	transition: all 0.3s ease-in-out 0s;
	border-radius: 10px;
}

#menuBtn::after {
	content: "メニュー";
	font-size: 1rem;
	display: inline-block;
	text-align: center;
	font-weight: 700;
	color: #FFF;
	line-height: 1;
}

#menuBtn.active::after {
	content: "閉じる";
}

#menuBtn .bar {
	width: 20px;
	height: 20px;
	position: relative;
}

/*ボタン内側*/
#menuBtn span {
	width: 100%;
	height: 2px;
	display: inline-block;
	transition: all 0.4s;
	/*アニメーションの設定*/
	position: absolute;
	left: 0;
	border-radius: 2px;
	background: #FFF;
}

#menuBtn span:nth-of-type(1) {
	top: 0;
}

#menuBtn span:nth-of-type(2) {
	top: 7px;
}

#menuBtn span:nth-of-type(3) {
	top: 14px;
}

/*activeクラスが付与されると線が回転して×に*/

#menuBtn.active span:nth-of-type(1) {
	top: 2px;
	left: 0;
	transform: translateY(6px) rotate(-45deg);
}

#menuBtn.active span:nth-of-type(2) {
	opacity: 0;
	/*真ん中の線は透過*/
}

#menuBtn.active span:nth-of-type(3) {
	top: 14px;
	left: 0;
	transform: translateY(-6px) rotate(45deg);
}

#menuBtn:hover,
#menuBtn.active {
	background: #007b43;
}

#menuBtn:hover span,
#menuBtn.active span {
	background: #FFF;
}

#menuBtn:hover .menuTxt,
#menuBtn.active .menuTxt {
	color: #FFF;
}

#menu {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 900;
	transition: all 0.5s ease-in-out 0s;
	opacity: 0;
	pointer-events: none;
}

#menu.active {
	opacity: 1;
	pointer-events: visible;
}

#menu::after {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 800;
}

#menuIn {
	padding: 100px;
	max-height: 100vh;
	overflow: auto;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 900;
	background: #FFF;
	border-radius: 0 0 0 30px;
}

#menuNav {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	font-weight: 600;
	margin-bottom: 20px;
}

#menuNav>ul>li {
	padding-bottom: 10px;
}

.sub {
	padding-left: 10px;
	position: relative;
}

.sub li:not(:last-child) {
	padding-bottom: 10px;
}

.sub::after {
	content: "";
	width: 3px;
	height: 100%;
	background: #014928;
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	top: 0;
	left: 0;
}

#menuEstimateBtn {
	padding-bottom: 30px;
	cursor: pointer;
}

.ctaTel {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.telNumWrap li {
	padding-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0 10px;
}

.shopName {
	padding: 2px 10px;
	background: #e8f0ec;
	font-size: 1.4rem;
	font-weight: 600;
}

.telNum {
	color: #007b43;
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1;
}

.telNum a {
	color: #007b43;
}

.teldate {
	color: #007b43;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.1;
}

.ctaMail {
	display: flex;
	align-items: center;
	gap: 20px;
}

.ctaMail .tit1 {
	padding-bottom: 0;
}

.ctaMailBtn {
	flex: 1;
}

/* 製品検索 */
/* ----------------------------------- */
#searchMenu {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2000;
	transition: all 0.5s ease-in-out 0s;
	opacity: 0;
	pointer-events: none;
}

#searchMenu.active {
	opacity: 1;
	pointer-events: visible;
}

#searchMenu::after {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 800;
}

#searchMenuIn {
	width: 690px;
	max-height: 100vh;
	overflow: auto;
	padding: 20px 30px 40px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 900;
	background: #FFF;
	border-radius: 0 0 0 30px;
}

.disnon {
	display: none;
}

#searchMenuClose {
	width: 50px;
	height: 50px;
	padding: 10px;
	background: #000;
	border-radius: 100vw;
	position: absolute;
	top: 20px;
	right: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	cursor: pointer;
	transition: all 0.3s ease-in-out 0s;
}

#searchMenuClose:hover {
	opacity: 0.7;
}

#searchMenuClose .bar {
	width: 20px;
	height: 20px;
	position: relative;
}

.closeName {
	font-size: 1rem;
	color: #FFF;
}

#searchMenuClose span {
	width: 100%;
	height: 2px;
	display: inline-block;
	transition: all 0.4s;
	/*アニメーションの設定*/
	position: absolute;
	left: 0;
	border-radius: 2px;
	background: #FFF;
}

#searchMenuClose span:nth-of-type(1) {
	top: 0;
	left: 0;
	transform: translateY(6px) rotate(-45deg);
}

#searchMenuClose span:nth-of-type(2) {
	top: 12px;
	left: 0;
	transform: translateY(-6px) rotate(45deg);
}

.searchMenuFw {
	width: calc(100% - 70px);
	padding-bottom: 30px;
	position: relative;
}

.searchInput {
	width: 100%;
	height: 50px;
	padding: 0 100px 0 20px;
	background: #e5e5e5;
	font-size: 1.6rem;
	border-radius: 100vw;
	border: none;
}

.searchInput:focus {
	background: #FFF;
	border: 2px #e5e5e5 solid;
}

.searchBtn {
	padding: 10px 20px;
	background: #ffcc00;
	border-radius: 100vw;
	border: none;
	font-weight: 600;
	position: absolute;
	top: 6px;
	right: 8px;
	cursor: pointer;
	transition: all 0.3s ease-in-out 0s;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
}

.searchBtn:hover {
	opacity: 0.7;
}

.searchBtn::before {
	content: "";
	width: 15px;
	height: 15px;
	background: url(img/common/icon_search1.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

#popularKeywords {
	padding-bottom: 30px;
}

#KeywordList ul {
	padding: 15px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px 10px;
	background: #f2f2ea;
	border-radius: 10px;
}

#searchTab {
	padding-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	text-align: center;
}

#searchTab li {
	width: 50%;
	font-size: 1.6rem;
	font-weight: bold;
	color: #a7a7a7;
}

#searchTab li.select span {
	color: #007b43;
	border-bottom: 3px solid #007b43;
	cursor: pointer;
}

#searchTab li span:hover {
	color: #007b43;
	border-bottom: 3px solid #007b43;
	cursor: pointer;
}

.searchTabContent ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 2%;
}

.searchTabContent ul li {
	width: 49%;
}

.searchTabContent ul li a {
	width: 100%;
	height: 60px;
	border: 1px solid #d2d2d2;
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	gap: 10px;
	line-height: 1.2;
	transition: all 0.3s ease-in-out 0s;
}

.searchTabContent #menuScene li a {
	height: 110px;
}

.searchTabContent ul li a:hover {
	border: 1px solid #007b43;
	color: #007b43;
}

.searchTabContent ul li a::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.searchTabContent ul li a.set::before {
	width: 28px;
	height: 24px;
	background: url(img/common/icon_menu_set.svg) 0 0 no-repeat;
	background-size: contain;
}

.searchTabContent ul li a.set:hover::before {
	background: url(img/common/icon_menu_set_hover.svg) 0 0 no-repeat;
}

.searchTabContent ul li a.light::before {
	width: 23px;
	height: 23px;
	background: url(img/common/icon_menu_light.svg) 0 0 no-repeat;
	background-size: contain;
}

.searchTabContent ul li a.light:hover::before {
	background: url(img/common/icon_menu_light_hover.svg) 0 0 no-repeat;
}

.searchTabContent ul li a.out::before {
	width: 23px;
	height: 18px;
	background: url(img/common/icon_menu_out.svg) 0 0 no-repeat;
	background-size: contain;
}

.searchTabContent ul li a.out:hover::before {
	background: url(img/common/icon_menu_out_hover.svg) 0 0 no-repeat;
}

.searchTabContent ul li a.office::before {
	width: 43px;
	height: 20px;
	background: url(img/common/icon_menu_office.svg) 0 0 no-repeat;
	background-size: contain;
}

.searchTabContent ul li a.office:hover::before {
	background: url(img/common/icon_menu_office_hover.svg) 0 0 no-repeat;
}

.searchTabContent ul li a.exhibition::before {
	width: 24px;
	height: 34px;
	background: url(img/common/icon_menu_exhibition.svg) 0 0 no-repeat;
	background-size: contain;
}

.searchTabContent ul li a.exhibition:hover::before {
	background: url(img/common/icon_menu_exhibition_hover.svg) 0 0 no-repeat;
}

.searchTabContent ul li a.ceremony::before {
	width: 26px;
	height: 23px;
	background: url(img/common/icon_menu_ceremony.svg) 0 0 no-repeat;
	background-size: contain;
}

.searchTabContent ul li a.ceremony:hover::before {
	background: url(img/common/icon_menu_ceremony_hover.svg) 0 0 no-repeat;
}

.searchTabContent ul li a.cooking::before {
	width: 25px;
	height: 24px;
	background: url(img/common/icon_menu_cooking.svg) 0 0 no-repeat;
	background-size: contain;
}

.searchTabContent ul li a.cooking:hover::before {
	background: url(img/common/icon_menu_cooking_hover.svg) 0 0 no-repeat;
}

.searchTabContent ul li a.party::before {
	width: 30px;
	height: 28px;
	background: url(img/common/icon_menu_party.svg) 0 0 no-repeat;
	background-size: contain;
}

.searchTabContent ul li a.party:hover::before {
	background: url(img/common/icon_menu_party_hover.svg) 0 0 no-repeat;
}

.searchTabContent ul li a.audio::before {
	width: 17px;
	height: 24px;
	background: url(img/common/icon_menu_audio.svg) 0 0 no-repeat;
	background-size: contain;
}

.searchTabContent ul li a.audio:hover::before {
	background: url(img/common/icon_menu_audio_hover.svg) 0 0 no-repeat;
}

.searchTabContent ul li a.electric::before {
	width: 29px;
	height: 19px;
	background: url(img/common/icon_menu_electric.svg) 0 0 no-repeat;
	background-size: contain;
}

.searchTabContent ul li a.electric:hover::before {
	background: url(img/common/icon_menu_electric_hover.svg) 0 0 no-repeat;
}

.searchTabContent ul li a.sports::before {
	width: 26px;
	height: 29px;
	background: url(img/common/icon_menu_sports.svg) 0 0 no-repeat;
	background-size: contain;
}

.searchTabContent ul li a.sports:hover::before {
	background: url(img/common/icon_menu_sports_hover.svg) 0 0 no-repeat;
}

.searchTabContent ul li a.other::before {
	width: 20px;
	height: 25px;
	background: url(img/common/icon_menu_other.svg) 0 0 no-repeat;
	background-size: contain;
}

.searchTabContent ul li a.other:hover::before {
	background: url(img/common/icon_menu_other_hover.svg) 0 0 no-repeat;
}

.searchTabContent #menuScene li a.outEvent::before {
	width: 100px;
	height: 100px;
	background: url(img/common/illust_out.svg) center center no-repeat;
	background-size: contain;
}

.searchTabContent #menuScene li a.sportsEvent::before {
	width: 100px;
	height: 100px;
	background: url(img/common/illust_sports.svg) center center no-repeat;
	background-size: contain;
}

.searchTabContent #menuScene li a.seasonEvent::before {
	width: 100px;
	height: 100px;
	background: url(img/common/illust_season.svg) center center no-repeat;
	background-size: contain;
}

.searchTabContent #menuScene li a.seminarEvent::before {
	width: 100px;
	height: 100px;
	background: url(img/common/illust_seminar.svg) center center no-repeat;
	background-size: contain;
}

.searchTabContent #menuScene li a.exhibitionEvent::before {
	width: 100px;
	height: 100px;
	background: url(img/common/illust_exhibition.svg) center center no-repeat;
	background-size: contain;
}

.searchTabContent #menuScene li a.partyEvent::before {
	width: 100px;
	height: 100px;
	background: url(img/common/illust_party.svg) center center no-repeat;
	background-size: contain;
}

.searchTabContent #menuScene li a.ceremonyEvent::before {
	width: 100px;
	height: 100px;
	background: url(img/common/illust_ceremony.svg) center center no-repeat;
	background-size: contain;
}

.searchTabContent #menuScene li a.hotCool::before {
	width: 100px;
	height: 100px;
	background: url(img/common/illust_hot_cool.svg) center center no-repeat;
	background-size: contain;
}

.disnon {
	display: none;
}


/* title */
/* ----------------------------------- */
.tit1 {
	padding-bottom: 10px;
	font-size: 1.8rem;
	font-weight: bold;
	color: #014928;
}

.tit2 {
	padding-bottom: 10px;
	font-size: 1.6rem;
	font-weight: bold;
	color: #000;
}

.tit3 {
	padding: 20px 50px;
	margin-bottom: 40px;
	font-size: 3rem;
	color: #007b43;
	border: 2px solid #007b43;
	line-height: 1;
	display: inline-block;
	font-weight: bold;
	border-radius: 5px;
	box-shadow: 5px 5px 0px 0px rgba(207, 229, 218, 1);
}


.tit4 {
	padding-bottom: 30px;
	font-size: 2.8rem;
	font-weight: bold;
	color: #007b43;
	text-align: center;
}

/* btn */
/* ----------------------------------- */
.btn1 {
	padding: 10px 40px;
	background: #ffcc00;
	color: #000;
	font-size: 1.8rem;
	font-weight: bold;
	border-radius: 100vw;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease-in-out 0s;
}

a.btn1 {
	color: #000;
}

.btn1:hover {
	opacity: 0.7;
}

.btn1.search::before {
	content: "";
	width: 19px;
	height: 19px;
	background: url(img/common/icon_search1.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

.btn1.estimate::before {
	content: "";
	width: 20px;
	height: 25px;
	background: url(img/common/icon_calculator.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

.btn1.arrow::after {
	content: "";
	width: 17px;
	height: 17px;
	background: url(img/common/icon_arrow3.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

.btn1.add::after {
	content: "";
	width: 17px;
	height: 17px;
	background: url(img/common/icon_add.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}


.btn2 {
	padding: 10px 20px;
	font-size: 1.4rem;
	border: 2px solid #007b43;
	background: #FFF;
	color: #007b43 !important;
	border-radius: 100vw;
	font-weight: bold;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease-in-out 0s;
	cursor: pointer;
}

.btn2:hover {
	background: #007b43;
	color: #FFF !important;
}

.btn2.mail::before {
	content: "";
	width: 19px;
	height: 14px;
	background: url(img/common/icon_mail.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

.btn2.mail:hover::before {
	background: url(img/common/icon_mail_hover.svg) 0 0 no-repeat;
}

.btn2.arrow {
	gap: 5px;
}

.btn2.arrow::after {
	content: "";
	width: 17px;
	height: 17px;
	background: url(img/common/icon_arrow1.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

.btn2.arrow:hover::after {
	content: "";
	width: 17px;
	height: 17px;
	background: url(img/common/icon_arrow1_hover.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

.btn2.arrowBottom {
	gap: 5px;
	flex-direction: column;
}

.btn2.arrowBottom::after {
	content: "";
	width: 17px;
	height: 17px;
	background: url(img/common/icon_arrow2.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

.btn2.arrowBottom:hover::after {
	content: "";
	width: 17px;
	height: 17px;
	background: url(img/common/icon_arrow4.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
	transform: rotate(180deg);
}

.btn3 {
	padding: 10px 40px;
	font-size: 1.8rem;
	border: 2px solid #007b43;
	background: #FFF;
	color: #007b43 !important;
	border-radius: 100vw;
	font-weight: bold;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease-in-out 0s;
}

.btn3::after {
	content: "";
	width: 15px;
	height: 15px;
	background: url(img/common/icon_arrow1.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

.btn3:hover {
	background: #007b43;
	color: #FFF !important;
}

.btn3:hover::after {
	background: url(img/common/icon_arrow1_hover.svg) 0 0 no-repeat;
	background-size: contain;
}

a.link1 {
	color: #007b43;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.link1:hover {
	text-decoration: underline;
}

.link1::after {
	content: "";
	width: 14px;
	height: 14px;
	background: url(img/common/icon_arrow1.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

/* リンク */
/* ----------------------------------- */
#underLinkWrap {
	padding-bottom: 100px;
}

#linkBtn {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 1.4%;
}

#linkBtn li {
	width: 32.4%;
	padding: 5px;
	background: #65b792;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	z-index: 1;
}

#linkBtn li::before {
	content: "";
	width: 50%;
	height: 100%;
	background: #007b43;
	position: absolute;
	top: 0%;
	left: 0%;
	transition: all 0.3s ease-in-out 0s;
	z-index: 2;
}

#linkBtn li:hover::before {
	left: 50%;
}

#linkBtn li.half {
	width: 49.3%;
	padding: 5px;
	background: #65b792;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

#linkBtn li a {
	height: 240px;
	background: #FFF;
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	z-index: 3;
}

#linkBtn li.half a {
	height: 150px;
	background: #FFF;
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}

.linkImg {
	width: 200px;
	height: 150px;
	margin-bottom: 10px;
}

#linkBtn li.half a .linkImg {
	width: 200px;
	height: 100px;
	margin-bottom: 0;
}

.linkImg img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}

.linkTit {
	font-size: 1.8rem;
	font-weight: bold;
	color: #007b43;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.linkTit::after {
	content: "";
	width: 18px;
	height: 18px;
	background: url(img/common/icon_arrow1.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

.topLinkSubTit {
	padding: 0 10px;
	font-size: 1.5;
	background: #e8f0ec;
}

/* cta */
/* ----------------------------------- */
#cta {
	padding: 70px 0;
	background: #007b43;
}

#ctaIn {
	padding: 30px;
	background: #FFF;
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10%;
}

#ctaTxt {
	flex: 1;
}

.ctaTit1 {
	padding-bottom: 20px;
	font-size: 2rem;
	color: #014928;
	font-weight: bold;
}

.ctaTit1::before {
	content: attr(data-en);
	font-size: 6rem;
	font-weight: 500;
	color: #cfe5da;
	font-family: "Outfit", sans-serif;
	display: block;
	line-height: 1;
}

#ctaContact {}

.ctaTitWrap {
	padding-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.ctaTit2 {
	font-size: 1.8rem;
	color: #014928;
	font-weight: bold;
}

.ctaShopLink a {
	color: #007b43;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
	font-weight: 500;
}

.ctaShopLink a::after {
	content: "";
	width: 15px;
	height: 15px;
	background: url(img/common/icon_arrow1.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

#ctaTel {
	padding-bottom: 15px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
}

#ctaTel li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.ctaShopTit {
	padding: 0 5px;
	background: #e8f0ec;
	font-weight: 500;

}

.ctaShopTel {
	font-size: 3.4rem;
	font-weight: 500;
	color: #007b43;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
	line-height: 1;
}

.ctaShopTel a {
	color: #007b43;
}

.ctaShopTel::before {
	content: "";
	width: 18px;
	height: 18px;
	background: url(img/common/icon_tel.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

.ctaShopTime {
	font-size: 1.2rem;
	color: #007b43;
	font-weight: 500;
}

#ctaMail {
	display: flex;
	align-items: center;
	gap: 20px;
}

/* footer */
/* ----------------------------------- */
footer {
	padding: 70px 0;
	background: #f2f2ea;
	position: relative;
}

#footerBnr {
	padding-bottom: 30px;
	text-align: center;
}

#footerWrap {
	padding-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#footerShopInfo {}

#footerShopInfo ul {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

#footerShopInfo li {}

#fLogo {
	padding-bottom: 30px;
}

.footerShopName {
	padding-bottom: 5px;
	font-size: 1.5rem;
	color: #014928;
	font-weight: bold;
}

.footerShopAddress {}

#footerNavWrap {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

#footerNavWrap li {
	font-weight: bold;
	padding-bottom: 10px;
}

#footerNavWrap li.under {
	padding-left: 10px;
	padding-bottom: 0;
	margin-bottom: 10px;
	border-left: 3px solid #014928;
}

.footerNav .under a {
	display: block;
}

.footerNav .popup {
	cursor: pointer;
}
.footerNav .popup:hover {
	color:#007b43;
}

.footerNav .under a:not(:last-child) {
	padding-bottom: 10px;
}

.popup {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.popup::after {
	content: "";
	width: 20px;
	height: 17px;
	background: url(img/common/icon_link.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

#pageTop {
	position: absolute;
	bottom: 70px;
	right: 160px;
}

/* 見積リスト */
/* ----------------------------------- */
.estimateMenuBtn {
	width: 110px;
	height: 110px;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 10;
	border-radius: 100vw;
	overflow: hidden;
	background: #ffcc00;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-weight: bold;
	font-size: 1.3rem;
	gap: 5px;
	color: #333;
	cursor: pointer;
	transition: all 0.3s ease-in-out 0s;
}
.estimateMenuBtn span{
	position: fixed;
	background:#dd1c1c;
	color:#FFF;
	bottom: 100px;
	right: 60px;
	width:20px;
	height:20px;
	text-align:center;
	border-radius: 50%;
}
.estimateMenuBtn.add {
	background: #e13f3f;
	color: #FFF;
}
.estimateMenuBtn.add span{
	display:none;
}

.estimateMenuBtn:hover {
	opacity: 0.7;
	color: #333;
}

.estimateMenuBtn::before {
	content: "";
	width: 25px;
	height: 35px;
	background: url(img/common/icon_calculator.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

.estimateMenuBtn.add::before {
	background: url(img/common/icon_calculator_hover.svg) 0 0 no-repeat;
	background-size: contain;
}

.estimateMenuBtn::after {
	content: "見積リスト";
}

.estimateMenuBtn.add {
	animation: bounce 0.4s ease;
}

.estimateMenuBtn.add:after {
	content: "追加しました";
}

#estimateMenu {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3000;
	pointer-events: none;
	transition: all 0.3s ease-in-out 0s;
}

#estimateMenu.active {
	pointer-events: visible;
}

#estimateMenu::after {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: block;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease-in-out 0s;
	position: relative;
	z-index: 1;
}

#estimateMenu.active::after {
	opacity: 1;
	pointer-events: visible;
}

#estimateMenuWrap {
	overflow: hidden;
	border-radius: 20px;
	position: fixed;
	top: 50%;
	right: 30px;
	z-index: 2;
	-webkit-transform: translate(calc(100% + 30px), -50%);
	transform: translate(calc(100% + 30px), -50%);
	transition: all 0.5s ease-in-out 0s;
}

#estimateMenuIn {
	max-width: 600px;
	max-height: 90vh;
	overflow: auto;
	padding: 80px 30px 30px 30px;
	background: #FFF;
	position: relative;
}

#estimateMenu.active #estimateMenuWrap {
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
#emReset {
	position: absolute;
	top: 25px;
	right: 35%;
	text-align:right;
}

#emClose {
	width: 50px;
	height: 50px;
	padding: 10px;
	background: #000;
	border-radius: 100vw;
	position: absolute;
	top: 20px;
	right: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	cursor: pointer;
	transition: all 0.3s ease-in-out 0s;
}

#emClose:hover {
	opacity: 0.7;
}

#emClose .bar {
	width: 20px;
	height: 20px;
	position: relative;
}

.closeName {
	font-size: 1rem;
	color: #FFF;
}

#emClose span {
	width: 100%;
	height: 2px;
	display: inline-block;
	transition: all 0.4s;
	/*アニメーションの設定*/
	position: absolute;
	left: 0;
	border-radius: 2px;
	background: #FFF;
}

#emClose span:nth-of-type(1) {
	top: 0;
	left: 0;
	transform: translateY(6px) rotate(-45deg);
}

#emClose span:nth-of-type(2) {
	top: 12px;
	left: 0;
	transform: translateY(-6px) rotate(45deg);
}

#emItems {
	max-height: 350px;
	padding-right: 30px;
	margin-bottom: 30px;
	position: relative;
}
#emItems ol{
	padding:0 0 0 35px;
}
#emItems ol li{
	list-style-type: decimal;
	position:relative;
}
#emItems ol li::marker{
	font-size: 2rem;
	font-family: "Outfit", sans-serif;
	font-weight: bold;
}
.num {
	font-size: 2rem;
	font-family: "Outfit", sans-serif;
	font-weight: bold;
}

.menuItemWrap {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #eeeeee;
	gap: 30px;
	justify-content:space-between;
}

#emItems li:not(:last-child) .menuItemWrap {
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.menuItemInfo {
	width: 100%;
}

.menuItemInfo .name {
	font-size: 1.6rem;
	font-weight: 500;
}

.menuItemPriceWrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 15px;
	width: 100%;
}

.rentalTerm {
	font-size: 1.3rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
}

.alphabet {
	width: 24px;
	height: 24px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: #e5e5e5;
	font-weight: bold;
	border-radius: 100vw;
}

.menuItemPrice {
	font-weight: 500;
}

.menuItemPrice .priceNum {
	font-size: 2.3rem;
}

.menuItemOther {
	display: flex;
	align-items: center;
	gap: 15px;
}

.quantity label {
	font-size: 1rem;
	display: block;
}

.quantitySelect {
	border: 2px solid #d2d2d2;
	background: #FFF;
	display: block;
	border-radius: 5px;
}

.trush {
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease-in-out 0s;
}

.trush:hover {
	opacity: 0.7;
}

#emRentalPeriod {
	padding-bottom: 30px;
	text-align: center;
}

#emRentalPeriodTit {
	padding-bottom: 5px;
	font-weight: bold;
	font-size: 1.6rem;
}

.emRentalPeriodPullDown {
	width: 300px;
	padding: 10px;
	display: inline-block;
	border: 2px solid #d2d2d2;
	background: #FFF;
	font-size: 1.6rem;
	text-align: center;
	border-radius: 5px;
	font-weight: bold;
}

#detailLink {
	font-size: 1.2rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#emTotal {
	padding: 15px 20px;
	margin-bottom: 20px;
	border-radius: 10px;
	background: #f6f5f3;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

#emTotalTit {
	font-size: 1.6rem;
}

#emTotalPrice {
	font-size: 1.8rem;
	font-weight: bold;
	color: #dd1c1c;
	font-feature-settings: "palt";
	display: flex;
	align-items: baseline;
	margin-top: 1em;
}

#emTotalPrice .large {
	font-size: 3.2rem;
	margin:0 5px 0 0;
	letter-spacing: -0.15em;
}
.digit {
	display: inline-block;
	width: 1ch;
	height: 3.2rem;
	overflow: hidden;
	position: relative;
	text-align:center;
}
.digit-inner {
	position: absolute;
	top: 0;
	left: 0;
	transition: transform 0.4s ease-out;
}
.digit-inner span {
	display: block;
	height: 3.2rem;
	line-height: 3.2rem;
}
.comma {
	display: inline-block;
	width: 0.5ch;
}


#emBtnWrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 10px;
}

#emSaveBtn {
	position: absolute;
	top: 20px;
	right: 30px;
	/* width: 25%; */
	font-size: 1.8rem;
	font-weight: bold;
}

#emSaveBtn .btn2{
	padding: 11px 20px 11px 40px;
}

#emSaveBtn .btn2::before,
#emSaveBtn .btn2::after {
	content: "";
	width: 20px;
	height: 3px;
	display: inline-block;
	transition: all 0.4s;
	/*アニメーションの設定*/
	position: absolute;
	border-radius: 2px;
	background: #007b43;
}

#emSaveBtn .btn2:hover::before,
#emSaveBtn .btn2:hover::after {
	background: #FFF;
}

#emSaveBtn .btn2::before {
	top: 16px;
	left: 16px;
	transform: translateY(6px) rotate(-45deg);
}

#emSaveBtn .btn2::after {
	top: 28px;
	left: 16px;
	transform: translateY(-6px) rotate(45deg);
}

.save .btn2 {
	animation: bounce 0.4s ease;
	border:2px solid #e13f3f;
	background: #e13f3f;
	color: #e13f3f !important;
}

.save .btn2::before,
.save .btn2::after {
	background: #FFF!important;
}

.save .btn2 span{
	position: relative;
}

.save .btn2 span::after{
	content:"保存しました";
	color:#FFF !important;
	position:absolute;
	top: 0;
	left: 0;
}

/* .save .btn2:after{
	content:"保存しました";
	color:#FFF;
	position:absolute;
} */

.reset_btn{
	display:none;
	margin:10px 0 0 0;
	font-size: 1.4rem;
	text-align:center;
	width:100%;
}

#emFormBtn {
	flex: 1;
}

.anno {
	text-align: right;
	width: 100%;
}

/* 下層FV */
/* ----------------------------------- */
#underFv {
	height: 300px;
	margin-bottom: 70px;
	background: #f2f2ea;
	border-bottom: 4px solid #014928;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#underFv h1,#underFv p {
	font-size: 4rem;
	font-weight: bold;
	color: #014928;
	line-height: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	-webkit-transform: translate(0, 40px);
	transform: translate(0, 40px);
}

#underFv h1 span {
	padding: 5px 10px;
	margin-top: 10px;
	font-size: 1.6rem;
	font-weight: bold;
	color: #333;
	display: inline-block;
	background: #FFF;
}

/* パンくず */
/* ----------------------------------- */
#bc {
	padding-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

#bc ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

#bc ul li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	font-size: 1.2rem;
}

#bc ul li a {
	transition: all 0.3s ease-in-out 0s;
}

#bc ul li a.home:hover {
	opacity: 0.7
}

#bc ul li:not(:last-child)::after {
	content: "";
	width: 10px;
	height: 10px;
	background: url(img/common/icon_arrow_bc.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

/* 商品一覧 */
/* ----------------------------------- */
/*=======チェックボックス=========*/
/* ラベルのスタイル */
.bounceCheckbox {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

/* デフォルトチェックボックスを非表示 */
.bounceInput {
	display: none;
}

/* チェックボックスの外枠 */
.bounceBox {
	position: relative;
	width: 26px;
	height: 26px;
	border: 2px solid #c3c3c3;
	border-radius: 6px;
	background-color: white;
	transition: all 0.2s ease;
}

/* SVGのスタイル */
.bounceSvg {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
}

/* チェックマークのパス */
.bounceCheck {
	fill: none;
	stroke: white;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 24;
	stroke-dashoffset: 24;
	transition: stroke-dashoffset 0.3s ease;
}

/* チェック時のスタイル */
.bounceInput:checked~.bounceBox {
	background-color: #ffcc00;
	border-color: #ffcc00;
	animation: bounce 0.4s ease;
}

.bounceInput:checked~.bounceBox .bounceCheck {
	stroke-dashoffset: 0;
}

/* バウンスアニメーション */
@keyframes bounce {
	0% {
		transform: scale(1);
	}

	30% {
		transform: scale(0.9);
	}

	60% {
		transform: scale(1.15);
	}

	100% {
		transform: scale(1);
	}
}

/* ホバー時のスタイル */
.bounceCheckbox:hover .bounceBox {
	border-color: #ffcc00;
}

/*=======アコーディオン=========*/
#itemsWrap {
	padding-bottom: 100px;
}

#itemListIntro {
	padding-bottom: 30px;
	font-size: 1.8rem;
	text-align: center;
}

#itemListResult {
	padding-bottom: 20px;
	font-size: 1.8rem;
	text-align: center;
	font-weight: bold;
}

#noResult {
	font-size: 1.8rem;
	text-align: center;
	font-weight: bold;
}

.itemsAnno {
	padding-bottom: 5px;
	font-size: 1.2rem;
	text-align: right;
}

.itemsGroup:not(:last-child) {
	padding-bottom: 20px;
}

.itemsTit {
	padding: 15px 80px 15px 30px;
	font-size: 2.4rem;
	font-weight: bold;
	background: #cfe5da;
	color: #014928;
	position: relative;
	cursor: pointer;
}

.itemsTit::after {
	content: "";
	width: 40px;
	height: 40px;
	background: url(img/common/icon_arrow4.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	top: 50%;
	right: 30px;
	-webkit-transform: translate(0, -50%) rotate(180deg);
	transform: translate(0, -50%) rotate(180deg);
}

.itemsTit.active::after {
	-webkit-transform: translate(0, -50%) rotate(0deg);
	transform: translate(0, -50%) rotate(0deg);
}

.itemsTit.active {
	background: #007b43;
	color: #FFF;
}

.itemsTit.on {
	background: #007b43;
	color: #ffcc00;
}

.itemsList li {
	padding: 20px 30px;
	background: #f6f5f3;
	margin-bottom: 2px;
	display: flex;
	/* flex-wrap: wrap; */
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.itemListTitWrap {
	display: flex;
	align-items: center;
	gap: 15px;
}

.itemListTit {
	flex: 1;
}

.itemListImg {
	width: 60px;
	height: 60px;
	border-radius: 5px;
	overflow: hidden;
}

.itemListImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.modelNumber {
	font-size: 1.4rem;
}

.itemName {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.2;
}

.itemListPriceWrap {
	display: flex;
	align-items: center;
	gap: 15px;
}

.itemListPrice {
	font-size: 1.4rem;
	font-weight: bold;
}

.itemListPrice .en {
	font-size: 1.8rem;
}

.itemListQuantity label {
	display: block;
	font-size: 1rem;
	font-weight: 500;
}

.itemListQuantitySelect {
	background: #FFF;
	border: 2px solid #d2d2d2;
	background: #FFF;
	display: block;
	border-radius: 5px;
}

.itemListColor label {
	display: block;
	font-size: 1rem;
	font-weight: 500;
}

.itemListColorSelect {
	background: #FFF;
	border: 2px solid #d2d2d2;
	background: #FFF;
	display: block;
	border-radius: 5px;
}

/* アコーディオン */
.accordion {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.5s ease-out;
}

.accordion.active {
	grid-template-rows: 1fr;
}

.accordionIn {
	overflow: hidden;
}

/* 見積追加ボタン */
#estimateAddWrap {
	overflow: hidden;
}

#estimateAddIn {
	width: 100%;
	padding: 35px 0;
	background: rgba(0, 0, 0, 0.8);
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 1000;
	-webkit-transform: translate(0, 100%);
	transform: translate(0, 100%);
	transition: all 0.3s ease-in-out 0s;
}

#estimateAddIn.active {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

#estimateAdd {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

#estimateAdd .btn1 {
	max-width: 420px;
	cursor: pointer;
}


#estimateAddSub {
	color: #FFF;
	font-weight: bold;
	font-size: 1.2rem;
}

#estimateDel{
	position:absolute;
	right:20px;
	bottom:10px;
}
#estimateDel a{
	color:#FFF;
	padding:0;
	margin:0 0 0 5px;
    line-height: 20px;
	vertical-align: top;
}
#estimateDel a:hover{
	text-decoration: underline;
}
.strong {
	color: #dd1c1c;
	font-size: 1.4rem;
}

#estimateLoading{
	opacity: 0;
}

.spinner {
	display:inline-block;
	margin:0;
    width: 20px;
    height: 20px;
	margin:0;
	padding:0;
    line-height: 20px;
	vertical-align: top;
    border: 3px solid rgba(255, 255, 255, 0.9); /* Or use a CSS var for this color */
    border-radius: 50%;
    border-top-color: #007b2b;
    animation: spin 0.8s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }



/* -------------------------------------------------- */
/* TAB&SP */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {
	.inner {
		max-width: 92%;
		margin: 0 auto;
	}

	.brSp {
		display: none;
	}

	.brTab {
		display: inline-block;
	}

	.brPc {
		display: none;
	}

	/* header */
	/* ----------------------------------- */
	#underFv h1, #underFv p {
		font-size: 3rem;
		-webkit-transform: translate(0, 40px);
		transform: translate(0, 40px);
	}

	/* title */
	/* ----------------------------------- */
	.tit3 {
		font-size: 2.4rem;
	}
	
	/* btn */
	/* ----------------------------------- */
	/* footer */
	/* ----------------------------------- */
	#ctaIn {
		flex-direction: column;
		justify-content: center;
		gap: 30px 10%;
	}

	#ctaContact {
		width: 100%;
	}

	#footerShopInfo ul {
		padding-bottom: 30px;
	}
	/* link */
	/* ----------------------------------- */
	.linkTit {
		font-size: 1.5rem;
	}
}


/* -------------------------------------------------- */
/* TAB(調整) */
/* -------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {}

/* -------------------------------------------------- */
/* SP(調整) */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
	.brSp {
		display: inline-block;
	}

	.brTab {
		display: inline-block;
	}

	.brPc {
		display: none;
	}

	/* header */
	/* ----------------------------------- */
	#searchBtn span > span {
		display: none;
	}

	#searchBtn .btn1 {
		padding: 10px 10px;
		height: 40px;
	}

	#navContact .btn2 {
		padding: 10px 8px;
		height: 40px;
	}

	#navContact span {
		display: none;
	}

	#headerLogo a {
		padding: 20px;
	}

	#headerLogo img {
		height: 30px;
	}

	#nav {
		padding: 15px 70px 15px 20px;
		gap: 10px;
	}

	#menuBtnWrap {
		position: fixed;
		top: 15px;
		right: 20px;
		z-index: 1200;
	}

	#menuBtn {
		width: 40px;
		height: 40px;
	}

	#menuBtn::after {
		font-size: 0.8rem;
	}

	#menuBtn .bar {
		width: 18px;
		height: 18px;
		position: relative;
	}

	/* メニュー */
	#menuIn {
		width: 100%;
		padding: 50px 4%;
		height: 100vh;
		border-radius: 0;
	}

	#menuNav {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		align-items: center;
		gap: 0;
		font-weight: 600;
		margin-bottom: 20px;
		font-size: 1.6rem;
	}

	#menuNav ul {
		width: 60%;
	}

	#menuNav ul.sub {
		width: 100%;
	}

	/* 検索 */
	#searchMenuIn {
		width: 100%;
		max-height: 100vh;
		padding: 80px 4% 40px;
	}

	.searchMenuFw {
		width: 100%;
		padding-bottom: 15px;
		position: relative;
	}

	.searchInput {
		width: 100%;
		height: 50px;
		padding: 0 100px 0 20px;
		background: #e5e5e5;
		font-size: 1.5rem;
		border-radius: 100vw;
		border: none;
	}

	#searchTab li {
		width: 50%;
		font-size: 1.4rem;
		font-weight: bold;
		color: #a7a7a7;
	}

	.searchTabContent ul li a {
		font-size: 1.2rem;
		gap: 5px;
	}

	.searchTabContent ul li a.ceremony::before {
		width: 22px;
		height: 20px;
		background: url(img/common/icon_menu_ceremony.svg) 0 0 no-repeat;
		background-size: contain;
	}

	.searchTabContent ul {
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
		gap: 10px 2%;
	}

	.searchTabContent #menuScene li a {
		padding: 15px;
		height: 100%;
	}

	#searchMenuClose {
		right: 4%;
	}

	/* 見積リスト */
	.estimateMenuBtn {
		width: 80px;
		height: 80px;
		position: fixed;
		bottom: 10px;
		right: 4%;
		z-index: 10;
		font-size: 1rem;
		gap: 0;
	}
	.estimateMenuBtn span{
		bottom: 65px;
		right: 30px;
	}

	.estimateMenuBtn::before {
		width: 20px;
		height: 29px;
	}

	#estimateMenuWrap {
		width: 92%;
		right: 4%;
	}

	#estimateMenuIn {
		max-width: 600px;
		max-height: 90vh;
		overflow: auto;
		padding: 80px 4% 30px;
		background: #FFF;
		position: relative;
	}

	#emItems {
		padding-right: 15px;
	}
	#emItems ol{
		padding:0 0 0 30px;
	}
	#emItems ol li::marker{
		font-size: 1.6rem;
	}
	.num {
		font-size: 1.6rem;
	}

	.menuItemWrap {
		gap: 10px;
	}

	.menuItemInfo {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
	}

	.menuItemOther {
		justify-content: flex-end;
		flex-direction: column;
	}

	.menuItemInfo .name {
		font-size: 1.4rem;
	}

	.menuItemPriceWrap {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-end;
		flex-direction: column;
		gap: 0;
	}

	#emTotal {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}

	#emFormBtn {
		width: 100%;
	}

	#emFormBtn .btn1 {
		font-size: clamp(1.2rem , 3.9vw , 1.8rem);
	}

	#emBtnWrap .anno {
		font-size: 1rem;
		text-align: center;
	}

	#emClose {
		right: 4%;
	}

	#emSaveBtn{
		width:50%;
		right: 4%;
	}
	#emReset {
		left:4%;
		right:auto;
		width:40%;
		text-align:center;
	}

	/* LINK */
	/* ----------------------------------- */
	#linkBtn li {
		width: 100%;
	}

	#linkBtn li.half {
		width: 100%;
	}

	.linkImg {
		width: 200px;
		height: 100px;
		margin-bottom: 10px;
	}

	#linkBtn li a {
		padding: 20px;
		height: auto;
	}

	#linkBtn li.half a {
		height: auto;
	}

	#linkBtn li.half a .linkImg {
		width: 200px;
		height: 100px;
		margin-bottom: 10px;
	}

	/* title */
	/* ----------------------------------- */
	.tit1 {
		padding-bottom: 10px;
		font-size: 1.6rem;
		font-weight: bold;
		color: #014928;
	}

	.tit3 {
		padding: 20px 40px;
		margin-bottom: 20px;
		font-size: clamp(1.7rem, 3vw, 2rem);
	}
	
	.tit4 {
		padding-bottom: 20px;
		font-size: 1.8rem;
		font-weight: bold;
		color: #007b43;
		text-align: center;
	}

	/* btn */
	/* ----------------------------------- */
	.btn1 {
		padding: 10px 30px;
		font-size: 1.6rem;
	}
	
	.btn2 {
		width: 100%;
	}

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

	#footerBnr img {
		width: 100%;
	}
	
	#pageTop {
		position: absolute;
		bottom: 100px;
		right: 4%;
	}

	/* CTA */
	/* ----------------------------------- */
	#ctaIn {
		padding: 30px 5%;
		border-radius: 10px;
	}
	
	#ctaTel li {
		gap: 0px 5px;
	}

	.ctaTit1::before {
		font-size: 5rem;
		line-height: 1;
	}

	#ctaTel li:not(:last-child) {
		padding-bottom: 15px;
	}

	#ctaMail {
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		gap: 0;
	}

	.ctaMailBtn {
		width: 100%;
	}

	.ctaShopTel {
		font-size: 3.2rem;
	}

	/* 下層MV */
	/* ----------------------------------- */
	#underFv {
		height: 200px;
		margin-bottom: 40px;
	}

	#underFv h1, #underFv p {
		font-size: 2.4rem;
		-webkit-transform: translate(0, 30px);
		transform: translate(0, 30px);
	}

	/* アコーディオン（商品一覧） */
	/* ----------------------------------- */
	#itemListIntro {
		padding-bottom: 30px;
		font-size: 1.6rem;
		text-align: center;
	}

	#itemListResult {
		font-size: 1.6rem;
	}

	.itemsTit {
		padding: 15px 40px 15px 15px;
		font-size: 1.8rem;
		font-weight: bold;
		background: #cfe5da;
		color: #014928;
		position: relative;
		cursor: pointer;
	}

	.itemsGroup:not(:last-child) {
		padding-bottom: 10px;
	}

	.itemsTit::after {
		content: "";
		width: 20px;
		height: 20px;
		background: url(img/common/icon_arrow4.svg) 0 0 no-repeat;
		background-size: contain;
		display: inline-block;
		vertical-align: middle;
		position: absolute;
		top: 50%;
		right: 10px;
		-webkit-transform: translate(0, -50%) rotate(180deg);
		transform: translate(0, -50%) rotate(180deg);
	}

	.itemsList li {
		padding: 10px 15px;
		background: #f6f5f3;
		margin-bottom: 2px;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: flex-start;
		flex-direction: column;
	}

	.bounceBox {
		position: relative;
		width: 20px;
		height: 20px;
		border: 2px solid #c3c3c3;
		border-radius: 6px;
		background-color: white;
		transition: all 0.2s ease;
	}

	.itemListImg {
		width: 40px;
		height: 40px;
		border-radius: 5px;
		overflow: hidden;
	}

	.itemName {
		font-size: 1.4rem;
		font-weight: 500;
	}

	.itemListPriceWrap {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-end;
		gap: 15px;
	}

	/* 見積リスト */
	/* ----------------------------------- */
	#estimateAddIn {
		width: 100%;
		padding: 15px 4% 0 4%;
	}

	#estimateAdd .btn1 {
		max-width: 100%;
		width: 100%;
		cursor: pointer;
	}

	#estimateAddSub {
		color: #FFF;
		font-weight: bold;
		font-size: 1rem;
	}

	#estimateAddSub .strong {
		color: #dd1c1c;
		font-size: 1.2rem;
	}

	#estimateDel{
		position:relative;
		right:0;
		text-align:right;
		margin:20px 0 0 0;
	}


	/* 商品一覧 */
	/* ----------------------------------- */
	#itemsWrap {
		padding-bottom: 80px;
	}

}

@media screen and (max-width: 374px) {
	html {
		font-size: 2.667vw;
	}
}



