@charset "utf-8";
/* CSS Document */

/*==================================================
  CSS CUSTOM PROPERTY
==================================================*/
:root {
	--width-content: 1200px;
	--width-content-wide: 1400px;

	--font-en: 'Oswald', sans-serif;
	--font-num: 'Arial', 'Helvetica', sans-serif;

	--color-main: #F49E00;
	--color-red: #E22323;
	--color-orange: #F49E00;
	--color-yellow: #F8E95D;
	--color-lightyellow: #FFF000;
	--color-ygreen: #7AC843;
	--color-green: #24b255;
	--color-blue: #1074CA;
	--color-lightblue: #00a1e9;
	--color-purple: #662D90;
	--color-pink: #f72b80;
	--color-salmon: #ff9898;
	--color-brown: #331900;
	--color-lightbrown: #9f7c4f;
	--color-black: #222;
	--color-darkgray: #888;
	--color-gray: #999;
	--color-lightgray: #eee;
	--color-waterblue: #e4f1ff;
	--color-palegray: #f5f5f5;
	--color-palegreen: #e4f8ea;
	--color-paleorange: #fff1dc;
	--color-paleyellow: #fdfbe5;

	--grad-blue: linear-gradient(to left bottom, #1E4FEF 0, #11B6F7 100%);
	--grad-orange: linear-gradient(to left bottom, #ff7439 0, #ff9f76 40%, #faaf3b 100%);
	--grad-green: linear-gradient(to left bottom, #00a89c 0, #7ac843 100%);
	--grad-purple: linear-gradient(to left bottom, #416da5 0, #662d90 100%);

	--gutter-supernarrow: 20px;
	--gutter-narrow: 30px;
	--gutter: 80px;
	--gutter-wide: 120px;

	--rad-common: 8px;
	--rad-inner: 10px;
	--rad-full: 50vh;

}

@media only screen and (max-width: 767px) {
	:root {
		--gutter-supernarrow: 3%;
		--gutter-narrow: 5%;
		--gutter: 4%;
		--gutter-wide: 8%;
	}
}

/*==================================================
  GENERAL SETTINGS
==================================================*/

* {
	margin: 0;
	padding: 0;
}

html {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic medium", Meiryo, "sans-serif";
	font-size: 16px;
	line-height: 1.6;
	background: #fff;
	color: var(--color-black);
	/* min-width:320px; */
}

html img {
	max-width: 100%;
	height: auto;
}

html a {
	display: inline-block;
	text-decoration: none;
}

body {
	font-size: 1em;
	/* overflow-x: hidden; */
}

main {
	display: block;
	word-break: break-word;
	position: relative;
	/* min-height:400px; */
}

a:hover,
a:active {
	text-decoration: none;
	filter: alpha(opacity=70);
	-webkit-transition: all .3s;
	transition: all .3s;
	-moz-opacity: 0.7;
	opacity: 0.7;
}

/*==================================================
  HEADER
==================================================*/
header {
	background: var(--color-paleyellow);
	position: relative;
}

header .head__inBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--gutter-narrow) 0;
}

/* H1 */
header h1 {
	font-size: clamp(9px, .8vw, 13px);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	height: 20px;
	transition: .3s;
}

/* logo */
header .head__inBox__logo {
	/*padding: 10px 0;*/
	width: 50%;
}

header .head__inBox__logo img {
	aspect-ratio: 995 / 148;
	width: 100%;
	max-width: 420px;
	height: auto;
}

/* Tel / Time */
header .head__inBox__contact {
	display: flex;
	align-items: center;
	/*padding-bottom: 2em;*/
	white-space: nowrap;
	margin-left: 10px;
}

header .head__inBox__contact__tel {
	margin-top: 0.5em;
}

header .head__inBox__contact__tel .phone {
	font-size: 3.33vw;
	font-weight: bolder;
	line-height: 1.2;
}

header .head__inBox__contact__tel .time {
	font-size: 1.5vw;
	line-height: 1.5;
}

/* Button */
header .head__inBox__contact__btn {
	display: flex;
	margin: 0 0 0 10px;
}

header .head__inBox__contact__btn__item {
	width: 140px;
}

header .head__inBox__contact__btn__item.item01 {
	margin-right: 15px;
}

header .head__inBox__contact__btn__item.item02 {
	margin-right: 5px;
}

header .head__inBox__contact__btn__item .fukidashi {
	display: block;
	text-align: center;
	font-size: 0.8em;
	font-weight: bolder;
}

header .head__inBox__contact__btn__item.item01 .fukidashi {
	color: var(--color-red);
}

header .head__inBox__contact__btn__item .fukidashi::before {
	content: "/";
	display: inline-block;
	transform: scale(-1, 1) translateX(3px);
}

header .head__inBox__contact__btn__item .fukidashi::after {
	content: "/";
	display: inline-block;
	transform: translateX(3px);
}

header .head__inBox__contact__btn__item a {
	display: block;
	text-align: center;
	padding: 1em 1%;
	margin-top: 4px;
	font-size: 13px;
}

header .head__inBox__contact__btn__item.item01 a {
	color: #fff;
	background: var(--color-red);
	border-color: var(--color-black);
	box-shadow: 4px 4px 0 0 var(--color-black);
}

/* Gnavi */
header .head__gnavi {
	/*border-top: 1px solid #000;*/
	border-bottom: 1px solid var(--color-black);
	background: var(--color-paleyellow);
}

header .head__gnavi__menuList .head__gnavi__item {
	width: 20%;
}

header .head__gnavi__menuList .gnavi_link a {
	font-size: 14px;
	display: block;
	text-align: center;
	padding: 10px 0;
	font-weight: bold;
}

header .head__gnavi__menuList .gnavi_drawer {
	list-style: none;
	padding: 0;
	position: relative;
}

header .head__gnavi__menuList .gnavi_drawer dl div {
	position: absolute;
	top: 42px;
	width: 100%;
	display: block;
	z-index: 999;
}

header .head__gnavi__menuList .gnavi_drawer dl dd {
	vertical-align: middle;
	overflow: hidden;
	width: 100%;
	height: 0;
	transition: .3s;
}

header .head__gnavi__menuList .gnavi_drawer dl dd a {
	color: #fff;
	height: 100%;
	padding: 0 10px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

header .head__gnavi__menuList .gnavi_drawer:hover dl dd {
	overflow: visible;
	height: 40px;
	background: rgba(0, 0, 0, .8);
	border-bottom: 1px solid #111111;
}

/* Fixed */
header.fixed {
	display: block;
	box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.5);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 200;
	margin: auto;
	width: 100%;
	max-height: 125px;
	transition: .3s;
}

header.fixed .head__inBox {
	padding: 0;
}

header.fixed+main {
	padding-top: 125px;
}

header.fixed h1 {
	height: 0;
}

header.fixed .head__inBox__logo {
	/*width: 218px;*/
	padding-left:10px;
}

header.fixed .head__inBox__contact {
	padding-bottom: 1em;
}

header.fixed .head__inBox__contact__btn .fukidashi {
	display: none;
}

header.fixed .head__inBox__contact__btn__item a {
	padding: 0.5em;
}

@media screen and (min-width: 1024px) {
	header .head__inBox__contact__tel .phone {
		font-size: 2.5em;
		font-weight: bolder;
		line-height: 1.2;
	}

	header .head__inBox__contact__tel .time {
		font-size: 1.2em;
		line-height: 1.5;
	}
}

/*==================================================
  MAIN
==================================================*/
#ancPagetop {
	display: inline;
}

/*************** メインタイトル ****************/
.ttlWrap {
	background: url(../img/common/ttlWrap_bg.webp) center;
	background-size: cover;
}

h2.mainTtl {
	font-size: 2.5em;
	font-weight: bold;
	text-align: center;
	height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.mainTtl__eng {
	display: block;
	text-align: center;
	font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
	line-height: 1.0;
	letter-spacing: .05em;
}

/*************** パンくず ****************/
.breadWrap {
	background: #eee;
	width: 100%;
}

main>.breadWrap {
	position: absolute;
	top: 180px;
}

#bread {
	font-size: 0.9em;
	padding: 10px 0;
}

#bread a {
	padding: 0 5px 0 0;
	display: inline-block;
	text-decoration: underline;
}

#bread a:hover {
	text-decoration: none;
}

#bread .List span:last-of-type span[property="name"] {
	display: inline-block;
	padding: 0;
	margin-top: -3px;
	vertical-align: middle;
	max-width: 500px;
	/* 500px超えた文字は「...」表示 */
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/*************** 一覧 ****************/
.archivePage .itemList {
	padding-top: calc(3% + 40px);
}

/*************** 投稿 ****************/
.singlePage .contentWrap {
	padding-top: calc(3% + 40px);
}

/*************** 投稿タイトル ****************/
.singlePage .ttlBox {
	border-bottom: 1px solid #111;
	margin-bottom: 2%;
}

.singlePage .ttlBox h3 {
	padding-bottom: 2%;
	font-size: 1.6em;
	font-weight: bold;
}

.singlePage .ttlBox .date {
	font-weight: bold;
}

/*************** 投稿content内css ****************/
.singlePage .contentBox {
	padding: 0 20px;
	margin-bottom: 50px;
}

.singlePage .contentBox img {
	width: inherit;
	max-width: 100%;
	height: auto;
}

.singlePage .contentBox a {
	display: inline;
}

.singlePage .contentBox p {
	margin-bottom: 10px;
}

.singlePage .contentBox .aligncenter {
	margin: auto;
	display: table;
}

.singlePage .contentBox .alignright {
	margin-left: auto;
	display: table;
}

.singlePage .contentBox table td,
.singlePage .contentBox table th {
	padding: 10px;
	border: 1px solid #ccc;
}

/*************** アクセスマップ ****************/
.mapBox {
	margin: 5% 0;
}

.mapBox iframe {
	width: 100%;
}

/*************** 一覧ページャー ****************/
.archivePager {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
}

.archivePager .wp-pagenavi {
	margin-top: 50px !important;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
}

.archivePager .wp-pagenavi span {
	display: table;
}

.archivePager .wp-pagenavi a,
.archivePager .wp-pagenavi span {
	padding: .5em 1em;
}

/*************** 詳細ページャー ****************/
.singlePager {
	margin-top: 5%;
	padding: 0.5em;
	background: #eee;
}

.singlePager .pagerList {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.9em;
}

.singlePager li.archive:before,
.singlePager li.archive:after {
	content: "｜";
}

.singlePager li.prev {
	min-width: 5em;
	text-align: right;
}

.singlePager li.prev :before {
	content: "\ff1C \a0";
	font-size: 0.6em;
}

.singlePager li.next {
	min-width: 5em;
	text-align: left;
}

.singlePager li.next :after {
	content: "\a0 \FF1E";
	font-size: 0.6em;
}

/*************** 準備中 ****************/
.preparationBox {
	margin-top: 80px;
}

.preparationBox h3 {
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
	line-height: 1.8;
}

.preparationBox p {
	text-align: center;
	margin-top: 5px;
}

/*==================================================
  FOOTER
==================================================*/
footer .foot__wrapper {
	border-top: 5px solid #111;
	margin-top: 5%;
	padding: 3% 0 0;
}

footer .foot__inBox__sitemap {
	display: flex;
	justify-content: space-around;
}

footer .foot__inBox__sitemap ul {
	margin-right: 2%;
}

footer .foot__inBox__sitemap li {
	font-size: 12px;
	line-height: 2;
	padding-left: 1em;
	background: url(../img/common/arrow_black.webp) no-repeat left 9px;
	background-size: 4px auto;
}

footer .foot__inBox__sitemap li dl dt {
	font-weight: normal;
}

footer .foot__inBox__sitemap li dl dd {
	margin-left: -1em;
}

footer .foot__inBox__sitemap li dd::before {
	content: "┗";
	color: #CCC;
	margin-right: 0.5em;
}

footer .foot__inBox__company {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 3% 0;
	padding: 3% 0;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	font-size: 0.9em;
}

footer .foot__inBox__company .logo img {
	/*ロゴ画像の比率*/
	aspect-ratio: 996 / 148;
	width: 320px;
}

footer .foot__inBox__company .data {
	margin: 0 5%;
}

footer .foot__company {
	max-width: 240px;
	margin-bottom: 3%;
}

footer .foot__inBox__site ul {
	display: flex;
	justify-content: center;
	margin-bottom: 5%;
}

footer .foot__inBox__site ul li {
	width: 240px;
	margin-right: 5px;
}

footer .foot__inBox__site ul li img {
	width: 100%;
	height: auto;
}

footer .foot__inBox__bnr {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

footer .foot__inBox__bnr__item {
	margin: 0 1% 20px;
	text-align: right;
}

footer .foot__inBox__bnr__item img {
	max-width: 100%;
	height: auto;
}

.foot__copyrightBox {
	background: var(--color-yellow)
}

@media screen and (min-width: 1024px) {
	footer .foot__inBox {
		display: flex;
		justify-content: space-between;
	}

	footer .foot__inBox__left {
		width: 58%;
	}

	footer .foot__inBox__right {
		width: 40%;
		max-width: 470px;
	}

	footer .foot__inBox__company {
		justify-content: flex-start;
	}

	footer .foot__inBox__bnr {
		margin-top: -5%;
		display: block;
	}
}

/* SNSアイコン */
footer .foot__inBox__left .foot_social {
	display: flex;
}

footer .foot__inBox__left .foot_social li {
	padding-right: 1em;
}

footer .foot__inBox__left .foot_social li a img {
	width: 36px;
	height: 36px;
}

/*==================================================
  bottomBox
==================================================*/
.bottomBox {
	margin-top: var(--gutter);
	background: #33210088;
}

.bottomBox .footer_bnr_list {
	width: 100%;
	max-width: 1600px;
	margin-inline: auto;
	display: flex;
	justify-content: center;
}

.bottomBox .footer_bnr_list li {
	height: 200px;
	border: 1px solid #fff;
}

.bottomBox .footer_bnr_list.itemList li {
	width: 25%;
}

.bottomBox .footer_bnr_list.itemList02 li {
	width: calc(100% / 3);
}

.bottomBox .footer_bnr_list li a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.bottomBox .footer_bnr_list li a::before,
.bottomBox .footer_bnr_list li a::after {
	content: "";
	position: absolute;
}

.bottomBox .footer_bnr_list li a::before {
	width: 26px;
	height: 26px;
	background: #fff;
	border: 1px solid #111;
	bottom: 0;
	right: 0;
}

.bottomBox .footer_bnr_list li a::after {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-color: transparent transparent transparent #111;
	bottom: 8px;
	right: 10px;
}


.bottomBox .footer_bnr_list li a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bottomBox .footer_bnr_txt {
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: clamp(14px, 2vw, 18px);
	font-weight: bold;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}



/*************** footFix ****************/
footer .footFix {
	z-index: 100;
	position: fixed;
	bottom: 10px;
	right: 10px;
	width: 60px;
	height: 60px;
	display: none;
}

footer .footFix.footFix_upper {
	bottom: 80px;
}

footer .footFix .ancPagetop a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	padding-top: 10px;
	font-weight: bold;
	background: #fff;
	border: 2px solid var(--color-main);
	color: var(--color-main);
	position: relative;
}

footer .footFix .ancPagetop a::before {
	content: "";
	width: 12px;
	height: 12px;
	display: block;
	border-top: 2px solid var(--color-main);
	border-right: 2px solid var(--color-main);
	position: absolute;
	top: 10px;
	left: 50%;
	transform: rotate(-45deg) translateX(-50%);
}

/*************** 画面横追従バナー ****************/
.fixBnr {
	position: fixed;
	bottom: 80px;
	right: 0;
}

.fixBnr__inner {
	width: 223px;
	height: 236px;
}

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

/*==================================================
  slick
==================================================*/
.slick-track {
	display: flex !important;
}

.slick-slide {
	height: auto !important;
}

/*arrow*/
.slick-arrow::before {
	content: "" !important;
	position: absolute;
	top: 0;
	width: 50px;
	height: 50px;
}

.slick-arrow.slick-prev,
.slick-arrow.slick-prev::before {
	left: 0 !important;
}

.slick-arrow.slick-next,
.slick-arrow.slick-next::before {
	right: 0 !important;
}

.slick-next,
.slick-prev {
	z-index: 99 !important;
	width: 50px !important;
	height: 50px !important;
}

.slick-next::before {
	background: url(../img/common/arrow_right.webp) !important;
	background-size: contain !important;
}

.slick-prev::before {
	background: url(../img/common/arrow_left.webp) !important;
	background-size: contain !important;
}

.slick-dots li,
.slick-dots li button {
	width: 16px !important;
	height: 16px !important;
}

.slick-dots li button:before {
	content: "" !important;
	width: 13px !important;
	height: 13px !important;
	background: #999;
	border-radius: 8px;
	opacity: 1 !important;
}

.slick-dots li.slick-active button:before {
	background: var(--color-orange);
}

.slick-dotted.slick-slider {
	margin-bottom: 0 !important;
}

/*///////////////////////////////////////////////////////////

スマートフォン版（～767px）

///////////////////////////////////////////////////////////*/
@media only screen and (max-width: 767px) {

	/*==================================================
      スマートフォン版 MAIN
    ==================================================*/
	main {
		padding-top: 80px;
		min-height: 50vh;
		position: inherit;
	}

	.btnSend a {
		margin: 5% auto 0;
	}

	h2.mainTtl {
		font-size: 1.6em;
		height: 100px;
		margin: 0;
		padding: 0;
	}

	.mainTtl__eng {
		font-size: 0.5em;
	}

	h3.formTitle {
		margin: 5% 2% 0;
	}

	/*************** 投稿タイトル ****************/
	.singlePage .ttlBox h3 {
		font-size: 1.4em;
	}

	/*************** パンくず ****************/
	main>.breadWrap {
		top: 180px;
	}

	#bread {
		padding: 5px;
		white-space: nowrap;
		overflow: hidden;
		overflow-x: scroll;
		-webkit-overflow-scrolling: auto;
	}

	#bread .List span:last-of-type span[property="name"] {
		max-width: 140px;
		/* 140px超えた文字は「...」表示 */
	}

	/*************** preparationBox ****************/
	.preparationBox {
		margin: 15% 5% 0;
		/*padding-bottom: 5%;*/
	}

	.preparationBox .btnSend a {
		margin-top: 3%;
	}

	/*************** 一覧ページャー ****************/
	.archive_pager .wp-pagenavi {
		margin-top: 5% !important;
	}

	/*************** 投稿content内css ****************/
	.singlePage .contentBox {
		padding: 0 2%;
		margin-bottom: 5%;
	}

	/*==================================================
      スマホ版 HEADER
    ==================================================*/
	header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 80px;
		padding: 0;
		z-index: 1000;
	}

	header h1 {
		font-size: 9px;
		padding: 2px;
		background: #eee;
		text-align: center;
		height: 20px;
	}

	header .head__inBox {
		align-items: center;
		height: 60px;
		padding: var(--gutter-supernarrow) 0;
	}

	header .head__inBox__logo {
		padding-left: 10px;
		height: 30px;
		width: auto;
	}

	header .head__inBox__logo a {
		display: block;
		height: 100%;
	}

	header .head__inBox__logo img {
		height: 100%;
		width: auto;
	}

	header .head__smpBtn {
		z-index: 300;
		padding: 16px 10px;
	}

	header .head__smpBtn span {
		position: relative;
		display: block;
		height: 2px;
		width: 30px;
		background: #5c6b80;
		-webkit-transition: ease .3s;
		transition: ease .3s;
	}

	header .head__smpBtn span:nth-child(1) {
		top: 0;
	}

	header .head__smpBtn span:nth-child(2) {
		margin: 8px 0;
	}

	header .head__smpBtn span:nth-child(3) {
		top: 0;
	}

	header .head__smpBtn.active span:nth-child(1) {
		top: 10px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	header .head__smpBtn.active span:nth-child(2) {
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		opacity: 0;
	}

	header .head__smpBtn.active span:nth-child(3) {
		top: -10px;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	header .head__smpMenu__wrap {
		position: relative;
		z-index: 300;
	}

	header .head__smpMenu__wrap {
		display: none;
	}

	header .head__smpMenu__wrap.active {
		background: rgba(255, 255, 255, 0.95);
		overflow-y: scroll;
		/*縦方向の超過分はスクロールする*/
		height: calc(100vh - 150px);
		/*.drawerの高さ＋.snsの高さ合計px*/
		transform: translateZ(0);
		/*retinaディスプレイでoverflow-yが効かなくなるのを回避する*/
	}

	header .head__smpMenu__btn {
		background: #f6f6f6;
		padding-bottom: 0.5em;
	}

	header .head__smpMenu__btn__item {
		width: 80%;
		padding: 0.5em;
		margin: 0 auto;
		text-align: center;
	}

	header .head__smpMenu__btn__item a {
		width: 100%;
		padding: 1em 0;
		text-align: center;
		font-size: 3vw;
	}

	header .head__smpMenu__btn__item.item01 a {
		color: #fff;
		background: var(--color-red);
		border-color: var(--color-black);
		box-shadow: 4px 4px 0 0 var(--color-black);
	}

	header .head__smpMenu__menuList {
		display: flex;
		flex-wrap: wrap;
	}

	header .head__smpMenu__item {
		width: 50%;
		border-bottom: 1px solid #eee;
		border-right: 1px solid #eee;
		font-size: 3vw;
	}

	header .head__smpMenu__item:nth-of-type(even) {
		border-right: none;
	}

	header .head__smpMenu__item a {
		background: url(../img/common/arrow_black.webp) no-repeat left 0.75em center;
		background-size: auto 10px;
		display: block;
		padding: 1em 1em 1em 2em;
		;
	}

	header .head__smpMenu__item.col01 {
		width: 100%;
	}

	header .head__smpMenu__menuList li.parent ul li {
		border: none;
		border-top: 1px dotted #ccc;
	}

	header .head__smpMenu__menuList li.parent ul li:first-child {
		margin-top: 10px;
	}

	header .head__smpMenu__menuList li.parent ul li:last-child {
		padding-bottom: 0;
	}

	/*fixed*/
	header.fixed {
		height: 60px;
	}

	header.fixed h1 {
		padding: 0;
		height: 0;
	}

	header.fixed .head__smpMenu__wrap.active {
		height: calc(100vh - 130px);
		/*.drawerの高さ＋.snsの高さ合計px*/
	}

	/*==================================================
      スマホ版 FOOTER
    ==================================================*/
	footer .foot__wrapper.bottom_mgn {
		margin-bottom: 65px;
	}

	footer .foot__inBox__spMenu {
		margin-bottom: 3%;
	}

	footer .foot__inBox__spMenu ul {
		display: flex;
		justify-content: center;
		font-size: .85em;
	}

	footer .foot__inBox__spMenu ul li:nth-of-type(2) {
		padding: 0 1em;
		margin: 0 1em;
		border-left: 1px solid #CCC;
		border-right: 1px solid #CCC;
		text-align: center;
	}

	footer .foot__inBox__spMenu ul li:nth-of-type(3) {
		text-align: left;
	}

	footer .foot__inBox__company {
		border: none;
		flex-direction: column;
	}

	footer .foot__inBox__company .logo {
		margin-bottom: 3%;
	}

	footer .foot__inBox__company .data {
		text-align: center;
	}

	footer .foot__inBox__site ul li {
		width: 48%;
		margin: 0 1% 3%;
	}

	footer .foot__inBox__bnr {
		flex-direction: column;
		align-items: center;

	}

	footer .foot__inBox__bnr__item:nth-of-type(2) {
		margin-left: 5%;
	}

	/*************** footFix ****************/
	footer .footFix {
		bottom: 80px;
	}

	/*************** bottomFix ****************/
	footer .bottomFix {
		position: fixed;
		background: #fff;
		bottom: 0;
		width: 100%;
		height: 65px;
		z-index: 200;
	}

	footer .bottomFix__inBox {
		display: flex;
		justify-content: center;
		align-items: stretch;
	}

	footer .bottomFix__inBox__item {
		width: 50%;
		height: 100%;
		position: relative;
		background: var(--color-main);
	}

	footer .bottomFix__inBox__item.item02 {
		background: var(--color-blue);
	}

	footer .bottomFix__inBox__item a {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		height: 65px;
		padding: 10px;
	}

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

	/* 複数店舗でモーダル */
	footer .footTelModal {
		display: none;
		height: 100vh;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 10000;
	}

	.no_scroll {
		overflow: hidden;
	}

	footer .footTelModal__bg {
		background: rgba(0, 0, 0, 0.8);
		height: 100vh;
		position: absolute;
		width: 100%;
		z-index: 1;
	}

	footer .footTelModal__content {
		background: #fff;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		padding: 40px;
		width: 90%;
		max-height: 50vh;
		z-index: 3;
	}

	footer .footTelModal p {
		font-size: 1em;
		font-weight: 700;
		text-align: center;
		padding-bottom: 15px;
		color: #000;
	}

	footer .footTelModal ul li a {
		padding: 15px;
		color: #fff;
		background: var(--color-lightblue);
		display: block;
		text-align: center;
		text-decoration: none;
		font-weight: bold;
		font-size: 1em;
		box-sizing: border-box;
	}

	footer .footTelModal ul li {
		margin-top: 10px;
	}

	footer .footTelModal__close {
		padding: 10px;
		line-height: 1;
		right: 0;
		top: 0;
		position: absolute;
	}

	/* SNS */
	footer .foot__inBox__left .foot_social {
		justify-content: center;
		margin-bottom: 1em;
	}

	footer .foot__company {
		margin-inline: auto;
	}

	/*==================================================
	  スマホ版 bottomBox
	==================================================*/
	.bottomBox .footer_bnr_list {
		flex-wrap: wrap;
	}

	.bottomBox .footer_bnr_list.itemList li,
	.bottomBox .footer_bnr_list.itemList02 li {
		width: 50%;
		height: 100px;
	}

	.bottomBox .footer_bnr_list.itemList02 li:last-of-type {
		width: 100%;
	}

	/*************** zohoチャットボット ****************/
	.zsiq-float.zsiq-flexM {
		bottom: 80px !important;
	}

}

/* スマホ版ここまで --------------------------------------- */