@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend+Deca:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap');


/* --------------------------------------------------
 * common
-------------------------------------------------- */
:root {
	font-size: 16px;
	--scrollbar: 0px;
	--main-color: #FFFFFF;
	--base-color: #000000;
	--orange1-color: #ED6C00;
	--orange2-color: #FF962A;
	--orange3-color: #FF6D1D;
	--yellow1-color: #FFF600;
	--yellow2-color: #FFCB74;
	--green1-color: #06C755;
	--red1-color: #FB5234;
	--red2-color: #ED0000;
	--red3-color: #B80000;
	--blue1-color: #1976D2;
	--gray1-color: #A0A0A0;
	--gray2-color: #282828;
	--gray3-color: #D3D3D3;
	--gray4-color: #CACACA;
	--gray5-color: #E5E5E5;
	--gray6-color: #292929;
	--beige-color: #EEE7DC;
	--clear-bg-color:#F9F6F1;
	--fm-base: "Noto Sans JP", sans-serif;
	--fm-lexend: "Lexend Deca", sans-serif;
	--fm-inter: "Inter", sans-serif;
}
body {
	display: flex;
	flex-direction: column;
	position: relative;
	max-width: 100vw;
	margin: 0;
	padding: 0;
	font-family: var(--fm-base);
}
ul,ol {
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
	transition: 0.3s;
}
a:hover {
	opacity: 0.7;
}
img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
button {
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	transition: 0.3s;
}
button:hover {
	opacity: 0.7;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
@media screen and (max-width: 1280px) {
	:root {
		font-size: 14px;
	}
}
@media screen and (max-width: 768px) {
	:root {
		font-size: 12px;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}

/* parts
-------------------------------------------------- */
.fc-or {
	color: var(--orange3-color);
}
.fc-re {
	color: var(--red2-color);
}
.fbg-w {
	display: inline-block;
	padding: 0.25em 0.525em;
	background: var(--main-color);
}
.cta__btn--or,
.cta__btn--gr,
.cta__btn--re {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5em 2.5em;
	border-radius: 6.25em;
	font-weight: 900;
	font-size: 1.25rem;
	color: var(--main-color);
	white-space: nowrap;
}
.cta__btn--or:after,
.cta__btn--gr:after,
.cta__btn--re:after {
	display: block;
	width: 7px;
	aspect-ratio: 0.54 / 1;
	content: "";
	background: url(../img/arrow__ico-right-w.png) no-repeat;
	background-size: contain;
}
.cta__btn--ye {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5em 2.5em;
	border-radius: 6.25em;
	font-weight: 900;
	font-size: 1.25rem;
	color: var(--base-color);
	white-space: nowrap;
}
.cta__btn--ye:after {
	display: block;
	width: 7px;
	aspect-ratio: 0.54 / 1;
	content: "";
	background: url(../img/arrow__ico-right-b.png) no-repeat;
	background-size: contain;
}
.cta__btn--or {
	background: var(--orange2-color);
}
.cta__btn--gr {
	background: var(--green1-color);
}
.cta__btn--re {
	background: var(--red1-color);
}
.cta__btn--ye {
	background: var(--yellow1-color);
}


/* --------------------------------------------------
 * animation
-------------------------------------------------- */
@keyframes slide-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}


/* --------------------------------------------------
 * header
-------------------------------------------------- */
.header__bar {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	height: 1.875em;
	background: var(--orange2-color)
}
.header__bar .bar__list {
	display: flex;
	margin-right: 8.3%;
	gap: 1em;
	background: var(--orange2-color)
}
.header__bar .bar__item a {
	display: flex;
	align-items: center;
	line-height: 1.6;
	gap: 2px;
	font-weight: 400;
	font-size: 0.75rem;
	color: var(--main-color);
}
.header__bar .bar__item a:before {
	display: block;
	width: 4px;
	height: 3px;
	content: "";
	background: url(../img/tri__right-ico.png) no-repeat;
}
.header__hm {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	right: 0;
	width: 3.125em;
	aspect-ratio: 1 / 1;
	border-radius: 0 0 0 1.25em;
	transition: 0.3s;
	background: var(--orange3-color);
	z-index: 999;
}
.header__hm:hover {
	background: var(--orange1-color);
}
.header__hm .fm__wrap {
	display: flex;
	position: relative;
	flex-direction: column;
	justify-content: space-between;
	width: 1.875em;
	aspect-ratio: 1 / 1;
	padding: 6px 4px;
	box-sizing: border-box;
}
.header__hm .fm__wrap > span {
	display: block;
	width: 1.375em;
	height: 2px;
	transition: 0.3s;
	background: var(--main-color);
}
.header__nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: fixed;
	top: 0;
	right: -100%;
	width: 400px;
	max-width: 100%;
	height: 100vh;
	padding: 5em 3.125em;
	gap: 2.25em;
	box-sizing: border-box;
	transition: 0.3s;
	background: var(--clear-bg-color);
	z-index: 200;
}
.header__nav .nav__list {
	display: inline-flex;
	flex-direction: column;
	gap: 2.25em;
}
.header__nav .nav__item a {
	display: flex;
	align-items: center;
	line-height: 1.5;
	gap: 1em;
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--base-color);
}
.header__nav .nav__item a:before {
	display: block;
	content: "";
	width: 10px;
	height: 18px;
	background: url(../img/arrow__ico-right-or.png) no-repeat;
}
.header__nav .nav__cta-list {
	display: inline-flex;
	flex-direction: column;
	width: 100%;
	gap: 1.25em;
}
.header__nav .nav__cta-item button {
	width: 100%;
}
/* hamburger active */
body.active:before {
	display: block;
	position: fixed;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(0, 0, 0, 0.5);
	z-index: 100;
}
.header__hm.active .fm__wrap > span {
	position: absolute;
	height: 3px;
}
.header__hm.active .fm__wrap .hm__top {
	top: 50%;
	transform: rotate(45deg);
}
.header__hm.active .fm__wrap .hm__mid {
	opacity: 0;
}
.header__hm.active .fm__wrap .hm__btm {
	top: 50%;
	transform: rotate(-45deg);
}
.header__nav.active {
	right: 0;
}
@media screen and (max-width: 768px) {
	.header__bar {
		display: none;
	}
	.header__nav {
		width: 100%;
		padding: 6.67em 3em 5.17em;
		gap: 4.5em;
	}
	.header__nav .nav__item a {
		font-size: 1.5rem;
	}
	.header__nav .nav__cta-list {
		gap: 1.67em;
	}
	.header__nav .nav__cta-item a {
		font-size: 1.67rem;
	}
}

/* --------------------------------------------------
 * fv
-------------------------------------------------- */
.fv__top {
	width: 100%;
	aspect-ratio: 90 / 38;
	position: relative;
	padding: 4% 5.2% 0;
	box-sizing: border-box;
	background: var(--clear-bg-color) url(../img/fv__store.png) no-repeat right bottom;
	background-size: 55%;
}
.fv__top .fv__eyecatch {
	display: flex;
	align-items: center;
	width: 57%;
	gap: 2.4%;
}
.fv__top .fv__eyecatch .eyecatch__since {
	width: 8.4%;
}
.fv__top .fv__eyecatch .eyecatch__since img {
	width: 100%;
}
.fv__top .fv__eyecatch .eyecatch__logo {
	display: flex;
	align-items: flex-end;
	width: 89.2%;
	line-height: 1;
	margin: 0;
	gap: 2%;
}
.fv__top .fv__eyecatch .eyecatch__logo img {
	width: 71%;
}
.fv__top .fv__eyecatch .eyecatch__logo span {
	display: inline-flex;
	margin-bottom: 1vw;
	padding: 0.375em;
	border-top: 1px solid var(--orange3-color);
	border-bottom: 1px solid var(--orange3-color);
	font-weight: 700;
	font-size: 1vw;
	color: var(--orange3-color);
}
.fv__top .fv__catch .catch__txt {
	width: 60%;
	line-height: 1;
	font-weight: 700;
	font-family: var(--fm-lexend);
	font-size: 9.75vw;
	color: var(--orange3-color);
	letter-spacing: -0.02em;
	white-space: nowrap;
}
.fv__top .fv__subcatch {
	margin-top: 3%;
}
.fv__top .fv__subcatch .subcatch__txt {
	line-height: 1.6;
	font-weight: 700;
	font-size: 2.2175vw;
}
.fv__top .fv__subcatch .subcatch__txt .fbg-w {
	display: inline-block;
	line-height: 1.6;
	margin-right: 0.5em;
	font-size: 1.675vw;
}
.fv__top .fv__subcatch .subcatch__txt small {
	font-size: 1.375vw;
}
.fv__top .fv__cta {
	width: 60%;
	margin-top: 3%;
	padding-left: 2%;
}
.fv__top .fv__cta .cta__btn-list {
	display: flex;
	gap: 1.5%;
}
.fv__top .fv__cta .cta__btn-item {
	width: calc(97% / 3);
}
.fv__top .fv__cta .cta__btn-item a {
	padding: 9.75% 16%;
	border: 3px solid var(--main-color);
	font-size: 1.375vw;
	box-sizing: border-box;
}
.fv__top .fv__cta .cta__btn-item a:after {
	width: 4.375%;
}
.fv__top .fv__parts > * {
	position: absolute;
}
.fv__top .fv__parts .parts__store {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	top: 0.7%;
	right: 8.3%;
	gap: 3.4%;
	white-space: nowrap;
}
.fv__top .fv__parts .parts__store .name {
	font-weight: 700;
	font-size: 0.75vw;
}
.fv__top .fv__parts .parts__store img {
	width: 6.8%;
}
.fv__top .fv__parts .parts__store .tel a{
	font-weight: 500;
	font-size: 1.5vw;
	color: var(--base-color);
}
.fv__top .fv__parts .parts__achive {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 18.4%;
	top: 10.5%;
	right: 6.5%;
	gap: 1vh;
}
.fv__top .fv__parts .parts__achive--01 {
	width: 100%;
}
.fv__top .fv__parts .parts__achive--02 {
	width: 83.4%;
}
.fv__top .fv__parts .parts__offer {
	width: 18.2%;
	right: 3%;
	bottom: -13%;
	z-index: 100;
}
.fv__btm {
	background: var(--main-color);
	overflow: hidden;
}
.fv__btm .btm__reform-list {
	display: flex;
	width: 210%;
	padding: 0.875em 0.875em 0;
	gap: 0.675em;
	animation: slide-left 10s linear infinite;
}
.fv__btm .btm__reform-item {
	width: calc((100% - 3.375em) / 6);
	border-radius: 10px;
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	.fv__top {
		display: flex;
		flex-direction: column;
		padding-bottom: 35%;
		background: var(--clear-bg-color) url(../img/fv__store-sp.png) no-repeat right bottom;
		background-size: 100%;
	}
	.fv__top .fv__eyecatch {
		order: 2;
		width: 100%;
		margin-top: 1em;
	}
	.fv__top .fv__eyecatch .eyecatch__logo span {
		display: none;
	}
	.fv__top .fv__catch {
		order: 3;
	}
	.fv__top .fv__catch .catch__txt {
		width: 100%;
		font-size: 15.5vw;
	}
	.fv__top .fv__subcatch {
		order: 4;
	}
	.fv__top .fv__subcatch .subcatch__txt {
		font-size: 1.33rem;
	}
	.fv__top .fv__subcatch .subcatch__txt .fbg-w {
		font-size: 1.17rem;
	}
	.fv__top .fv__subcatch .subcatch__txt small {
		font-size: 1rem;
	}
	.fv__top .fv__cta {
		order: 5;
	}
	.fv__top .fv__parts {
		order: 1;
	}
	.fv__top .fv__parts .parts__store {
		display: none;
	}
	.fv__top .fv__parts .parts__achive {
		display: flex;
		flex-direction: row;
		position: static;
		width: calc(100% - 4.125em);
		gap: 0.75em;
	}
	.fv__top .fv__parts .parts__txt span {
		display: inline-flex;
		padding: 0.375em;
		border-top: 1px solid var(--orange3-color);
		border-bottom: 1px solid var(--orange3-color);
		font-weight: 700;
		font-size: 1rem;
		color: var(--orange3-color);
	}
	.fv__top .fv__parts .parts__achive--01 {
		width: 20.4%;
	}
	.fv__top .fv__parts .parts__achive--02 {
		width: 22.4%;
	}
	.fv__top .fv__parts .parts__offer {
		width: 44.3%;
		right: 2%;
		bottom: 2%;
	}
	.fv__cta.sp {
		margin: 1em auto 0.75em;
		padding: 0 1.75em;
	}
	.fv__cta.sp .cta__btn-list {
		display: flex;
		flex-direction: column;
		gap: calc(1em - 4px);
	}
	.fv__cta.sp .cta__btn-item a {
		border: 2px solid var(--main-color);
	}
	.fv__btm .btm__reform-list {
		width: 400%;
		gap: 0.5em;
	}
	.fv__btm .btm__reform-item {
		width: calc((100% - (0.675em * 3)) / 4);
		border-radius: 4px;
	}
}


/* --------------------------------------------------
 * cta
-------------------------------------------------- */
#cta {
	margin: 2.5em 0;
}
.cta__inner {
	position: relative;
	width: 83%;
	aspect-ratio: 3.95 / 1;
	margin: 0 auto;
	padding: 4.85% 0 2% 10%;
	border-radius: 20px;
	box-sizing: border-box;
	background: var(--green1-color) url(../img/cta__line.png) no-repeat right 3% bottom;
	background-size: 27% auto;
	overflow: hidden;
}
.cta__inner:before {
	display: block;
	position: absolute;
	width: 20%;
	height: 150%;
	top: -50%;
	left: -7.5%;
	content: "";
	background: rgba(77, 239, 19, 0.25);
	transform: rotate(30deg);
	z-index: 1;
}
.cta__inner .cta__sp {
	position: absolute;
	width: 18.5%;
	top: 7.5%;
	left: 3%;
	z-index: 2;
}
.cta__inner .cta__catch {
	position: relative;
	width: 66%;
	line-height: 1.6;
	font-weight: 700;
	font-size: 3.325vw;
	color: var(--main-color);
	text-align: center;
	z-index: 2;
}
.cta__inner .cta__txt {
	position: relative;
	width: 66%;
	line-height: 1.6;
	font-weight: 700;
	font-size: 1.125vw;
	color: var(--main-color);
	text-align: center;
	z-index: 2;
}
.cta__inner .cta__btn-list {
	display: flex;
	position: relative;
	width: 66%;
	margin-top: 2%;
	gap: 3%;
	z-index: 2;
}
.cta__inner .cta__btn-item {
	width: calc(97% / 2);
}
.cta__inner .cta__btn-item a {
	padding: 5.68% 12.5%;
	font-size: 1.375vw;
}
.cta__inner .cta__btn-item a:after {
	width: 2.75%;
}
@media screen and (max-width: 768px) {
	#cta {
		margin: 2.5em 0;
		padding: 2em 1.67em;
	}
	.cta__inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		aspect-ratio: auto;
		padding: 12% 3.75em 39%;
		border-radius: 12px;
		box-sizing: border-box;
		background: var(--green1-color) url(../img/cta__line.png) no-repeat center bottom;
		background-size: 40% auto;
	}
	.cta__inner:before {
		width: 50%;
		height: 150%;
		left: -24.5%;
		transform: rotate(18deg);
	}
	.cta__inner .cta__sp {
		width: 31.2%;
		top: 1.25em;
		left: 1.25em;
		z-index: 2;
	}
	.cta__inner .cta__catch {
		width: auto;
		font-size: 1.833rem;
	}
	.cta__inner .cta__txt {
		width: auto;
		margin-top: 0.675em;
		font-size: 1.083rem;
	}
	.cta__inner .cta__btn-list {
		flex-direction: column;
		width: 70%;
		margin-top: 1em;
		gap: 1em;
	}
	.cta__inner .cta__btn-item {
		width: 100%;
	}
	.cta__inner .cta__btn-item a {
		font-size: 1.167rem;
	}
}


/* --------------------------------------------------
 * sale
-------------------------------------------------- */
#sale {
	padding: 6em 0 6.25em;
	background: var(--clear-bg-color);
}
.sale__head {
	display: flex;
	width: 58%;
	margin: 0 auto;
	gap: 2.8%;
}
.sale__head .sale__tit--sub {
	width: 15.7%;
}
.sale__head .sale__tit--sub img {
	object-fit: contain;
}
.sale__head .sale__tit {
	position: relative;
	line-height: 1.6;
	font-weight: 700;
	font-size: 4.4vw;
	white-space: nowrap;
}
.sale__head .sale__tit span {
	line-height: 1.6;
	font-weight: 700;
	font-size: 5.2vw;
}
.sale__head .sale__tit--en {
	position: absolute;
	top: 50%;
	left: 50%;
	line-height: 1.6;
	font-weight: 700;
	font-size: 10.6vw;
	color: rgba(255, 109, 29, 0.2);
	letter-spacing: -0.02em;
	white-space: nowrap;
	transform: translate(-50%, -50%);
	z-index: 0;
}
.sale__cont .sale__list {
	display: flex;
	flex-wrap: wrap;
	width: 85.7%;
	max-width: 1234px;
	margin: 5em auto 0 ;
	gap: 2.5em;
}
.sale__cont .sale__item {
	position: relative;
	width: calc((100% - 5em) / 3);
	padding: 2.5em 1.75em 0 0;
	box-sizing: border-box;
}
.sale__cont .sale__item .item__inner {
	border-radius: 10px;
	background: var(--main-color);
	overflow: hidden;
}
.sale__cont .sale__item .item__inner img {
	height: auto;
	aspect-ratio: 350 / 233;
}
.sale__cont .sale__item .item__inner .item__tit {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1em 2.25em 0.75em 1.25em;
}
.sale__cont .sale__item .item__inner .item__tit-name {
	line-height: 1.6;
	font-weight: 700;
	font-size: 1.25rem;
}
.sale__cont .sale__item .item__inner .item__tit-limit {
	line-height: 1.6;
	padding: 0.375em 1.25em;
	border: 1px solid var(--orange3-color);
	border-radius: 4em;
	font-weight: 700;
	font-size: 0.75rem;
	color: var(--orange3-color);
}
.sale__cont .sale__item .item__inner .item__price {
	padding: 0 1.25em 1.5em;
}
.sale__cont .sale__item .item__inner .item__price-normal {
	display: flex;
	align-items: center;
	gap: 0.25em;
	white-space: nowrap;
}
.sale__cont .sale__item .item__inner .item__price-normal .type {
	line-height: 1.6;
	padding: 0.29em 0.57em;
	border-radius: 5px;
	font-weight: 700;
	font-size: 0.875rem;
	color: var(--main-color);
	background: var(--gray1-color);
}
.sale__cont .sale__item .item__inner .item__price-normal .num {
	line-height: 1.6;
	font-family: var(--fm-lexend);
	font-weight: 700;
	font-size: 1.25rem;
}
.sale__cont .sale__item .item__inner .item__price-normal .tax {
	line-height: 1.6;
	font-weight: 700;
	font-size: 0.675rem;
}
.sale__cont .sale__item .item__inner .item__price-discount {
	display: flex;
	align-items: center;
	margin-top: 0.5em;
	gap: 0.25em;
	white-space: nowrap;
}
.sale__cont .sale__item .item__inner .item__price-discount:before {
	display: block;
	content: "";
	width: 1em;
	height: 0.5em;
	background: url(../img/arrow__ico-right-re.png) no-repeat;
}
.sale__cont .sale__item .item__inner .item__price-discount .type {
	line-height: 1.6;
	padding: 0.29em 0.57em;
	border-radius: 5px;
	font-weight: 700;
	font-size: 0.875rem;
	color: var(--main-color);
	background: var(--red2-color);
}
.sale__cont .sale__item .item__inner .item__price-discount .num {
	line-height: 1;
	font-family: var(--fm-lexend);
	font-weight: 700;
	font-size: 2.25rem;
	color: var(--red2-color);
}
.sale__cont .sale__item .item__inner .item__price-discount .tax {
	line-height: 1.6;
	font-weight: 700;
	font-size: 0.675rem;
}
.sale__cont .sale__item .item__rate {
	position: absolute;
	width: 45%;
	aspect-ratio: 171 / 168;
	top: 0;
	right: 0;
}
@media screen and (max-width: 1280px) {
	.sale__cont .sale__item {
		position: relative;
		width: calc((100% - 2.5em) / 2);
		padding: 2.5em 1.75em 0 0;
		box-sizing: border-box;
	}
}
@media screen and (max-width: 768px) {
	.sale__head {
		flex-direction: column;
		align-items: center;
		width: auto;
		gap: 0.5;
	}
	.sale__head .sale__tit--sub {
		width: auto;
	}
	.sale__head .sale__tit {
		font-size: 2rem;
	}
	.sale__head .sale__tit span {
		font-size: 2.667rem;
	}
	.sale__head .sale__tit--en {
		font-size: 5rem;
	}
	.sale__cont .sale__list {
		width: 100%;
		margin-top: 1em;
		padding-left: 1.67em;
		box-sizing: border-box;
	}
	.sale__cont .sale__item {
		position: relative;
		width: 100%;
		padding: 2.5em 1.75em 0 0;
		box-sizing: border-box;
	}
	.sale__cont .sale__item .item__inner .item__tit {
		justify-content: flex-start;
		padding: 1.25em 2em;
		gap: 1.5em;
	}
	.sale__cont .sale__item .item__inner .item__tit-name {
		font-size: 1.5rem;
	}
	.sale__cont .sale__item .item__inner .item__tit-limit {
		font-size: 1rem;
	}
	.sale__cont .sale__item .item__inner .item__price {
		padding: 0 1.67em 1.75em;
	}
	.sale__cont .sale__item .item__inner .item__price-normal .type {
		font-size: 1.083rem;
	}
	.sale__cont .sale__item .item__inner .item__price-normal .num {
		font-size: 1.67rem;
	}
	.sale__cont .sale__item .item__inner .item__price-normal .tax {
		font-size: 0.833rem;
	}
	.sale__cont .sale__item .item__inner .item__price-discount:before {
		width: 1.083em;
		height: 0.5em;
		background-size: contain;
	}
	.sale__cont .sale__item .item__inner .item__price-discount .type {
		font-size: 1.083rem;
	}
	.sale__cont .sale__item .item__inner .item__price-discount .num {
		font-size: 2.875rem;
	}
	.sale__cont .sale__item .item__inner .item__price-discount .tax {
		font-size: 0.833rem;
	}
	.sale__cont .sale__item .item__rate {
		width: 32.7%;
	}
}


/* --------------------------------------------------
 * event
-------------------------------------------------- */
#event {
	padding: 8em 0 6.25em;
	border-top: 8px solid var(--orange2-color);
	border-bottom: 8px solid var(--orange2-color);
}
.event__head {
	display: flex;
	justify-content: center;
	width: 58%;
	margin: 0 auto;
}
.event__head .event__tit {
	position: relative;
	line-height: 1.6;
	font-weight: 700;
	font-size: 3.34vw;
	white-space: nowrap;
}
.event__head .event__tit--en {
	position: absolute;
	top: 50%;
	left: 50%;
	line-height: 1.6;
	font-weight: 700;
	font-size: 10.6vw;
	color: rgba(255, 109, 29, 0.2);
	letter-spacing: -0.02em;
	white-space: nowrap;
	transform: translate(-50%, -50%);
	z-index: 0;
}
.event__cont {
	padding: 0 2em;
}
.event__cont .event__list {
	display: flex;
	flex-wrap: wrap;
	width: 800px;
	max-width: 100%;
	margin: 6.75em auto 0;
	gap: 2.5em;
}
.event__cont .event__item {
	position: relative;
	width: calc((100% - 2.5em) / 2);
	box-sizing: border-box;
}
.event__cont .event__item .item__head {
	display: flex;
	justify-content: space-between;
	padding: 0.25em 1em;
	border-radius: 10px;
	background: var(--beige-color);
}
.event__cont .event__item .item__head .item__tit {
	line-height: 1.5;
	font-weight: 700;
	font-size: 1rem;
	color: var(--base-color);
}
.event__cont .event__item .item__head .item__txt {
	display: flex;
	align-items: center;
	line-height: 1.5;
	gap: 0.375em;
	font-weight: 400;
	font-size: 0.75rem;
	color: var(--base-color);
}
.event__cont .event__item .item__head .item__txt:before {
	display: block;
	width: 1rem;
	aspect-ratio: 1 / 1;
	content: "";
	background: url(../img/search__ico-right-re.png) no-repeat;
	background-size: contain;
}
.event__cont .event__item .item__thumb {
	margin-top: 1em;
}
.event__cont .event__txt {
	width: 800px;
	max-width: 100%;
	margin: 2.5em auto 0;
}
.event__cont .event__txt .txt__tit {
	line-height: 1.5;
	font-weight: 700;
	font-size: 1.25rem;
}
.event__cont .event__txt .txt__dtl {
	line-height: 1.5;
	margin-top: 1em;
	font-weight: 400;
	font-size: 1rem;
}
.event__cont .modal {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease;
	background: rgba(0,0,0,0.4);
	z-index: 1000;
}
.event__cont .modal.active {
	opacity: 1;
	pointer-events: auto;
}
.event__cont .modal .modal__inner {
	position: relative;
}
.event__cont .modal .modal__inner img {
	display: block;
	width: auto;
	height: auto;
	max-width: 93vw;
	max-height: 93vh;
	object-fit: contain;
}
.event__cont .modal .modal__inner .close__btn {
	display: block;
	position: absolute;
	line-height: 1.5;
	top: 0;
	right: -10px;
	padding: 0.25em 0.625em;
	border-radius: 10px;
	transform: translateX(100%);
	font-weight: 700;
	font-size: 1rem;
	background: var(--beige-color);
}
@media screen and (max-width: 768px) {
	#event {
		padding: 4.25em 0 3.25em;
		border-top: 4px solid var(--orange2-color);
		border-bottom: 4px solid var(--orange2-color);
	}
	.event__head {
		flex-direction: column;
		align-items: center;
		width: auto;
		gap: 0.5;
	}
	.event__head .event__tit--sub {
		width: auto;
	}
	.event__head .event__tit {
		font-size: 2rem;
		text-align: center;
	}
	.event__head .event__tit span {
		font-size: 2.667rem;
	}
	.event__head .event__tit--en {
		font-size: 5rem;
	}
	.event__cont {
		padding: 0 1.67em;
	}
	.event__cont .event__list {
		margin: 3.25em auto 0;
		gap: 3.25em;
	}
	.event__cont .event__item {
		width: 100%;
	}
	.event__cont .event__item .item__head {
		padding: 0.375em 1.33em;
		border-radius: 10px;
	}
	.event__cont .event__item .item__head .item__tit {
		font-size: 1.167rem;
	}
	.event__cont .event__item .item__head .item__txt {
		font-size: 1rem;
	}
	.event__cont .modal .modal__inner .close__btn {
		top: -10px;
		right: 0;
		border-radius: 5px;
		transform: translateY(-100%);
	}
	.event__cont .event__txt .txt__tit {
		font-size: 1.5rem;
	}
	.event__cont .event__txt .txt__dtl {
		font-size: 1.167rem;
	}
}


/* --------------------------------------------------
 * works
-------------------------------------------------- */
#works {
	padding: 8em 0 4.5em;
	background: var(--clear-bg-color);
}
.works__head {
	display: flex;
	justify-content: center;
	width: 58%;
	margin: 0 auto;
}
.works__head .works__tit {
	position: relative;
	line-height: 1.6;
	font-weight: 700;
	font-size: 3.34vw;
	white-space: nowrap;
}
.works__head .works__tit--en {
	position: absolute;
	top: 50%;
	left: 50%;
	line-height: 1.6;
	font-weight: 700;
	font-size: 10.6vw;
	color: rgba(255, 109, 29, 0.2);
	letter-spacing: -0.02em;
	white-space: nowrap;
	transform: translate(-50%, -50%);
	z-index: 0;
}
.works__cont {
	padding: 0 2em;
}
.works__cont .works__list {
	display: flex;
	flex-wrap: wrap;
	width: 1200px;
	max-width: 100%;
	margin: 6em auto 0;
}
.works__cont .works__list .swiper-wrapper {
	display: flex;
	flex-wrap: wrap;
	height: auto;
}
.works__cont .works__item {
	width: calc((100% - 6em) / 3);
	height: auto;
	padding: 1.75em 0.75em 2em;
	background: var(--main-color);
}
.works__cont .works__item:nth-of-type(3n + 1) {
	padding-left: 1.5em;
}
.works__cont .works__item:nth-of-type(3n) {
	padding-right: 1.5em;
}
.works__cont .works__item:nth-of-type(n + 4) {
	margin-top: 2.5em;
}
.works__cont .works__item .item__thumb {
	width: 100%;
	aspect-ratio: 185 / 132;
	border-radius: 10px;
	overflow: hidden;
}
.works__cont .works__item .item__cont {
	display: flex;
	flex-direction: column;
	margin-top: 1em;
}
.works__cont .works__item .item__cont .item__tit {
	order: 2;
	line-height: 1.5;
	margin-top: 0.5em;
	font-weight: 500;
	font-size: 1rem;
}
.works__cont .works__item .item__cont .item__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25em;
}
.works__cont .works__item .item__cont .item__tags .tag {
	line-height: 1.5;
	padding: 0.125rem 0.5rem;
	font-weight: 700;
	font-size: 0.8125rem;
	color: var(--main-color);
	background: var(--yellow2-color);
}
.works__btm {
	margin-top: 3.75em;
}
.works__btm a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2em;
	width: 18.3em;
	aspect-ratio: 183 / 35;
	margin: 0 auto;
	border: 2px solid var(--orange2-color);
	border-radius: 10em;
	font-weight: 500;
	font-size: 1.25rem;
	color: var(--base-color);
	box-sizing: border-box;
	background: var(--main-color);
}
.works__btm a:after {
	display: block;
	width: 7px;
	aspect-ratio: 0.54 / 1;
	content: "";
	background: url(../img/arrow__ico-right-or.png) no-repeat;
	background-size: contain;
}
@media screen and (max-width: 768px) {
	#works {
		padding: 4.25em 0 3.25em;
	}
	.works__head {
		flex-direction: column;
		align-items: center;
		width: auto;
		gap: 0.5;
	}
	.works__head .works__tit--sub {
		width: auto;
	}
	.works__head .works__tit {
		font-size: 2rem;
		text-align: center;
	}
	.works__head .works__tit span {
		font-size: 2.667rem;
	}
	.works__head .works__tit--en {
		font-size: 5rem;
	}
	.works__cont {
		padding: 0;
	}
	.works__cont .works__list {
		display: flex;
		margin: 2.5em auto 0;
	}
	.works__cont .works__list .swiper-wrapper {
		display: flex;
		flex-wrap: nowrap;
		height: 100%;
	}
	.works__cont .works__item {
		width: 100%;
		height: 100%;
		padding: 1.67em;
		flex-shrink: 0;
		box-sizing: border-box;
	}
	.works__cont .works__item:nth-of-type(3n + 1) {
		padding-left: 1.67em;
	}
	.works__cont .works__item:nth-of-type(3n) {
		padding-right: 1.67em;
	}
	.works__cont .works__item:nth-of-type(n + 4) {
		margin-top: 0;
	}
	.works__cont .works__item .item__cont .item__tit {
		font-size: 1.33rem;
	}
	.works__cont .works__item .item__cont .item__tags .tag {
		font-size: 1.083rem;
	}
	.works__btm {
		margin-top: 3.25em;
		padding: 0 1.67em;
	}
	.works__btm a {
		width: 100%;
		aspect-ratio: auto;
		padding: 0.75em;
		font-size: 1.67rem;
	}
}


/* --------------------------------------------------
 * voice
-------------------------------------------------- */
#voice {
	position: relative;
	padding: 6.25em 0 7.875em;
	background: var(--orange2-color);
	overflow: hidden;
}
#voice:before {
	display: block;
	position: absolute;
	width: 150vw;
	aspect-ratio: 351 / 152;
	content: "";
	bottom: -55%;
	left: 50%;
	transform: rotate(-13deg) translate(-50%);
	background: rgba(255, 196, 106, 0.45);
	z-index: 1;
}
.voice__head {
	display: flex;
	position: relative;
	justify-content: center;
	width: 55%;
	aspect-ratio: 791 / 141;
	margin: 0 auto;
	z-index: 2;
	background: url(../img/voice__fukidashi.png) no-repeat;
	background-size: contain;
}
.voice__head .voice__tit {
	position: relative;
	height: 41%;
	line-height: 1.6;
	top: 15%;
	font-weight: 700;
	font-size: 2.5vw;
	white-space: nowrap;
	text-align: center;
}
.voice__cont {
	position: relative;
	margin-top: 3.125em;
	z-index: 2;
}
.voice__slider {
	position: relative;
	box-sizing: border-box;
	overflow: visible;
}
.voice__slider .swiper-wrapper {
	width: calc(120vw + 100px);
	left: calc((100vw - (120vw + 100px)) / 2);
}
.voice__slider .swiper-slide {
	width: 20vw;
	flex-shrink: 0;
	box-sizing: border-box;
	background: #fff;
	border-radius: 10px;	
}
.voice__slider .swiper-ctrl {
	position: absolute;
	width: calc(120vw + 100px);
	top: 50%;
	left: calc((100vw - (120vw + 100px)) / 2);
	transform: translateY(-50%);
	z-index: 100;
}
.voice__slider .swiper-ctrl-wrapper {
	position: relative;
	width: 90vw;
	margin: auto;
}
.voice__slider .swiper-ctrl .swiper-button-next,
.voice__slider .swiper-ctrl .swiper-button-prev {
	width: 3.5%;
	aspect-ratio: 1 / 1;
}
.voice__slider .swiper-ctrl .swiper-button-next img,
.voice__slider .swiper-ctrl .swiper-button-prev img {
	object-fit: contain;
}
.voice__slider .swiper-ctrl .swiper-button-next:after,
.voice__slider .swiper-ctrl .swiper-button-prev:after {
	display: none;
}
@media screen and (max-width: 768px) {
	.voice__head {
		width: 89.3%;
		aspect-ratio: 3.45 / 1;
		background: url(../img/voice__fukidashi-sp.png) no-repeat;
		background-size: contain;
	}
	.voice__head .voice__tit {
		height: auto;
		top: 15%;
		font-size: 1.67rem;
	}
	.voice__slider .swiper-wrapper {
		width: 100%;
		left: auto;
		right: auto;
		padding: 0 3.75em;
		box-sizing: border-box;
	}
	.voice__slider .swiper-slide {
		width: 100%;
		flex-shrink: 0;
		box-sizing: border-box;
		background: #fff;
		border-radius: 10px;	
	}
	.voice__slider .swiper-ctrl {
		width: 100%;
		top: 50%;
		left: auto;
	}
	.voice__slider .swiper-ctrl-wrapper {
		position: relative;
		width: 90vw;
		margin: auto;
	}
	.voice__slider .swiper-ctrl .swiper-button-next,
	.voice__slider .swiper-ctrl .swiper-button-prev {
		width: 2.5em;
		aspect-ratio: 1 / 1;
	}
}


/* --------------------------------------------------
 * store
-------------------------------------------------- */
#store {
	position: relative;
	padding: 4em 2em 6.25em;
}
.store__inner {
	display: flex;
	justify-content: center;
	width: 1200px;
	max-width: 100%;
	margin: 0 auto;
	gap: 5%;
}
.store__inner .store__cont {
	order: 2;
	width: 49%;
}
.store__inner .store__cont .store__tit {
	line-height: 1.6;
	font-weight: 700;
	font-size: 2rem;
	color: var(--orange3-color);
}
.store__inner .store__cont .store__summary {
	display: flex;
	flex-direction: column;
	margin-top: 1.875em;
	gap: 1em;
}
.store__inner .store__cont .store__summary .store__info {
	display: flex;
}
.store__inner .store__cont .store__summary .store__info + .store__info {
	padding-top: 1em;
	border-top: 1px solid var(--gray3-color);
}
.store__inner .store__cont .store__summary .store__info .tit {
	width: 26%;
	line-height: 1.6;
	font-weight: 700;
	font-size: 1rem;
}
.store__inner .store__cont .store__summary .store__info .dtl {
	width: 74%;
	line-height: 1.6;
	font-weight: 400;
	font-size: 1rem;
}
.store__inner .store__cont .store__tel {
	display: flex;
	align-items: center;
	margin-top: 1.375em;
	padding: 1.375em 2.5em 1.25em;
	background: var(--clear-bg-color);
	white-space: nowrap;
}
.store__inner .store__cont .store__tel .name {
	line-height: 1.6;
	margin-right: 1.5em;
	font-weight: 700;
	font-size: 1rem;
}
.store__inner .store__cont .store__tel img {
	width: 2.75em;
	aspect-ratio: 1 / 1;
	margin-right: 1em;
}
.store__inner .store__cont .store__tel .tel {
	line-height: 1;
	font-weight: 500;
	font-size: 3.375rem;
	color: var(--base-color);
}
.store__inner .store__thumb {
	width: 46%;
}
.store__inner .store__thumb img {
	height: auto;
	aspect-ratio: 111 / 73;
}
@media screen and (max-width: 1280px) {
	.store__inner {
		gap: 2.5%;
	}
	.store__inner .store__cont .store__tel {
		padding: 1em 1.5em;
	}
	.store__inner .store__cont .store__tel .name {
		margin-right: 1em;
	}
	.store__inner .store__cont .store__tel img {
		width: 1.5em;
		aspect-ratio: 1 / 1;
		margin-right: 1em;
	}
	.store__inner .store__cont .store__tel .tel {
		font-size: 2rem;
	}
}
@media screen and (max-width: 768px) {
	#store {
		position: relative;
		padding: 2.5em 1.67em 3.25em;
	}
	.store__inner {
		flex-direction: column;
		gap: 1.67em;
	}
	.store__inner .store__cont {
		width: 100%;
	}
	.store__inner .store__cont .store__tit {
		line-height: 1.6;
		font-weight: 700;
		font-size: 2rem;
		color: var(--orange3-color);
	}
	.store__inner .store__cont .store__summary {
		display: flex;
		flex-direction: column;
		margin-top: 1.67em;
		gap: 1.33em;
	}
	.store__inner .store__cont .store__summary .store__info {
		display: flex;
		flex-direction: column;
	}
	.store__inner .store__cont .store__summary .store__info + .store__info {
		padding-top: 1.33em;
		border-top: 1px solid var(--gray3-color);
	}
	.store__inner .store__cont .store__summary .store__info .tit {
		width: 100%;
		font-size: 1.33rem;
	}
	.store__inner .store__cont .store__summary .store__info .dtl {
		width: 100%;
		font-size: 1.33rem;
	}
	.store__inner .store__cont .store__tel {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 1.67em;
		padding: 1.67em 0;
	}
	.store__inner .store__cont .store__tel .name {
		display: block;
		width: 100%;
		margin-bottom: 0.5em;
		font-size: 1.167rem;
		text-align: center;
	}
	.store__inner .store__cont .store__tel img {
		width: 3em;
		margin-right: 0.5em;
	}
	.store__inner .store__cont .store__tel .tel {
		font-size: 3.5rem;
	}
	.store__inner .store__thumb {
		width: 100%;
	}
}


/* --------------------------------------------------
 * contact
-------------------------------------------------- */
#contact {
	position: relative;
	padding: 6.25em 2em;
	background: var(--clear-bg-color);
}
.contact__head {
	width: 1000px;
	max-width: 100%;
	margin: 0 auto;
}
.contact__head .contact__tit {
	line-height: 1.6;
	font-weight: 700;
	font-size: 3rem;
	text-align: center;
}
.contact__form {
	width: 1000px;
	max-width: 100%;
	margin: 5em auto 0;
}
.contact__form .input {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.contact__form .input + .input {
	margin-top: 2.5em;
}
.contact__form .input__fld label {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	line-height: 1.6;
	gap: 0.675em;
	font-family: var(--fm-inter);
	font-weight: 500;
	font-size: 1rem;
	color: var(--gray2-color);
}
.contact__form .input__fld label span {
	line-height: 1;
	padding: 0.5em 0.67em;
	border-radius: 5px;
	font-family: var(--fm-inter);
	font-weight: 700;
	font-size: 0.75rem;
	color: var(--main-color);
	background: var(--red3-color);
}
.contact__form .input__inner {
	width: 70%;
}
.contact__form .input__inner input,
.contact__form .input__inner select,
.contact__form .input__inner textarea {
	padding: 0.75em 1.25em;
	border: none;
	box-sizing: border-box;
	background: var(--main-color);
}
.contact__form .input__inner input::placeholder,
.contact__form .input__inner select,
.contact__form .input__inner textarea::placeholder {
	color: var(--gray4-color);
}
.contact__form .input__inner input {
	width: 100%;
}
.contact__form .input__inner select {
	position: relative;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 12.5em;
	background: var(--main-color) url('../img/arrow__ico-bottom-b.png') no-repeat right 1.25em center;
	background-size: 0.875em 0.5em;
	cursor: pointer;
}
.contact__form .input__inner.radio,
.contact__form .input__inner.radio .wpcf7-radio {
	display: flex;
	gap: 1.5em;
}
.contact__form .input__inner.radio label {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	font-size: 1rem;
	gap: 0.5em;
}
.contact__form .input__inner.radio input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	display: inline-block;
	width: 1.375em;
	aspect-ratio: 1 / 1;
	margin: 0;
	padding: 0;
	border: 1px solid var(--base-color);
	border-radius: 50%;
	background: var(--main-color);
	box-sizing: border-box;
	position: relative;
}
.contact__form .input__inner.radio input[type="radio"]:checked::before {
	display: block;
	width: 0.875em;
	aspect-ratio: 1 / 1;
	background-color: var(--base-color);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	content: "";
	transform: translate(-50%, -50%);
}
.contact__form .input.textarea {
	align-items: flex-start;
}
.contact__form .input__inner textarea {
	width: 100%;
	min-height: 20.675em;
}
.contact__form .input.policy {
	justify-content: center;
}
.contact__form .input.policy label {
	position: relative;
	cursor: pointer;
	user-select: none;
	display: inline-flex;
	align-items: center;
}
.contact__form .input.policy label a {
	color: var(--base-color);
}
.contact__form .input.policy input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 18px;
	height: 18px;
	margin-right: 0.5em;
	border: 1px solid var(--base-color);
	position: relative;
	box-sizing: border-box;
	transition: 0.3s ease;
	cursor: pointer;
}
.contact__form .input.policy input[type="checkbox"]:checked {
	border-color: var(--base-color);
}
.contact__form .input.policy input[type="checkbox"]:checked::after {
	position: absolute;
	width: 0.375em;
	height: 0.5em;
	top: 0.1em;
	left: 0.25em;
	border: solid var(--base-color);
	border-width: 0 2px 2px 0;
	content: "";
	transform: rotate(45deg);
}
.contact__form .submit {
	display: flex;
	justify-content: center;
	margin: 5em auto;
}
.contact__form .submit .btn__submit {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 24em;
	padding: 1.5em 2.5em;
	border-radius: 6.25em;
	gap: 2.5em;
	font-weight: 900;
	font-size: 1.25rem;
	color: var(--main-color);
	box-sizing: border-box;
	background: var(--orange2-color);
	white-space: nowrap;
}
.contact__form .submit .btn__submit:after {
	display: block;
	width: 7px;
	aspect-ratio: 0.54 / 1;
	content: "";
	background: url(../img/arrow__ico-right-w.png) no-repeat;
	background-size: contain;
}
@media screen and (max-width: 768px) {
	#contact {
		padding: 3.25em 1.67em;
	}
	.contact__head .contact__tit {
		font-size: 2rem;
	}
	.contact__form {
		margin: 3.25em auto 0;
	}
	.contact__form .input {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.33em;
	}
	.contact__form .input + .input {
		margin-top: 3.25em;
	}
	.contact__form .input__fld label {
		gap: 0.75em;
		font-size: 1.33rem;
	}
	.contact__form .input__fld label span {
		font-size: 1rem;
	}
	.contact__form .input__inner {
		width: 100%;
	}
	.contact__form .input__inner input,
	.contact__form .input__inner select,
	.contact__form .input__inner textarea {
		padding: 1em 1.67em;
		font-size: 1.33rem;
	}
	.contact__form .input__inner input {
		width: 100%;
	}
	.contact__form .input__inner select {
		width: 16.667em;
	}
	.contact__form .input__inner.radio,
	.contact__form .input__inner.radio .wpcf7-radio {
		display: flex;
		gap: 1.33em;
	}
	.contact__form .input__inner.radio label {
		display: inline-flex;
		align-items: center;
		cursor: pointer;
		font-size: 1.33rem;
		gap: 0.75em;
	}
	.contact__form .input__inner textarea {
		width: 100%;
		min-height: 20.833em;
	}
	.contact__form .input.policy {
		align-items: center;
	}
	.contact__form .input.policy label {
		font-size: 1.167rem;
	}
	.contact__form .submit {
		margin: 3.25em auto;
	}
	.contact__form .submit .btn__submit {
		width: 100%;
		font-size: 1.33rem;
	}
}


/* --------------------------------------------------
 * faq
-------------------------------------------------- */
#faq {
	padding: 8.675em 0 12.5em;
}
.faq__head {
	display: flex;
	justify-content: center;
	width: 58%;
	margin: 0 auto;
}
.faq__head .faq__tit {
	position: relative;
	line-height: 1.6;
	font-weight: 700;
	font-size: 3.34vw;
	white-space: nowrap;
}
.faq__head .faq__tit--en {
	position: absolute;
	top: 50%;
	left: 50%;
	line-height: 1.6;
	font-weight: 700;
	font-size: 10.6vw;
	color: rgba(255, 109, 29, 0.2);
	letter-spacing: -0.02em;
	white-space: nowrap;
	transform: translate(-50%, -50%);
	z-index: 0;
}
.faq__cont {
	margin-top: 7.375em;
	padding: 0 2em;
}
.faq__cont .faq__list {
	display: flex;
	flex-direction: column;
	width: 800px;
	max-width: 100%;
	margin: 0 auto;
	gap: 1.25em;
}
.faq__cont .faq__item {
	display: flex;
	flex-direction: column;
	gap: 1.25em;
	padding-bottom: 1.25em;
	border-bottom: 1px solid var(--gray5-color);
}
.faq__cont .faq__item .item__q {
	display: flex;
	align-items: center;
	line-height: 1.6;
	gap: 1.11em;
	font-weight: 700;
	font-size: 1.125rem;
}
.faq__cont .faq__item .item__a {
	display: flex;
	align-items: center;
	line-height: 1.6;
	gap: 1.11em;
	font-weight: 400;
	font-size: 1.125rem;
}
.faq__cont .faq__item .item__q:before {
	display: block;
	width: 1.375em;
	line-height: 1.6;
	content: "Q.";
	font-weight: 500;
	color: var(--orange2-color);
}
.faq__cont .faq__item .item__a:before {
	display: block;
	width: 1.375em;
	line-height: 1.6;
	content: "A.";
	font-weight: 500;
	color: var(--orange2-color);
}
@media screen and (max-width: 768px) {
	#faq {
		padding: 3.25em 0 6.675em;
	}
	.faq__head {
		width: auto;
	}
	.faq__head .faq__tit {
		font-size: 2rem;
	}
	.faq__head .faq__tit--en {
		font-size: 5rem;
	}
	.faq__cont {
		margin-top: 3.25em;
		padding: 0 1.67em;
	}
	.faq__cont .faq__list {
		gap: 1.67em;
	}
	.faq__cont .faq__item {
		gap: 1.67em;
		padding-bottom: 1.67em;
	}
	.faq__cont .faq__item .item__q {
		gap: 1em;
		font-size: 1.67rem;
	}
	.faq__cont .faq__item .item__a {
		gap: 1em;
		font-size: 1.67rem;
	}
	.faq__cont .faq__item .item__q:before {
		width: 2em;
	}
	.faq__cont .faq__item .item__a:before {
		width: 2em;
	}
}


/* --------------------------------------------------
 * float cta
-------------------------------------------------- */
@media screen and (max-width: 768px) {
	#float__cta {
		position: fixed;
		width: 100%;
		bottom: 0;
		background: var(--main-color);
		z-index: 100;
	}
	#float__cta .cta__btn-list {
		display: flex;
	}
	#float__cta .cta__btn-item {
		width: calc(100% / 3);
		height: 5em;
	}
	#float__cta .cta__btn-item a {
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		padding: 0;
		border-radius: 0;
		font-size: 1.25rem;
		text-align: center;
	}
	#float__cta .cta__btn-item a:after {
		display: none;
	}
}


/* --------------------------------------------------
 * footer
-------------------------------------------------- */
#footer {
	padding: 4.375em 2em 1em;
	box-sizing: border-box;
	background: var(--gray6-color);
}
.footer__inner {
	display: flex;
	justify-content: space-between;
	width: 1200px;
	max-width: 100%;
	margin: 0 auto 4.375em;
}
.footer__inner .footer__info {
	display: flex;
	flex-direction: column;
	width: 34%;
	gap: 1.25em;
}
.footer__inner .footer__info .info__logo img {
	object-fit: contain;
}
.footer__inner .footer__info .info__place {
	line-height: 1.6;
	font-weight: 500;
	font-size: 1rem;
	color: var(--main-color);
}
.footer__inner .footer__info .info__link-item + .info__link-item {
	margin-top: 0.5em;
} 
.footer__inner .footer__info .info__link-item a {
	line-height: 1;
	font-weight: 400;
	font-size: 0.875rem;
	color: var(--main-color);
	text-decoration: underline;
}
.footer__inner .footer__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 53%;
	gap: 1em;
}
.footer__inner .footer__cta .cta__list {
	display: flex;
	gap: 1.875em;
}
.footer__inner .footer__cta .cta__item a {
	padding: 1.2em 2em;
	border: 3px solid var(--main-color);
	gap: 2em;
}
.footer__inner .footer__cta .cta__info {
	display: flex;
	flex-direction: column;
	gap: 1em;
}
.footer__inner .footer__cta .cta__info .cta__tel a {
	display: flex;
	align-items: flex-end;
	line-height: 1;
	gap: 0.28em;
	font-weight: 500;
	font-size: 4.875rem;
	color: var(--main-color);
	white-space: nowrap;
}
.footer__inner .footer__cta .cta__info .cta__tel a:before {
	display: block;
	width: 0.82em;
	aspect-ratio: 1 / 1;
	content: "";
	background: url(../img/phone__ico-w.png) no-repeat;
	background-size: contain;
}
.footer__inner .footer__cta .cta__info .cta__time {
	line-height: 1.6;
	font-weight: 500;
	font-size: 0.9375rem;
	color: var(--main-color);
}
.footer__copy {
	line-height: 1;
	font-weight: 400;
	font-size: 0.6875rem;
	color: var(--main-color);
	text-align: center;
}
@media screen and (max-width: 1080px) {
	.footer__inner .footer__info {
		width: 30%;
	}
	.footer__inner .footer__cta {
		width: 60%;
	}
	.footer__inner .footer__cta .cta__list {
		display: flex;
		gap: 1em;
	}
	.footer__inner .footer__cta .cta__item a {
		padding: 1em 1.5em;
		gap: 1em;
		font-size: 1.125rem;
	}
	.footer__inner .footer__cta .cta__info .cta__tel a {
		font-size: 5vw;
	}
}
@media screen and (max-width: 768px) {
	#footer {
		padding: 5em 1.67em 6.25em;
	}
	.footer__inner {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 1200px;
		max-width: 100%;
		margin: 0 auto 1.67em;
	}
	.footer__inner .footer__info {
		width: 100%;
		gap: 1.67em;
	}
	.footer__inner .footer__info .info__logo img {
		width: 88.7%;
	}
	.footer__inner .footer__info .info__place {
		font-size: 1.25rem;
	}
	.footer__inner .footer__info .info__link-list {
		display: none;
	}
	.footer__inner .footer__cta {
		flex-direction: column;
		width: 100%;
		gap: 4.5em;
	}
	.footer__inner .footer__cta .cta__list {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin-top: 1.67em;
		gap: 1em;
	}
	.footer__inner .footer__cta .cta__item a {
		justify-content: center;
		width: 100%;
		padding: 1.25em;
		border: 2px solid var(--main-color);
		gap: 3.25em;
		font-size: 1.33rem;
		box-sizing: border-box;
	}
	.footer__inner .footer__cta .cta__info .cta__tel a {
		gap: 0.375em;
		font-size: 3.5rem;
	}
	.footer__inner .footer__cta .cta__info .cta__tel a:before {
		width: 3rem;
	}
	.footer__inner .footer__link-list {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 4.5em;
	}
	.footer__inner .footer__link-item + .footer__link-item {
		margin-top: 0.675em;
	} 
	.footer__inner .footer__link-item a {
		line-height: 1;
		font-weight: 400;
		font-size: 1.16rem;
		color: var(--main-color);
		text-decoration: underline;
	}
	.footer__copy {
		font-size: 0.83rem;
	}
}