@charset "UTF-8";
/*--------------------------------------------------
**************************************************
  デコレーション
**************************************************
--------------------------------------------------*/
div[class^="top_bg_decoration_"] {
	position: absolute;
	background-image: url(../imgs/common/pattern_02.svg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	mix-blend-mode: multiply;
}

div.top_bg_decoration_1 {
	top: 76px;
	left: 50%;
	transform: translateX(-50%);
	width: 444px;
	height: 446px;
}

div.top_bg_decoration_2 {
	top: 373px;
	right: -390px;
	width: 679px;
	height: 683px;
}

div.top_bg_decoration_3 {
	top: 592px;
	left: -350px;
	width: 457px;
	height: 459px;
	background-position: right;
}

div.top_bg_decoration_4 {
	top: 2144px;
	left: -450px;
	width: 905px;
	height: 909px;
	background-position: right;
}

div.top_bg_decoration_5 {
	top: 1650px;
	right: -150px;
	width: 498px;
	height: 498px;
}

div.top_bg_decoration_6 {
	top: 5778px;
	right: -210px;
	width: 700px;
	height: 704px;
}

/* SP */
@media (max-width: 767px) {
	div.top_bg_decoration_1 {
		display: none;
	}

	div.top_bg_decoration_2 {
		inset: auto;
		top: 160px;
		right: -170px;
		width: 295px;
		height: 296px;
	}

	div.top_bg_decoration_3 {
		inset: auto;
		left: 0;
		top: 60px;
		width: 179px;
		height: 181px;
		background-position: left;
	}

	div.top_bg_decoration_4 {
		inset: auto;
		left: -300px;
		top: 2260px;
		width: 375px;
		height: 377px;
		background-position: left;
	}

	div.top_bg_decoration_5 {
		top: 1660px;
		right: -60px;
		width: 211px;
		height: 211px;
	}

	div.top_bg_decoration_6 {
		display: none;
	}
}

/*--------------------------------------------------
**************************************************
  ファーストビュー
**************************************************
--------------------------------------------------*/
.first_view_box {
	position: relative;
}

.first_view {
	position: relative;
	z-index: 1;
	width: min(var(--content-sp-width-1), 1307px);
	margin-inline: auto;
	padding: 0 0 40px;
}

.first_view .shop_image {
	position: absolute;
	top: clamp(40px, 6vw, 83px);
	right: clamp(16px, 4vw, 30px);
	z-index: 1;
	width: clamp(280px, 46vw, 665px);
}

.first_view .shop_title_box {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: clamp(12px, 3.6vw, 47px); /* 47px→狭い時は詰める */
	min-width: 0; /* 文字の縮み/省略が効く */
	padding-top: 165px;
}

.first_view .shop_title_box .shop_logo {
	flex: 0 1 clamp(120px, 21.6vw, 282px); /* 282pxを上限に縮む */
	min-width: 0;
}

.first_view .shop_title_box .shop_logo img {
	display: block;
	width: 100%;
	height: auto;
}

.first_view .shop_title_box .shop_sub_name {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	font-family: "Inter", sans-serif;
	font-size: clamp(36px, 10vw, 137px);
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	color: #323232;
}

.first_view .shop_title_box .shop_sub_name::before {
	content: "OVER DRIVE\AYOUR PERFORMANCE";
	white-space: pre-line;
	position: absolute;
	top: 100%;
	left: 0;
	font-size: 1.3rem;
	line-height: 1.6;
}

.first_view .catch_box {
	position: relative;
	z-index: 2;
	margin-top: calc(clamp(56px, 5.5vw, 112px) + 2.0em);
	margin-left: clamp(0px, 3vw, 48px);
}

.first_view .catch_box .catch {
	font-size: clamp(22px, 2.4vw, 34px);
	font-weight: 600;
	color: var(--color-accent-3);
}

.first_view .catch_box .description {
	width: min(100%, 711px);
	margin-top: clamp(16px, 2vw, 24px);   /* ← キャッチとの距離（位置調整はここ） */
	margin-left: clamp(0px, 3vw, 48px);
	padding: clamp(16px, 2vw, 24px) 0;    /* 罫線内の上下余白 */
	border-top: 1px solid var(--color-accent-5);
	border-bottom: 1px solid var(--color-accent-5);
	font-size: 1.6rem;
	line-height: 1.7;
}

.first_view .link_1 {
	position: absolute;
	right: 100px;
	bottom: 80px;
	z-index: 2;
	padding-block: 13px;
}

/* PC（調整用） */
@media (max-width: 1220px) {
	.first_view .catch_box,
	.first_view .catch_box .description {
		margin-left: 0;
	}
}
@media (min-width: 768px) and (max-width: 1130px) {
	.first_view .link_1 {
		right: 0;
		bottom: 80px;
	}
}
@media (min-width: 768px) and (max-width: 1020px) {
	.first_view .link_1 {
		right: auto;
		left: 50%;
		bottom: -30px;
		transform: translateX(-50%);
	}
}

/* SP */
@media (max-width: 767px) {
	.first_view {
		padding: 0;
	}

	.first_view .shop_image {
		position: static;
		top: auto;
		right: auto;
		z-index: auto;
		width: 77%;
		margin: 30px 0 0 auto;
	}

	.first_view .shop_title_box {
		align-items: stretch;
		gap: 22px;
		margin-top: 27px;
		padding-top: 0;
	}

	.first_view .shop_title_box .shop_logo {
		width: 22%;
	}

	.first_view .shop_title_box .shop_sub_name {
		font-size: 4.7rem;
		line-height: .95;
		white-space: normal;
	}

	.first_view .shop_title_box .shop_sub_name::before {
		display: none;
	}

	.first_view .catch_box {
		margin-top: 17px;
	}

	.first_view .catch_box .catch {
		text-align: center;
		font-size: 2.0rem;
		line-height: 1.4;
		color: var(--color-accent-1);
	}

	.first_view .catch_box .description {
		margin-top: 26px;
		padding: 23px 0;
	}

	.first_view .link_1 {
		position: relative;
		right: auto;
		bottom: auto;
		left: 50%;
		transform: translateX(-50%);
		display: inline-block;
		margin-top: 46px;
	}
}


/*--------------------------------------------------
**************************************************
  スライダー
**************************************************
--------------------------------------------------*/
.promo_slider {
	width: min(100%, var(--content-pc-width-2));
	margin: 140px auto 0;
	border-radius: 16px;
}

.promo_slider img {
	border-radius: 16px;
}

.promo_slider .swiper-pagination {
	display: flex;
	justify-content: center;
	gap: 32px;
	margin-top: 32px;
	padding-bottom: 2px;
}

.promo_slider .swiper-pagination .swiper-pagination-bullet {
	cursor: pointer;
	display: block;
	width: 12px;
	height: 12px;
	background: #d9d9d9;
	border-radius: 50%;
}

.promo_slider .swiper-pagination .swiper-pagination-bullet-active {
	background: var(--color-light);
}

/* SP */
@media (max-width: 767px) {
	.promo_slider {
		margin-top: 86px;
		border-radius: 8px;
	}

	.promo_slider img {
		border-radius: 8px;
	}

	.promo_slider .swiper-pagination {
		margin-top: 24px;
	}

	.promo_slider .swiper-pagination .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}
}


/*--------------------------------------------------
**************************************************
  NEWS & TOPICS
**************************************************
--------------------------------------------------*/
.news_topics {
	display: flex;
	gap: 40px;
	width: min(100%, var(--content-pc-width-2));
	margin: 60px auto 0;
	padding: 32px 24px;
	border-top: var(--color-light) 1px solid;
	border-bottom: var(--color-light) 1px solid;
}

.news_topics > div:nth-of-type(1) {
	width: min(100%, 250px);
}

.news_topics h2 {
	font-family: "Inter", sans-serif;
	font-size: 3.0rem;
	font-weight: 800;
}

.news_topics .article_box {
	width: min(100%, 600px);
	padding-top: 15px;
}

.news_topics .article_box h3 {
	font-size: 1.4rem;
	font-weight: 700;
}

.news_topics .article_box article + h3 {
	margin-top: 15px;
}

.news_topics .article_box article ul {
	margin-top: 8px;
}

.news_topics .article_box article li {
	padding-right: 15px;
	background: url(../imgs/common/arrow_2.svg) no-repeat right center / 5px;
	border-bottom: #bfbfbf 1px solid;
}

.news_topics .article_box article li:last-child {
	border-bottom: none;
}

.news_topics .article_box article a {
	display: block;
	width: 100%;
	font-size: 1.4rem;
	color: var(--color-base);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news_topics .article_box article a:hover {
	color: var(--color-accent-5);
}

/* SP */
@media (max-width: 767px) {
	.news_topics {
		flex-direction: column;
		gap: 20px;
		margin-top: 40px;
		padding-inline: 5%;
	}

	.news_topics h2 {
		line-height: 1;
	}

	.news_topics .article_box {
		padding-top: 0;
	}

	.news_topics .article_box article + h3 {
		margin-top: 20px;
	}

	.news_topics .article_box article a {
		padding: 8px 0;
		line-height: 1.6;
		white-space: normal;
		overflow: visible;
		text-overflow: clip;
	}

	.news_topics .article_box .link_2 {
		display: inline-block;
		margin-top: 32px;
	}
}


/*--------------------------------------------------
**************************************************
  なぜ4plusのフィッティングなのか
**************************************************
--------------------------------------------------*/
.reason_box {
	position: relative;
	padding-top: 160px;
}

.reason {
	position: relative;
	z-index: 1;
	width: min(var(--content-sp-width-1), var(--content-pc-width-2));
	margin-inline: auto;
}

.reason h2 {
	text-align: center;
	font-size: clamp(42px, 5.5vw, 55px);
	font-weight: 700;
	line-height: 1;
}

.reason h3 {
	margin-top: 30px;
	text-align: center;
	font-size: clamp(30px, 3.9vw, 34px);
	font-weight: 600;
	line-height: 1;
	color: var(--color-accent-4);
}

.reason .reason_flex {
	display: flex;
	justify-content: space-between;
	gap: 50px;
	margin-top: 40px;
}

.reason .reason_column_list {
	counter-reset: reason_num 0;
}

.reason .reason_column_list > li {
	width: min(100%, 355px);
	padding: 16px;
	background: #FFFFFA;
	border: var(--color-accent-3) 1px solid;
	border-radius: 8px;
}

.reason .reason_column_list > li + li {
	margin-top: 16px;
}

.reason .reason_column_list > li h4 {
	position: relative;
	padding-left: 40px;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-accent-4);
}

.reason .reason_column_list > li h4::before {
	counter-increment: reason_num 1;
	content: counter(reason_num);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	background: var(--color-accent-3);
	border-radius: 50%;
	font-family: "Inter", sans-serif;
	font-size: 1.9rem;
	font-weight: 800;
	line-height: 1;
	color: #FFFFFA;
}

.reason .reason_column_list > li ul {
	margin-top: 8px;
}

.reason .reason_column_list > li ul li {
	padding: 8px 0;
	font-size: 1.3rem;
}

.reason .reason_column_list > li ul li + li {
	border-top: #dedede 2px dashed;
}

.reason .reason_image_02_03 {
	margin-top: 26px;
}

.reason .reason_image_03 {
	margin-top: -110px;
	text-align: right;
}

.reason .reason_catch {
	margin-top: 64px;
}

.reason .reason_catch_text {
	margin-bottom: 32px;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.7;
}

/* SP */
@media (max-width: 767px) {
	.reason_box {
		padding-top: 70px;
	}

	.reason h2 {
		font-size: 3.3rem;
		line-height: 1.3;
	}

	.reason h3 {
		margin-top: 12px;
		font-size: 2.0rem;
		line-height: 1.4;
	}

	.reason .reason_flex {
		flex-direction: column;
		justify-content: flex-start;
		gap: 40px;
		margin-top: 24px;
	}

	.reason .reason_image_02_03 {
		display: flex;
		gap: 16px;
		margin-top: 16px;
	}

	.reason .reason_image_02_03 > div {
		width: 50%;
	}

	.reason .reason_image_03 {
		margin-top: 0;
		text-align: left;
	}

	.reason .reason_image_02_03 img {
		object-fit: cover;
		height: 100%;
	}

	.reason .reason_catch {
		margin-top: 40px;
	}

	.reason .reason_catch_text {
		margin-bottom: 48px;
		text-align: left;
		font-size: 1.4rem;
		line-height: 1.9;
	}
}


/*--------------------------------------------------
**************************************************
  サービス案内
**************************************************
--------------------------------------------------*/
.service {
	margin-top: 160px;
	padding-bottom: 160px;
}

.service h2.en {
	text-align: center;
	font-family: "Inter", sans-serif;
	font-size: 9.0rem;
	font-weight: 800;
	line-height: 1;
}

.service h2.ja {
	margin-top: 24px;
	text-align: center;
	font-size: 3.4rem;
	font-weight: 600;
	line-height: 1;
}

.service > .description {
	margin-top: 32px;
	font-size: 1.6rem;
	line-height: 1.7;
}

.service .service_item {
	position: relative;
	width: min(100%, 800px);
	margin: 40px auto;
	padding-top: 90px;
}

.service .service_item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 3px;
	height: 46px;
	background: var(--color-accent-5);
}

.service .service_item h3 {
	text-align: center;
	font-family: "Inter", sans-serif;
	font-size: 4.7rem;
	font-weight: 800;
	line-height: 1;
}

.service .service_item ul {
	margin-top: 32px;
}

.service .service_item ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	padding: 24px;
	border-bottom: var(--color-light) 1px solid;
}

.service .service_item ul li:first-child {
	border-top: var(--color-light) 1px solid;
}

.service .service_item ul li > div:nth-of-type(1) {
	width: min(100%, 540px);
}

.service .service_item ul li > div:nth-of-type(1) h4 {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.6;
}

.service .service_item ul li > div:nth-of-type(1) h4 span {
	margin-left: 1em;
	font-size: 1.2rem;
	font-weight: 400;
}

.service .service_item ul li > div:nth-of-type(1) p {
	font-size: 1.4rem;
	line-height: 1.8;
}

.service .service_item ul li > div:nth-of-type(2) {
	width: min(100%, 180px);
}

.service .service_item ul li > div:nth-of-type(2) .link_1 {
	white-space: nowrap;
}

/* SP */
@media (max-width: 767px) {
	.service {
		margin-top: 70px;
		padding-bottom: 70px;
	}

	.service h2.en {
		font-size: 4.0rem;
	}

	.service > .description {
		font-size: 1.4rem;
		line-height: 1.9;
	}

	.service .service_item h3 {
		font-size: 3.6rem;
	}

	.service .service_item ul li {
		flex-direction: column;
		justify-content: flex-start;
		padding-inline: 0;
	}

	.service .service_item ul li > div:nth-of-type(1) h4 {
		text-align: center;
		font-size: 1.8rem;
	}

	.service .service_item ul li > div:nth-of-type(1) h4 span {
		display: block;
		margin: 0;
	}

	.service .service_item ul li > div:nth-of-type(1) p {
		text-align: center;
	}
}


/*--------------------------------------------------
**************************************************
  お客様の声
**************************************************
--------------------------------------------------*/
.voice_box {
	padding: 66px 0 94px;
	background: #f0f0f0;
	border-top: var(--color-accent-5) 1px solid;
	border-bottom: var(--color-accent-5) 1px solid;
}

.voice .heading_box {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 45px;
	color: var(--color-accent-1);
}

.voice .heading_box h2 {
	font-size: 3.4rem;
	font-weight: 600;
	white-space: nowrap;
}

.voice .heading_box p {
	font-size: 1.5rem;
	font-weight: 500;
}

/* SP */
@media (max-width: 767px) {
	.voice_box {
		padding: 57px 0 75px;
	}

	.voice .heading_box {
		flex-direction: column;
		gap: 8px;
	}

	.voice .heading_box h2 {
		line-height: 1.4;
	}

	.voice .heading_box p {
		text-align: center;
		line-height: 1.6;
	}
}


/*--------------------------------------------------
**************************************************
  TEAM 4plus
**************************************************
--------------------------------------------------*/
.team_box {
	position: relative;
	margin-top: 160px;
}

.team {
	position: relative;
	z-index: 1;
	width: min(var(--content-sp-width-1), 740px);
	margin-inline: auto;
}

.team h2 {
	text-align: center;
	font-family: "Inter", sans-serif;
	font-size: 6.2rem;
	font-weight: 800;
	line-height: 1;
}

.team .description {
	margin-top: 50px;
	font-size: 1.6rem;
	line-height: 1.7;
	color: var(--color-accent-1);
}

.team .staff {
	margin-top: 6px;
}

.team .staff > li {
	display: flex;
	align-items: center;
	gap: 35px;
	padding: 50px 0;
	border-bottom: var(--color-accent-5) 1px solid;
}

.team .staff .image_box {
	width: 130px;
}

.team .staff .name_position {
	display: flex;
	align-items: flex-end;
	gap: 16px;
}

.team .staff .name_position .name {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1;
}

.team .staff .name_position .position {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
}

.team .staff .introduce {
	margin-top: 5px;
	font-size: 1.4rem;
}

/* SP */
@media (max-width: 767px) {
	.team_box {
		margin-top: 90px;
	}

	.team h2 {
		font-size: 4.0rem;
	}

	.team .description {
		margin-top: 40px;
	}

	.team .staff {
		margin-top: 25px;
	}

	.team .staff > li {
		flex-direction: column;
		gap: 16px;
		padding: 48px 0 40px;
	}

	.team .staff .image_box {
		width: 35%;
	}

	.team .staff .name_position .name {
		font-size: 1.8rem;
	}
}

/*--------------------------------------------------
**************************************************
  豊富な取扱メーカー・試打クラブ
**************************************************
--------------------------------------------------*/
.brand_showcase {
	margin-top: 160px;
}

.brand_showcase h2 {
	font-size: 3.4rem;
	font-weight: 600;
	line-height: 1.4;
}

.brand_showcase > .description {
	margin-top: 32px;
	font-size: 1.6rem;
	line-height: 1.7;
}

.brand_showcase .image_box {
	display: flex;
	gap: 32px;
	margin-top: 48px;
}

.brand_showcase .manufacturer_list {
	display: flex;
	flex-wrap: wrap;
	gap: 32px 8px;
	margin-top: 64px;
}

.brand_showcase .manufacturer_list li {
	width: 180px;
}

/* SP */
@media (max-width: 767px) {
	.brand_showcase {
		margin-top: 94px;
	}

	.brand_showcase h2 {
		text-align: center;
		font-size: 3.3rem;
	}

	.brand_showcase .image_box {
		flex-direction: column;
		gap: 16px;
	}

	.brand_showcase .image_box .showcase_shaft_02 {
		width: 65%;
	}

	.brand_showcase .manufacturer_list {
		gap: 16px 4px;
		margin-top: 31px;
	}

	.brand_showcase .manufacturer_list li {
		width: calc((100% / 4) - 4px);
	}
}


/*--------------------------------------------------
**************************************************
  FAQ よくあるご質問
**************************************************
--------------------------------------------------*/
.faq_box {
	margin-top: 160px;
	padding: 80px 0;
	background: #FFFFFA;
	border-top: var(--color-accent-5) 1px solid;
	border-bottom: var(--color-accent-5) 1px solid;
}

.faq {
	display: flex;
	gap: 60px;
	width: min(var(--content-sp-width-1), var(--content-pc-width-2));
	margin-inline: auto;
}

.faq .heading_box {
	width: min(100%, 255px);
}

.faq .heading_box h2.en {
	font-family: "Inter", sans-serif;
	font-size: 6.2rem;
	font-weight: 800;
	line-height: 1;
}

.faq .heading_box h2.ja {
	margin-top: 16px;
	font-size: 3.4rem;
	font-weight: 600;
	line-height: 1.4;
}

.faq .list_box {
	width: min(100%, 640px);
}

.faq .faq_list {
	width: 100%;
}

.faq .faq_list > li {
	padding: 24px 0;
	border-bottom: #000 1px solid;
}

.faq .faq_list > li:first-child {
	padding-top: 0;
}

.faq .faq_list .question {
	cursor: pointer;
	position: relative;
	padding-inline: 50px;
	font-size: 1.4rem;
	line-height: 1.88;
}

.faq .faq_list .question::before {
	content: "Q";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	font-family: "Inter", sans-serif;
	font-size: 3.2rem;
	font-weight: 800;
	line-height: 1;
	color: var(--color-accent-5);
}

.faq .faq_list .question .flag_accordion {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	display: inline-block;
	width: 36px;
	height: 36px;
	border: var(--color-accent-5) 1px solid;
	border-radius: 50%;
}

.faq .faq_list .question .flag_accordion::before,
.faq .faq_list .question .flag_accordion::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	background: var(--color-accent-5);
	transition: all 0.3s ease;
}

.faq .faq_list .question .flag_accordion::before {
	width: 11px;
	height: 1px;
}

.faq .faq_list .question .flag_accordion::after {
	width: 1px;
	height: 11px;
}

.faq .faq_list .question.open .flag_accordion::before,
.faq .faq_list .question.open .flag_accordion::after {
	transform: translate(-50%, -50%) rotate(45deg);
	transition: all 0.3s ease;
}

.faq .faq_list .answer {
	padding-top: 24px;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.88;
	color: var(--color-accent-1);
}

/* SP */
@media (max-width: 767px) {
	.faq_box {
		margin-top: 90px;
		padding: 50px 0;
	}

	.faq {
		flex-direction: column;
		gap: 40px;
	}

	.faq .heading_box {
		width: 100%;
		text-align: center;
	}

	.faq .heading_box h2.en {
		font-size: 4.0rem;
	}

	.faq .faq_list .question {
		padding-left: 35px;
	}
}


/*--------------------------------------------------
**************************************************
  PHOTO GALLERY
**************************************************
--------------------------------------------------*/
.photo_gallery {
	margin-top: 160px;
}

.photo_gallery h2.en {
	text-align: center;
	font-family: "Inter", sans-serif;
	font-size: 4.5rem;
	font-weight: 800;
	line-height: 1;
}

/* SP */
@media (max-width: 767px) {
	.photo_gallery {
		margin-top: 110px;
	}
}


/*--------------------------------------------------
**************************************************
  ACCESS & CONTACT
**************************************************
--------------------------------------------------*/
.access_contact {
	margin-top: 120px;
	padding-top: 120px;
	border-top: var(--color-light) 1px solid;
}

.access_contact h2.en {
	text-align: center;
	font-family: "Inter", sans-serif;
	font-size: 4.5rem;
	font-weight: 800;
	line-height: 1;
}

.access_contact h2.ja {
	margin-top: 24px;
	text-align: center;
	font-size: 3.4rem;
	font-weight: 600;
	line-height: 1.4;
}

.access_contact .shop_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: 48px;
}

.access_contact .shop_list > li {
	width: min(100%, 545px);
	/* width: min(100%, 520px); */
	padding: 16px 24px;
	background: #FFFFFA;
	border: #DEDEDE 1px solid;
	border-radius: 8px;
}

.access_contact .shop_list .shop_name {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.6;
	color: var(--color-accent-3);
}

.access_contact .shop_list .shop_address {
	margin-top: 5px;
	font-size: 1.4rem;
	line-height: 1.88;
	color: var(--color-accent-1);
}

.access_contact .shop_list .shop_access_notice {
	font-size: 1.2rem;
	line-height: 1.6;
}

.access_contact .shop_list .gmap {
	aspect-ratio: 497 / 290;
	width: 100%;
	margin-top: 16px;
}

.access_contact .shop_list .gmap iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.access_contact .shop_list .contact_list {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 24px;
}

/* SP */
@media (max-width: 767px) {
	.access_contact {
		margin-top: 70px;
		padding-top: 70px;
	}

	.access_contact h2.ja {
		font-size: 3.0rem;
	}

	.access_contact .shop_list .gmap {
		aspect-ratio: 296 / 172;
	}

	.access_contact .shop_list .contact_list {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
		margin-top: 24px;
	}
}
