/* ----------------------- */
/* メインビジュアル */
.main-v {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.main-v__img--pc,
.main-v__img--sp {
	width: 100%;
	position: relative;
}

.main-v__logo {
	position: absolute;
	display: block;
	width: 318px;
	top: 40px;
	left: 40px;
}

.main-v-__shovel {
	position: absolute;
	top: 0%;
	left: 23%;
	width: 38%;
}

.main-v-__name {
	position: absolute;
	top: 73%;
	left: 7.5%;
	width: 50%;
}

.main-v-__circle {
	position: absolute;
	top: 57%;
	left: 51%;
	width: 14%;
}

.main-v__buy {
	position: absolute;
	right: 40px;
	top: 40px;
}

@media screen and (max-width: 767px) {
	.main-v__logo {
		display: none;
	}

	.main-v-__shovel {
		top: 7%;
		left: -14%;
		width: 127%;
	}

	.main-v-__name {
		top: 80%;
		left: 9%;
		width: 85%;
	}

	.main-v-__circle {
		top: 47%;
		left: 64%;
		width: 41%;
	}

	.main-v__buy {
		right: 20px;
		top: 20px;
	}
}

/* ----------------------- */
/* メインビジュアル下使い道 */
.howtouse {
	display: flex;
	gap: 3px;
	background: #000;
	border-top: 3px solid;
	border-bottom: 3px solid;
}

.howtouse__content {
	width: 25%;
	position: relative;
	container: howto / inline-size;
}

.howtouse__content--img {
	width: 100%;
}

.howtouse__content--under {
	background-color: var(--c-main-gold);
	height: clamp(30px, 3vw, 50px);
	width: 100%;
	position: absolute;
	bottom: 0;
	opacity: 0.9;
}

.howtouse__content--under-num {
	position: absolute;
	bottom: -11px;
	left: 3px;
	max-width: 57px;
	width: 15%;
}

.howtouse__content--under-text {
	font-weight: 700;
	font-size: clamp(15px, 1.6vw, 24px);
	position: absolute;
	bottom: 18%;
	left: 71px;
}

@container howto (max-width: 240px) {
	.howtouse__content--under-num {
		bottom: -7px;
	}
	.howtouse__content--under-text {
		left: 45px;
	}
}

@media screen and (max-width: 767px) {
	.howtouse {
		flex-direction: column;
	}

	.howtouse__content {
		width: 100%;
	}
	.howtouse__content--under {
		height: clamp(40px, 10vw, 60px);
	}

	.howtouse__content--under-num {
		bottom: -12px;
		max-width: 53px;
	}

	.howtouse__content--under-text {
		font-size: 24px;
	}
}

/* ----------------------- */
/* 共通-商品ページ導線 */
.common-product {
	background-color: #000;
	padding: 5vw 0 4vw;
	color: #fff;
}

.common-product__inner {
	max-width: var(--inner-width);
	margin: 0 auto;
}

.common-product__heading {
	display: flex;
	align-items: flex-end;
	margin: 0 0 6px;
}

.common-product__heading--proline {
	width: 170px;
	position: relative;
	top: -14px;
	margin-right: 62px;
}

.common-product__heading--newproduct {
	width: 212px;
}

.common-product__newproduct {
	width: 212px;
}

.common-product__productname {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	font-weight: 500;
	flex-wrap: wrap;
	row-gap: 1vw;
}

.common-product__productname--name,
.common-product__productname--price {
	font-size: 40px;
}

.common-product__pruductname--price-span {
	font-size: 24px;
	font-weight: 400;
}

.common-product__btn {
	background-color: var(--c-main-red);
	font-size: 20px;
	padding: 0px 34px;
	max-width: 250px;
	min-width: 200px;
	height: 60px;
	border-radius: 30px;
	margin-left: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (hover: hover) and (pointer: fine) {
	.common-product__btn:hover {
		background-color: #fff;
		opacity: 1;
		color: var(--c-main-red);
		transform: scale(1.08, 1.08);
	}
}

.common-product__btn-shop.sp {
	display: none;
}

.common-product__shop {
	display: flex;
	justify-content: space-evenly;
	margin-top: 2vw;
	column-gap: 1.5vw;
	justify-content: center;
}

.common-product__shop__btn {
	max-width: 400px;
}

@media (hover: hover) and (pointer: fine) {
	.common-product__shop__btn:hover {
		transform: scale(1.08, 1.08);
		opacity: 1;
	}
}

.common-product__shop__btn-img {
	width: 100%;
}

@media screen and (max-width: 767px) {
	.common-product {
		padding: 4vw var(--inner-padding-sp) 6vw;
	}

	.common-product__inner {
		max-width: 346px;
		margin: 0 auto;
	}

	.common-product__heading {
		justify-content: center;
		margin: 0 2px 6px;
	}
	.common-product__heading--proline {
		margin-right: 28px;
	}

	.common-product__productname {
		flex-direction: column;
		align-items: center;
		row-gap: 18px;
		font-size: 32px;
	}

	.common-product__newproduct {
		width: 130px;
	}

	.common-product__productname--name {
		font-size: 27px;
	}

	.common-product__productname--price {
		font-size: 32px;
		font-weight: 600;
	}

	.common-product__pruductname--price-span {
		font-size: 22px;
	}

	.common-product__btn {
		margin: 1vw 0 0;
		max-width: 100%;
		width: 100%;
	}

	.common-product__btn-shop.sp {
		display: block;
		width: 100%;
	}

	.common-product__btn-shop-img {
		width: 100%;
	}
}

/* ----------------------- */
/* こんな商品あったらいいのに */

.voice {
	background: url(../img/voice-bg.jpg);
	position: relative;
	background-size: cover;
}

.voice::before,
.voice::after {
	content: "";
	background: #000;
	opacity: 0.1;
	position: absolute;
	width: 120px;
	height: 100%;
	top: 0;
}

.voice::before {
	left: 0;
}

.voice::after {
	right: 0;
}

.voice__inner {
	max-width: var(--inner-width);
	margin: 0 auto;
	padding: 5vw var(--inner-padding-pc);
}

.voice__heading {
	background-color: var(--c-main-red);
	color: #fff;
	height: 72px;
	border-radius: 20px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.voice__heading::after {
	content: "";
	background-image: url(../img/hukidashi.png);
	position: absolute;
	bottom: -38px;
	left: 9%;
	height: 50px;
	width: 50px;
	background-repeat: no-repeat;
	background-size: contain;
}

.voice__heading--h2 {
	font-size: 48px;
	text-align: center;
}

.voice__heading--undertext {
	font-size: 28px;
	text-align: center;
	font-weight: 600;
	margin: 24px 0 45px;
}

.voice__content {
	margin: 0 0 20px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.voice__content--text {
	background-color: #fff;
	border: solid 2px var(--c-main-red);
	border-radius: 11px;
	font-weight: 500;
	width: 400px;
	text-align: left;
	padding: 15px 60px;
	position: relative;
	font-size: 24px;
}

.voice__content-img {
	width: 60px;
	position: relative;
	bottom: -12px;
	margin: 0 40px 0 0;
}

.voice__content:nth-child(odd) .voice__content-img {
	margin: 0 0 0 40px;
}

.voice__content:nth-child(odd) .voice__content--text {
	width: 440px;
}

.voice__content:nth-child(even) {
	flex-direction: row-reverse;
}

.voice__content:nth-child(odd) .voice__content--text:after {
	content: "";
	background-image: url(../img/hukidashi-triangle-l.png);
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;
	right: -28px;
	top: 65%;
	width: 26px;
	height: 22px;
}

.voice__content:nth-child(even) .voice__content--text:after {
	content: "";
	background-image: url(../img/hukidashi-triangle-r.png);
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;
	left: -28px;
	top: 65%;
	width: 26px;
	height: 22px;
}

.voice__arrow {
	margin: 3.5vw auto;
	width: 236px;
	display: block;
}

.voice__respond {
	border-radius: 20px;
	background: #000000 url(../img/bg-dot-gray.png) repeat;
	text-align: center;
	padding-bottom: 1.5vw;
	position: relative;
	z-index: 2;
}

.voice__respond--h3 {
	color: #fff;
	font-size: 32px;
	font-weight: 600;
	padding: 2vw 0;
}

.voice__respond--span {
	color: var(--c-main-gold);
}

.voice__respond--content {
	display: flex;
	justify-content: space-around;
	padding: 3vw 1vw;
	margin: 0 1.5vw;
	background: #fff;
	border-radius: 10px;
}

.voice__respond--item {
	width: 31%;
}

.voice__respond--item-img {
	width: 100%;
}

.voice__respond--item-title {
	color: var(--c-main-red);
	font-size: 28px;
	font-weight: 600;
	margin: 1vw 0;
}

.voice__respond--item-text {
	font-size: 16px;
	text-align: left;
	line-height: 1.5;
}

@media screen and (max-width: 1200px) {
	.voice::before,
	.voice::after {
		background: none;
	}
}

@media screen and (max-width: 767px) {
	.voice {
		background-size: contain;
	}

	.voice__inner {
		padding: 9vw var(--inner-padding-sp);
	}

	.voice__heading {
		padding: 45px 0 50px;
	}

	.voice__heading::after {
		bottom: -37px;
		left: 3%;
		height: 48px;
		width: 35px;
	}

	.voice__heading--h2 {
		font-size: 32px;
	}

	.voice__heading--undertext {
		font-size: 18px;
		margin: 9px 0 22px;
	}

	.voice__heading--span {
		font-size: 28px;
	}

	.voice__content--text {
		padding: 18px 18px;
		font-size: 16px;
	}

	.voice__content:nth-child(odd) .voice__content--text,
	.voice__content:nth-child(even) .voice__content--text {
		width: 52%;
	}

	.voice__content-img {
		width: 65px;
		margin: 0 22px 0 0;
		left: -16px;
	}

	.voice__content:nth-child(odd) .voice__content-img {
		margin: 0 0 0 11px;
		left: auto;
		right: -16px;
	}

	.voice__arrow {
		min-width: 144px;
		width: 50%;
		margin: 9vw auto;
	}

	.voice__respond--h3 {
		font-size: 24px;
		padding: 6vw 0 5vw;
		line-height: 1.4em;
	}

	.voice__respond--content {
		flex-direction: column;
		align-items: center;
		margin: 0 3vw 2vw;
		padding: 3vw;
	}

	.voice__respond--item {
		max-width: 340px;
		width: 96%;
	}

	.voice__respond--item-title {
		margin: 2vw 0;
		font-size: 24px;
	}

	.voice__respond--item-text {
		margin: 0 auto 4vw;
		width: 92%;
		max-width: 270px;
		font-size: 14px;
	}
}

@media screen and (max-width: 470px) {
	.voice__content:nth-child(odd) .voice__content--text,
	.voice__content:nth-child(even) .voice__content--text {
		width: 93%;
	}
}
/* ----------------------- */
/* 動画 */

.movie {
	background: var(--c-main-gold) url(../img/bg-dot-wh.png) repeat;
	padding: 5vw 0 3vw;
}

.movie__h2 {
	font-size: 36px;
	font-weight: 600;
	text-align: center;
	padding: 0 0 1vw;
}

.movie__movie-wrapper {
	max-width: var(--inner-width);
	padding: 0 var(--inner-padding-pc);
	aspect-ratio: 16/9;
	margin: 1vw auto;
}

.movie__movie-iframe {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 767px) {
	.movie {
		padding: 11vw 0 4vw;
	}

	.movie__movie-wrapper {
		margin: 3vw var(--inner-padding-sp);
		padding: 0;
	}

	.movie__h2 {
		font-size: 24px;
	}
}

/* ----------------------- */
/* 商品紹介grid */

.product-intro {
	background: var(--c-sub-yellow) url(../img/bg-dot-wh.png) repeat;
	padding: 2.5vw 0 4vw;
}

.product-intro__inner {
	background: #fff;
	max-width: var(--inner-width);
	margin: 0 auto;
	padding: 2.5vw 2.5vw 1.5vw;
	border-radius: 20px;
}

.product-intro__h2 {
	font-size: 32px;
	font-weight: 800;
	background-color: var(--c-main-gold);
	border-radius: 24px;
	padding: 0.5vw 3vw;
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	margin: 0 auto 2vw;
}

.product-intro__scene {
	font-size: 28px;
	font-weight: 600;
	text-align: center;
	margin: 3vw auto;
}

.product-intro__menu {
	display: flex;
	font-size: 18px;
	font-weight: 800;
}

.product-intro__menu--item {
	border: 1px solid var(--c-main-gold);
	margin-right: -1px;
	margin-bottom: -1px;
	width: 45%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1vw 0;
}

.product-intro__menu--item:first-child {
	border-radius: 10px 0 0 10px;
}

.product-intro__menu--item:nth-child(2) {
	width: 38%;
}

.product-intro__menu--item:last-child {
	border-radius: 0 10px 10px 0;
	width: 28%;
}

.product-intro__grid {
	display: grid;
	grid-template-columns: repeat(2, 50%);
	grid-template-rows: repeat(8, max-content);
	gap: 1vw 2vw;
	margin: 0 2vw 0 0;
}

.product-intro__grid--title01 {
	grid-area: 1 / 1 / 2 / 3;
}
.product-intro__grid--content01 {
	grid-area: 2 / 1 / 3 / 2;
}
.product-intro__grid--content02 {
	grid-area: 2 / 2 / 3 / 3;
}
.product-intro__grid--title02 {
	grid-area: 3 / 1 / 4 / 3;
}
.product-intro__grid--content03 {
	grid-area: 4 / 1 / 5 / 3;
	display: flex;
}
.product-intro__grid--title03 {
	grid-area: 5 / 1 / 6 / 3;
}
.product-intro__grid--content04 {
	grid-area: 6 / 1 / 7 / 2;
}
.product-intro__grid--content05 {
	grid-area: 6 / 2 / 7 / 3;
}
.product-intro__grid--title04 {
	grid-area: 7 / 1 / 8 / 3;
}
.product-intro__grid--content06 {
	grid-area: 8 / 1 / 9 / 3;
	display: flex;
}

.product-intro__grid--title {
	font-weight: 600;
	font-size: 24px;
	margin: 2vw 0 0.5vw;
}

.product-intro__grid--img {
	width: 100%;
	object-fit: cover;
	border-radius: 6px;
	aspect-ratio: 3 / 1.5;
	margin: 0 0 1vw;
	border-radius: 10px;
}

.content01-img {
	object-position: 50% 44%;
}

.content05-img {
	padding: 1vw 1.5vw 1.5vw;
	margin: 0;
	border-radius: 28px;
}

.content03-img,
.content06-img {
	max-width: 550px;
	width: 177vw;
	aspect-ratio: 22/8.4;
	object-position: 50% 83%;
}

.content06-img {
	object-position: 50% 37%;
}

.product-intro__grid--item-text {
	letter-spacing: 0.1em;
	padding-top: 1vw;
}

.product-intro__grid--text {
	font-size: 16px;
	line-height: 1.7;
}

.content03-text,
.content06-text {
	margin: 0 1vw;
}

.product-intro__grid--span {
	font-size: 12px;
}

.product-intro__grid--subtitle {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 1vw;
}

.content05-item {
	background: var(--c-sub-yellow);
	font-weight: 800;
	text-align: center;
	border-radius: 10px;
}

.product-intro__grid--item-point {
	background: var(--c-main-gold);
	border-radius: 10px 10px 0 0;
	padding: 0.7vw 0;
}

@media screen and (max-width: 767px) {
	.product-intro {
		padding: 9vw var(--inner-padding-sp);
	}

	.product-intro__h2 {
		font-size: 16px;
		width: 85%;
		padding: 1.5vw 5vw;
		margin: 4vw auto 3vw;
	}

	.product-intro__menu {
		font-size: 13px;
		flex-wrap: wrap;
		margin: 1vw 0 5vw;
	}

	.product-intro__menu--item {
		width: 60%;
	}
	.product-intro__menu--item:nth-child(even) {
		width: 40%;
	}

	.product-intro__menu--item:first-child {
		border-radius: 6px 0 0 0;
	}

	.product-intro__menu--item:nth-child(2) {
		border-radius: 0 6px 0 0;
	}

	.product-intro__menu--item:nth-child(3) {
		border-radius: 0 0 0 6px;
	}

	.product-intro__menu--item:last-child {
		border-radius: 0 0 6px 0;
	}

	.product-intro__grid {
		grid-template-columns: 1fr;
		margin: 0 auto;
		padding: 0 3vw;
		max-width: 400px;
		width: 96%;
	}

	.product-intro__grid--title01 {
		grid-area: 1 / 1 / 2 / 2;
	}
	.product-intro__grid--content01 {
		grid-area: 2 / 1 / 3 / 2;
	}
	.product-intro__grid--content02 {
		grid-area: 3 / 1 / 4 / 2;
	}
	.product-intro__grid--title02 {
		grid-area: 4 / 1 / 5 / 2;
	}
	.product-intro__grid--content03 {
		grid-area: 5 / 1 / 6 / 2;
		flex-direction: column;
	}
	.product-intro__grid--title03 {
		grid-area: 6 / 1 / 7 / 2;
	}
	.product-intro__grid--content04 {
		grid-area: 7 / 1 / 8 / 2;
	}
	.product-intro__grid--content05 {
		grid-area: 8 / 1 / 9 / 2;
	}
	.product-intro__grid--title04 {
		grid-area: 9 / 1 / 10 / 2;
	}
	.product-intro__grid--content06 {
		grid-area: 10 / 1 / 11 / 2;
		flex-direction: column;
	}

	.content05-item {
		margin: 0 0 4vw;
	}

	.product-intro__grid--img {
		aspect-ratio: 255/160;
	}

	.content05-img {
		border-radius: 17px;
		aspect-ratio: 235 / 115;
		padding: 2vw 3vw;
		object-position: 50% 100%;
	}

	.content03-img,
	.content06-img {
		width: 100%;
	}

	.product-intro__grid--title {
		font-size: 20px;
		margin: 4vw 0 3vw;
	}

	.product-intro__grid--item-text {
		font-size: 18px;
		padding-top: 2vw;
	}

	.product-intro__grid--text {
		margin: 3vw 0 4vw;
	}

	.product-intro__grid--subtitle,
	.product-intro__grid--text {
		font-size: 14px;
		line-height: 1.4;
	}

	.product-intro__grid--item-point {
		font-size: 14px;
	}
}

/* ----------------------- */
/* 商品詳細　 */

.product-detail {
	background: var(--c-bg-gray);
	padding: 5vw var(--inner-padding-pc);
}

.product-detail__wrapper {
	max-width: var(--inner-width);
	margin: 0 auto;
	padding: 2.5vw;
	border: 4px solid #fff;
}

.product-detail__inner {
	border: none;
}

.product-detail__content {
	display: flex;
	font-size: 18px;
}

.product-detail__content--table {
	width: 60%;
}

.product-detail__content--img {
	aspect-ratio: 1/1;
	max-width: 360px;
}

.product-detail__content--table-th {
	background: var(--c-bg-gray-light);
	color: #fff;
}

.product-detail__content--table-td {
	background: #fff;
}

.product-detail__content--table-th,
.product-detail__content--table-td {
	vertical-align: middle;
	text-align: center;
	font-weight: 400;
	height: 45px;
}

.product-detail__popup-btn {
	border: 1px solid #fff;
	color: #fff;
	width: 240px;
	height: 45px;
	font-size: 16px;
	text-align: center;
	margin: 2vw auto;
	display: block;
	transition: 0.1s;
}

@media (hover: hover) and (pointer: fine) {
	.product-detail__popup-btn:hover {
		color: var(--c-bg-gray);
		background-color: #fff;
		transition: 0.1s;
	}
}

.product-detail__popup-content {
	display: none;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	background-color: rgba(0, 0, 0, 0.6);
	height: 100vh;
	width: 100%;
	z-index: 2;
}

.product-detail__popup-content--item {
	background: url(../img/size.jpg);
	position: absolute;
	width: 600px;
	height: 600px;
	aspect-ratio: 1;
	background-size: cover;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.product-detail__popup--close {
	display: block;
	position: absolute;
	top: -7%;
	right: 65%;
	width: 50px;
	height: 50px;
	transform: translateX(830%) translateY(50%);
	background: var(--c-main-gold);
	border-radius: 50%;
	box-shadow: 0px 3px 6px 2px rgba(0, 0, 0, 0.5);
	transition: 0.3s;
}

@media (hover: hover) and (pointer: fine) {
	.product-detail__popup--close:hover {
		background: #fff;
		transition: 0.3s;
	}
}

@media (hover: hover) and (pointer: fine) {
	.product-detail__popup--close:hover::before,
	.product-detail__popup--close:hover::after {
		background: var(--c-main-gold);
		transition: 0.3s;
	}
}

.product-detail__popup--close::before,
.product-detail__popup--close::after {
	/* 共通設定 */
	content: "";
	position: absolute;
	left: 25px;
	width: 5px;
	height: 30px;
	background: #fff;
	transition: 0.3s;
}

.product-detail__popup--close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.product-detail__popup--close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.product-detail__popup-content--img {
	max-width: 500px;
	position: fixed;
	inset: 0;
	margin: auto;
}

.product-detail__text {
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
	padding-left: 1em;
	text-indent: -1em;
	margin-bottom: 0.1em;
}

@media screen and (max-width: 767px) {
	.product-detail {
		padding: 8vw var(--inner-padding-sp);
	}

	.product-detail__wrapper {
		padding: 0;
		border: 0;
		border: none;
	}

	.product-detail__inner {
		border: 4px solid #fff;
		margin-bottom: 6vw;
	}

	.product-detail__content {
		flex-direction: column;
		align-items: center;
		margin: 0 auto;
		padding: 4vw;
		max-width: 360px;
		font-size: 16px;
	}

	.product-detail__content--table {
		width: 100%;
	}

	.product-detail__content--table-th,
	.product-detail__content--table-td {
		height: 30px;
	}

	.product-detail__content--img {
		aspect-ratio: 11/15.2;
		width: 100%;
	}

	.product-detail__text {
		font-size: 12px;
	}

	.product-detail__popup-btn {
		margin: 2vw auto 5vw;
		width: 135px;
		height: 30px;
	}

	.product-detail__popup-content--item {
		max-width: 400px;
		width: 400px;
		height: auto;
	}

	.product-detail__popup--close {
		top: -12%;
		right: 98%;
	}
}

@media screen and (max-width: 480px) {
	.product-detail__popup-content--item {
		width: 300px;
		height: auto;
	}

	.product-detail__popup--close {
		width: 47px;
		height: 47px;
		top: -18%;
		left: -38%;
		right: 0;
	}

	.product-detail__popup--close::before,
	.product-detail__popup--close::after {
		left: 24px;
	}
}

/* ----------------------- */
/* 会社紹介　 */

.company {
	max-width: var(--inner-width);
	padding: 0 var(--inner-padding-pc);
	margin: 0 auto 6vw;
	position: relative;
	overflow: hidden;
}

.company__content {
	display: flex;
	margin: 5vw auto 0;
}

.company__content--left {
	width: 74%;
	min-width: 400px;
	padding-right: 40px;
}

.company__content--left-lead {
	font-size: 20px;
	background: var(--c-main-red);
	border-radius: 24px;
	color: #fff;
	font-weight: 600;
	padding: 0.5vw 0;
	text-align: center;
	border: 3px solid var(--c-main-red);
}

.company__content--right-sp {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}

.company__content--right-sp-img {
	width: 100%;
}

.company__content--right-pc-img {
	width: 100%;
}

.company__content--left-h2 {
	margin: 0.3vw auto 2vw;
	font-size: 40px;
	font-weight: 600;
	text-align: center;
}

.company__content--left-h2span {
	font-size: 23px;
}

.company__content--left-text {
	font-size: 16px;
	line-height: 1.7;
}

.company__no1 {
	border: 2px solid var(--c-main-red);
	border-radius: 20px;
	max-width: 720px;
	margin: 3vw auto;
	padding: 2vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.company__no1-p {
	font-size: 20px;
	color: var(--c-main-red);
	font-weight: 500;
	line-height: 1.4;
}

.company__no1-p--span {
	font-size: 14px;
	color: initial;
}

.company__no1-img {
	max-width: 180px;
}

@media screen and (max-width: 767px) {
	.company {
		padding: 0vw;
		margin: 0 auto 9vw;
	}

	.company__content {
		margin: 9vw auto 0;
		justify-content: center;
	}

	.company__content--left {
		padding: 0;
		width: 100%;
		min-width: auto;
	}

	.company__content--left-lead {
		font-size: 16px;
		width: 51%;
		min-width: 235px;
		margin: auto;
	}

	.company__content--left-text {
		padding: 6vw var(--inner-padding-sp);
	}

	.company__content--left-h2 {
		font-size: 36px;
		letter-spacing: 0.04em;
		line-height: 1.4;
	}

	.company__content--left-h2span {
		font-size: 21px;
		letter-spacing: 0;
	}

	.company__content--left-lead {
		padding: 1.5vw 0;
	}

	.company__no1 {
		padding: 0 var(--inner-padding-sp);
		border: 0;
		flex-direction: column-reverse;
	}

	.company__no1-img {
		max-width: 215px;
	}

	.company__no1-p {
		font-size: 12px;
		margin: 4vw 0 3vw;
	}

	.company__no1-p--span {
		font-size: 11px;
	}
}

/* ----------------------- */
/* よくある質問 */

.faq__h2 {
	background: #000;
	font-size: 32px;
	color: #fff;
	font-weight: 700;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq__content {
	padding: 0 var(--inner-padding-pc);
	max-width: var(--inner-width);
	margin: 0 auto 4vw;
	font-size: 18px;
	line-height: 1.7;
	position: relative;
	container: faq / inline-size;
}

.faq__content__q {
	margin: 3vw auto 1vw 0;
}

.faq__content__q .q01 {
	width: fit-content;
}

.faq__content__a:has(.faq__content__a--img) {
	display: flex;
	justify-content: space-between;
}

.faq__content__a--img {
	width: 370px;
	height: fit-content;
	position: absolute;
	margin: 0 0 0 auto;
	padding-right: var(--inner-padding-pc);
	top: 9%;
	right: 0;
}

.faq__content__q--p {
	border-bottom: 1px solid var(--c-bg-gray-light2);
	padding: 0 2vw 1vw 0;
}

.faq__content__q--p,
.faq__content__a--p {
	position: relative;
	padding-left: 55px;
}

.faq__content__q--p::before,
.faq__content__a--p::before {
	content: "";
	position: absolute;
	top: -11px;
	left: 0;
	display: inline-block;
	height: 53px;
	width: 49px;
}

.faq__content__q--p::before {
	background: url(../img/faq-q.png) no-repeat;
	background-size: contain;
}

.faq__content__a--p::before {
	background: url(../img/faq-a.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: -11px;
}

.faq__content__a--p-span {
	font-size: 14px;
}

@container faq (max-width: 885px) {
	.faq__content__q {
		width: auto;
	}

	.faq__content__q .q01,
	.faq__content__a .a01 {
		width: 57%;
	}

	.faq__content__a--img {
		width: 315px;
	}
}

@media screen and (max-width: 767px) {
	.faq__h2 {
		font-size: 20px;
	}

	.faq__content {
		font-size: 14px;
		line-height: 1.3;
		padding: 0 var(--inner-padding-sp);
		margin: 0 auto 8vw;
	}

	.faq__content__a:has(.faq__content__a--img) {
		display: block;
	}

	.faq__content__q {
		padding: 0 0 3vw 0;
		margin: 5vw auto 0vw;
	}

	.faq__content__a--p-span {
		line-height: 2.3;
		font-size: 11px;
	}

	.q01::before {
		top: 0px;
	}

	.q02 {
		margin-bottom: 1vw;
	}

	.q02::before {
		top: -10px;
	}

	.faq__content__q .q01,
	.faq__content__a .a01 {
		width: 100%;
	}

	.faq__content__q--p,
	.faq__content__a--p {
		padding: 0 2vw 3vw 35px;
	}

	.faq__content__a--p::before {
		top: 3px;
	}

	.faq__content__q--p::before,
	.faq__content__a--p::before {
		height: 37px;
		width: 37px;
		left: 0;
	}

	.faq__content__a--img {
		display: block;
		width: 100%;
		min-width: auto;
		max-width: 500px;
		height: auto;
		margin: 2vw auto;
		position: initial;
		padding-right: 0;
	}

	.faq__content__a--img.pc {
		display: none;
	}
}

/* ----------------------- */
/* footer　 */

.footer {
	background: var(--c-bg-gray);
	padding: 5vw var(--inner-padding-pc) 1vw;
}

.footer__inner {
	max-width: var(--inner-width);
	margin: 0 auto 3vw;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.footer__company--p {
	font-size: 16px;
	color: #fff;
	margin: 2vw 0 0;
	line-height: 1.5;
}

.fax {
	/* Ios勝手に下線対処 */
	text-decoration: none;
	pointer-events: none;
}

@media (pointer: fine), (hover: hover) {
	a:where([href^="tel:"]) {
		pointer-events: none;
	}
}

.footer__copy {
	display: block;
	margin: 0 auto;
	max-width: 315px;
}

@media screen and (max-width: 767px) {
	.footer {
		padding: 7vw var(--inner-padding-sp) 4vw;
	}

	.footer__inner {
		position: relative;
		display: block;
		margin: 1vw auto 8vw;
	}

	.footer__company {
		width: fit-content;
		margin: 0 auto;
	}

	.footer__company--img {
		text-align: center;
		width: 100%;
	}
}
