/* ============================
reset css
============================ */
*,
::before,
::after {
	border-style: solid;
	border-width: 0;
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
	line-height: 1.15;
}

body {
	margin: 0;
}

main {
	display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
	margin: 0;
}


ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

dt {
	font-weight: bold;
}

dd {
	margin-left: 0;
}

hr {
	border-top-width: 1px;
	box-sizing: content-box;
	clear: both;
	color: inherit;
	height: 0;
	margin: 0;
	overflow: visible;
}


pre {
	font-family: monospace, monospace;
	font-size: inherit;
}

address {
	font-style: inherit;
}

a {
	background-color: transparent;
	color: inherit;
	text-decoration: none;
}

abbr[title] {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: inherit;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
	vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border-radius: 0;
	color: inherit;
	font: inherit;
	margin: 0;
	padding: 0;
	text-align: inherit;
	text-transform: inherit;
	vertical-align: middle;
}

button,
[type=button],
[type=reset],
[type=submit] {
	cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
	cursor: default;
}

option {
	padding: 0;
}

fieldset {
	margin: 0;
	min-width: 0;
	padding: 0;
}

legend {
	padding: 0;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto;
}

[type=search] {
	outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}


::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

[type=number] {
	-moz-appearance: textfield;
}

label[for] {
	cursor: pointer;
}

details {
	display: block;
}

summary {
	display: list-item;
}

[contenteditable]:focus {
	outline: auto;
}

table {
	border-collapse: collapse;
	border-color: inherit;
}

caption {
	text-align: left;
}

td,
th {
	padding: 0;
	vertical-align: top;
}

th {
	font-weight: bold;
	text-align: left;
}

/* ============================
基本設定
============================ */

body {
	color: #333;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	line-height: 1.5;
}

img {
	width: 100%;
}

a {
	transition: opacity .3s;
}

a:hover {
	opacity: 0.7;
}


/* ============================
utility
============================ */
.u-bg--orange {
	background-color: #DEB252;
}

.u-bg--purple {
	background-color: #501977;
}

.u-bg--green {
	background-color: #557947;
}

.u-bg--indigo {
	background-color: #22324a;
}

.u-bg--cream {
	background-color: #F7F3E9;
}

.u-bg--orangelight {
	background-color: rgba(222, 178, 82, 0.4);
}

.u-bg--purplelight {
	background-color: rgba(80, 25, 119, 0.2);
}

.u-bg--greenlight {
	background-color: rgba(85, 121, 71, 0.3);
}

.u-bg--indigolight {
	background-color: rgba(34, 50, 74, 0.3);
}

.u-font--white {
	color: #fff;
}

@media screen and (min-width:768px) {
	.u-hidden-pc {
		display: none;
	}
}

@media screen and (max-width:767px) {
	.u-hidden-sp {
		display: none;
	}
}


/* ============================
layout
============================ */
.l-main__inner {
	width: 1000px;
}

.l-header {
	max-height: 150px;
	background-color: #fff;
	border-bottom: 1px solid #501977;
}

.l-header__inner {
	display: flex;
	background-color: #fff;
}

.l-header__logo {
	width: 20%;
	padding: 2.375rem 1rem;
	background-color: #501977;
}

.l-header__logo-link {
	display: block;
}

.l-header__logo-img {
	display: block;
	width: clamp(5rem, 4.219rem + 3.91vw, 8.125rem);
	margin: 0 auto;
}

.l-header__nav {
	display: block;
}

.l-header-nav__link {
	padding-top: 50%;
	padding-bottom: 2.375rem;
}

.l-header-nav__link-rabit {
	position: relative;
}

.l-header-nav__link-rabit::before {
	position: absolute;
	content: "";
	width: 39px;
	height: 57px;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
	background: url("../img/illust01.png") no-repeat center left/cover;
}

.l-header-nav__link-rabit:hover::before {
	top: clamp(4%, calc(4/768*100vw), 10%);
	transition: 0.5s;
	opacity: 1;
	visibility: visible;
}

.l-header__box {
	width: 20%;
}

.l-footer__nav__list {
	margin-left: 20%;
}

.l-footer__nav__list li:first-child {
	border-left: 1px solid #501977;
}

.l-footer-nav__link {
	padding: 3.125rem 0 0.9375rem;
}

.l-footer__bg {
	padding-top: 1.25rem;
	background-color: #501977;
}

.l-footer__bg-img {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

/* SP */
@media screen and (max-width:767px) {
	.l-header {
		position: fixed;
		width: 100%;
		height: 75px;
		z-index: 999;
	}

	.l-header__inner {
		height: 100%;
		background-color: #501977;
	}

	.l-header__logo {
		width: 30%;
		padding: 0;
	}

	.l-header__logo-link {
		height: 100%;
	}

	.l-header__logo-img {
		height: 100%;
		object-fit: contain;
	}

	.l-header__nav {
		display: none;
	}

	.l-footer__nav__list {
		margin-left: 0;
	}
}


/* ============================
component
============================ */
.c-section {
	max-width: 1600px;
	margin: auto;
}

.c-button__link {
	display: block;
	max-width: 350px;
	margin: 0 auto;
	padding: 1.25rem 0;
	text-align: center;
	font-size: min(20px, calc(20/1000*100vw));
	color: #fff;
}

.c-section__items {
	display: flex;
	overflow: clip;
}

.c-section__index {
	position: relative;
	display: none;
	width: 20%;
}

.c-section__index-border01 {
	position: absolute;
	width: 9px;
	height: 100%;
	top: 0;
	left: 30%;
	background-color: #DEB252;
}

.c-section__index-border02 {
	position: absolute;
	width: 9px;
	height: 100%;
	top: 0;
	left: 30%;
	background-color: #501977;
}

.c-section__index-border03 {
	position: absolute;
	width: 9px;
	height: 100%;
	top: 0;
	left: 30%;
	background-color: #557947;
}

.c-section__index-border04 {
	position: absolute;
	width: 9px;
	height: 100%;
	top: 0;
	left: 30%;
	background-color: #22324a;
}

.c-section__index-border--light {
	background-color: #F7F3E9;
}

.c-section__index-text {
	position: sticky;
	width: 335px;
	margin-top: 55px;
	padding-left: 1.5625rem;
	top: 0;
	right: -110px;
	font-size: 19px;
	color: #557947;
	transform: rotate(90deg) translateX(50%);
}

#brandlist_section01 .c-section__index-text {
	color: #DEB252;
}

#brandlist_section02 .c-section__index-text {
	color: #501977;
}

#brandlist_section03 .c-section__index-text {
	color: #557947;
}

#brandlist_section04 .c-section__index-text {
	color: #22324a;
}

.c-section__index-text::before {
	position: absolute;
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	top: 5px;
	left: 0;
	border: 2px solid #557947;
	transform: rotate(46deg);
}

#brandlist_section01 .c-section__index-text::before {
	border: 2px solid #DEB252;
	background: #DEB252;
}

#brandlist_section02 .c-section__index-text::before {
	border: 2px solid #501977;
	background: #501977;
}

#brandlist_section03 .c-section__index-text::before {
	border: 2px solid #557947;
	background: #557947;
}

#brandlist_section04 .c-section__index-text::before {
	border: 2px solid #22324a;
	background: #22324a;
}

.c-section__content {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 3.75rem 1.25rem;
}

.c-section__title {
	margin-bottom: 2.5rem;
}

.c-section__title-text {
	text-align: center;
	font-size: clamp(42px, calc(42/1050*100vw), 56px);
	font-weight: bold;
	color: #501977;
}

.c-section__title-text.c-section__title-text--noto {
	font-family: 'Noto Sans', sans-serif;
}

.c-section__content-text {
	margin-bottom: 2.5rem;
	font-size: min(20px, calc(20/1000*100vw));
}

.c-section__content-text p {
	text-align: center;
	line-height: 1.75;
	letter-spacing: 0em;
	font-size: min(20px, calc(20/1000*100vw));
	font-weight: 400;
}

.c-section__img img {
	width: 100%;
	height: 100%;
}

.c-sub__mv {
	width: 100%;
}

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

@media screen and (min-width: 1025px) {
	.c-section__index {
		display: block;
	}

	.c-section__content {
		padding: 3.75rem 0;
	}
}

/* SP */
@media screen and (max-width:767px) {
	.c-button__link {
		font-size: clamp(16px, calc(16/320*100vw), 20px);
	}

	.c-section__content {
		padding: 40px 20px;
	}

	.c-section__title-text {
		font-size: clamp(22px, calc(22/320*100vw), 40px);
	}

	.c-section__content-text {
		font-size: 16px;
	}

	.c-section__content-text p {
		font-size: clamp(16px, calc(16/320*100vw), 20px);
		text-align: left;
	}

	.c-sub__mv {
		height: 25vh;
		padding-top: 75px;
	}
}


/* ============================
drawer
============================ */
.drawer_icon {
	display: none;
}

.drawer_icon:hover {
	cursor: pointer;
}

.drawer_icon.is_active {
	z-index: 1001;
}

.drawer_icon.is_active .drawer_icon__bar1 {
	top: 8px;
	transform: rotate(-45deg);
	background: #501977;
}

.drawer_icon.is_active .drawer_icon__bar2 {
	display: none;
}

.drawer_icon.is_active .drawer_icon__bar3 {
	top: 8px;
	transform: rotate(45deg);
	background: #501977;
}

.drawer_icon__bars {
	position: relative;
	display: block;
	width: 26px;
	height: 20px;
}

.drawer_icon__bar1,
.drawer_icon__bar2,
.drawer_icon__bar3 {
	position: absolute;
	width: 26px;
	height: 4px;
	top: 0;
	left: 0;
	background: #fff;
	border-radius: 2px;
}

.drawer_icon__bar1 {
	top: 0px;
}

.drawer_icon__bar2 {
	top: 8px;
}

.drawer_icon__bar3 {
	top: 16px;
}

.drawer_content {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 250px;
	height: 100vh;
	padding: 30% 0;
	top: 0;
	right: 0;
	transform: translateX(105%);
	transition: transform 0.5s ease 0s;
	background: #fff;
	z-index: 1000;
}

.drawer_content.is_active {
	transform: translateX(0);
}

.drawer_content__item {
	padding: 15px 0;
	text-align: center;
}

.drawer_content__item a {
	display: block;
	line-height: 1.2222222222;
	font-size: 18px;
	color: #501977;
}

.drawer_content__item.disable a {
	opacity: 0.25;
}

.drawer_background {
	position: fixed;
	display: none;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background: rgba(62, 62, 62, 0.8);
	z-index: 298;
}

.drawer_background.is_active {
	display: block;
}

/* SP */
@media screen and (max-width:767px) {
	.drawer_icon {
		display: block;
		position: fixed;
		right: 20px;
		top: 27px;
		transition: transform 0.5s ease 0s;
		z-index: 1000;
	}
}


/*============================
page top
============================ */
.page_top {
	position: fixed;
	display: block;
	width: 100px;
	height: 100px;
	right: 60px;
	bottom: 40px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s, visibility 0.5s;
	z-index: 100;
}

.page_top img {
	transition: opacity 0.3s;
}

.page_top img:hover {
	opacity: 0.8;
}

.page_top.is-visible {
	opacity: 1;
	visibility: visible;
}

/* SP */
@media screen and (max-width:767px) {
	.page_top {
		right: 20px;
		bottom: 20px;
		width: 80px;
		height: 80px;
	}
}


/* ============================
project
============================ */
.p-global-nav {
	width: 1000px;
}

.p-global-nav__list {
	display: flex;
	height: 100%;
	align-items: flex-end;
}

.p-global-nav__listfooter {
	margin-right: 20%;
}

.p-global-nav__item {
	display: flex;
	justify-content: space-around;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	border-right: 1px solid #501977;
}

.p-global-nav__link {
	display: block;
	width: 100%;
	text-align: center;
	font-size: clamp(16px, calc(16/768*100vw), 20px);
	color: #501977;
}

.p-global-nav__link.disable {
	pointer-events: none;
	opacity: 0.25;
}

.p-swiper {
	position: relative;
}

.swiper-button-next {
	position: absolute;
	display: block;
	width: 70px;
	height: 70px;
	top: initial;
	bottom: -20px;
	right: 30px;
	border-radius: 100%;
	background-color: #501977;
}

.swiper-button-next::after {
	position: absolute;
	display: grid;
	content: "NEXT";
	place-content: center;
	width: 90px;
	height: 90px;
	border-radius: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: clamp(0.875rem, 0.733rem + 0.61vw, 1.188rem);
	color: #fff;
	background-color: transparent;
	border: 2px solid #501977;
}

.swiper-pagination {
	width: initial;
	bottom: -56px;
	right: 40px;
	left: initial;
	font-size: clamp(0.875rem, 0.705rem + 0.73vw, 1.25rem);
	font-weight: bold;
	color: #501977;
}

/* SP */
@media screen and (max-width: 767px) {
	.p-global-nav__listfooter {
		margin-right: 0;
	}

	.swiper-button-next {
		width: 50px;
		height: 50px;
	}

	.swiper-button-next::after {
		width: 70px;
		height: 70px;
	}

	.swiper-pagination {
		right: 32px;
	}
}


/* ============================
トップページ／BRAND LIST
============================ */
.p-brandlist__content {
	padding-bottom: 0;
}

.p-brandlist--03 .p-brandlist__content {
	padding-bottom: 3.75rem;
}

.p-brandlist__company {
	display: none;
}

.p-brandlist__gallery {
	display: grid;
	gap: 50px;
	padding: 30px;
}

.p-brandlist--01 .p-brandlist__gallery {
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr;
}

.p-brandlist--02 .p-brandlist__gallery {
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr;
}

.p-brandlist--03 .p-brandlist__gallery {
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr;
}

.p-brandlist__item {
	width: 100%;
	height: 100%;
}

.p-brandlist__item a {
	width: 100%;
	height: 100%;
}

.p-brandlist__item__logo {
	position: relative;
	display: flex;
	justify-content: center;
	aspect-ratio: 1/1;
	align-items: center;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.p-brandlist__item__logo::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.p-brandlist__item__logo:hover::before {
	opacity: 1;
}

.p-brandlist__item p {
	min-height: 2.5em;
	line-height: calc(38/22);
	font-size: clamp(16px, calc(16/768*100vw), 22px);
}

.p-brandlist__item__logo img {
	width: 50%;
	height: 50%;
	object-fit: contain;
	z-index: 1;
}

.p-brandlist__item:hover.p-brandlist__item .p-brandlist__item__logo {
	opacity: 1;
}

.p-brandlist__item--01 .p-brandlist__item__logo::before {
	background: url(../img/gallery01.jpg) no-repeat center center / cover;
}

.p-brandlist__item--02 .p-brandlist__item__logo::before {
	background: url(../img/gallery02.jpg) no-repeat center center / cover;
}

.p-brandlist__item--03 .p-brandlist__item__logo::before {
	background: url(../img/gallery03.jpg) no-repeat center center / cover;
}

.p-brandlist__item--04 .p-brandlist__item__logo::before {
	background: url(../img/gallery04.jpg) no-repeat center center / cover;
}

.p-brandlist__item--05 .p-brandlist__item__logo::before {
	background: url(../img/gallery05.jpg) no-repeat center center / cover;
}

.p-brandlist__item--06 .p-brandlist__item__logo::before {
	background: url(../img/gallery06.jpg) no-repeat center center / cover;
}

.p-brandlist__item--07 .p-brandlist__item__logo::before {
	background: url(../img/gallery07.jpg) no-repeat center center / cover;
}

.p-brandlist__item--08 .p-brandlist__item__logo::before {
	background: url(../img/gallery08.jpg) no-repeat center center / cover;
}

.p-brandlist__item--09 .p-brandlist__item__logo::before {
	background: url(../img/gallery09.jpg) no-repeat center center / cover;
}

.p-brandlist__item--10 .p-brandlist__item__logo::before {
	background: url(../img/gallery10.jpg) no-repeat center center / cover;
}

.p-brandlist__item--11 .p-brandlist__item__logo::before {
	background: url(../img/gallery11.jpg) no-repeat center center / cover;
}

.p-brandlist__item--12 .p-brandlist__item__logo::before {
	background: url(../img/gallery12.jpg) no-repeat center center / cover;
}

.p-brandlist__item--13 .p-brandlist__item__logo::before {
	background: url(../img/gallery13.jpg) no-repeat center center / cover;
}

.p-brandlist__item--14 .p-brandlist__item__logo::before {
	background: url(../img/gallery14.jpg) no-repeat center center / cover;
}

.p-brandlist__item--16 .p-brandlist__item__logo::before {
	background: url(../img/gallery16.jpg) no-repeat center center / cover;
}

.p-brandlist__item--17 .p-brandlist__item__logo::before {
	background: url(../img/gallery17.jpg) no-repeat center center / cover;
}

.p-brandlist__item--18 .p-brandlist__item__logo::before {
	background: url(../img/gallery18.jpg) no-repeat center center / cover;
}

.p-brandlist__item--19 .p-brandlist__item__logo::before {
	background: url(../img/gallery19.jpg) no-repeat center center / cover;
}

/* 1024px以下 */
@media screen and (max-width: 1024px) {
	.p-brandlist__company {
		position: relative;
		display: flex;
		align-items: center;
		padding-left: 1.5625rem;
		padding-bottom: 20px;
		font-size: 18px;
		color: #557947;
	}

	.p-brandlist__company::before {
		position: absolute;
		content: "";
		display: block;
		width: 15px;
		height: 15px;
		left: 0;
		border: 2px solid #557947;
		transform: rotate(46deg);
	}
}

/* SP */
@media screen and (max-width:767px) {
	.p-swiper {
		padding-top: 75px;
	}

	.p-brandlist--03 .p-brandlist__content {
		padding-bottom: 0;
	}

	.p-brandlist__gallery {
		gap: 15px;
		padding: 0 10px;
	}

	.p-brandlist--01 .p-brandlist__gallery {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr 1fr 1fr;
	}

	.p-brandlist--02 .p-brandlist__gallery {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
	}

	.p-brandlist--03 .p-brandlist__gallery {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr;
		padding-bottom: 30px;
	}

	.p-brandlist__item__logo::before {
		opacity: 1;
	}

	.p-brandlist__item p {
		line-height: 1.5;
		font-size: clamp(14px, calc(14/320*100vw), 22px);
	}
}


/* ============================
トップページ／COMPANY
============================ */
.p-company__title h2 {
	color: #333;
}

.p-company__list:nth-child(1) {
	margin-bottom: 2.5rem;
}

.p-company__item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 0.9375rem;
}

.p-company__item dt {
	width: 20%;
	max-width: 100px;
	-moz-text-align-last: justify;
	font-weight: normal;
	text-align: justify;
	text-align-last: justify;
}

.p-company__item dd {
	position: relative;
	flex: 1;
	padding-left: 1.125rem;
}

.p-company__item dd::before {
	position: absolute;
	content: ":";
	left: 8px;
}

/* SP */
@media screen and (max-width:767px) {
	.p-company__item dt {
		width: 25%;
	}
}


/* ============================
Brandlistページ
============================ */
.p-brandlist-page {
	padding: 80px 0;
}

.p-brandlist-page__title h2 {
	text-align: center;
}

.p-brandlist-page .c-section__index-text.scroll {
	position: absolute;
	top: auto;
	bottom: 0;
	transform: rotate(90deg) translateX(-50%);
}

#brandlist_section01 .p-brandlist-page__item:not(:first-child),
#brandlist_section02 .p-brandlist-page__item:not(:first-child),
#brandlist_section03 .p-brandlist-page__item:not(:first-child),
#brandlist_section04 .p-brandlist-page__item:not(:first-child) {
	margin-top: 45px;
}

.p-brandlist-page__item__inner {
	display: flex;
	justify-content: space-between;
}

.p-brandlist-page__item-img img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.p-brandlist-page__item-content {
	padding: 35px;
	font-weight: 500;
}

.p-brandlist-page__item-title {
	margin-bottom: 0.625rem;
	font-size: 25px;
}

.p-brandlist-page__item-info__list li {
	font-size: 13px;
}

.p-brandlist-page__item-info__list li:not(:first-child) {
	margin-top: 20px;
}

.p-brandlist-page__item-produce {
	margin-top: 15px;
	color: #DEB252;
}

.p-brandlist-page__item-produce--margin-bottom {
	margin-bottom: 35px;
}

.p-brandlist-page__item-produce.p-brandlist-page__item-produce--purple {
	color: #501977;
}

.p-brandlist-page__item-produce.p-brandlist-page__item-produce--green {
	color: #557947;
}

.p-brandlist-page__item-produce.p-brandlist-page__item-produce--indigo {
	color: #22324a;
}

.p-brandlist-page__item-shop {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 35px;
	box-sizing: border-box;
}

.p-brandlist-page__item-shop-title {
	width: 5.625rem;
	margin: 0 auto 1.25rem;
}

.p-brandlist-page__item-shop-title.half {
	width: 60%;
}

.p-brandlist-page__item-shop-button {
	margin-top: auto;
}

.p-brandlist-page__item-shop-button a {
	display: block;
	padding: 0.625rem 1.5625rem;
	font-size: min(20px, calc(20/1000*100vw));
	font-weight: bold;
	text-align: center;
}

/* SP */
@media screen and (max-width:767px) {
	.p-global-nav__link {
		font-size: clamp(12px, calc(12/320*100vw), 16px);
	}

	.p-brandlist-page {
		padding: 0;
	}

	.p-brandlist-page:first-of-type {
		padding-top: 40px;
	}

	#brandlist_section01 .p-brandlist-page__item:not(:first-child),
	#brandlist_section02 .p-brandlist-page__item:not(:first-child),
	#brandlist_section03 .p-brandlist-page__item:not(:first-child) {
		margin-top: clamp(20px, calc(20/320*100vw), 45px);
	}

	.p-brandlist-page__item__inner {
		flex-direction: column;
		align-items: center;
	}

	.p-brandlist-page__item-img {
		padding: 0;
	}

	.p-brandlist-page__item-content {
		padding: 20px 15px;
	}

	.p-brandlist-page__item-title {
		font-size: clamp(20px, calc(20/320*100vw), 25px)
	}

	.p-brandlist-page__item-shop-title {
		width: 80%;
	}

	.p-brandlist-page__item-produce {
		margin-top: 20px;
	}

	.p-brandlist-page__item-shop {
		width: 55%;
		padding: 20px 15px;
	}

	.p-brandlist-page__item-shop-button a {
		font-size: clamp(16px, calc(16/320*100vw), 20px);
	}
}


/* ============================
Companyページ
============================ */
.p-company-page__anchor-link {
	display: flex;
	align-items: center;
	height: 80px;
	background: rgba(80, 25, 119, 0.2);
}

.p-company-page__anchor-link ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	max-width: 1000px;
	margin: auto;
}

.p-company-page__anchor-link li a {
	position: relative;
	display: block;
	margin-left: 66px;
	font-size: 20px;
	font-weight: bold;
	color: #501977;
}

.p-company-page__anchor-link li a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #501977;
	bottom: -1px;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.3s;
}

.p-company-page__anchor-link li a:hover {
	opacity: 1;
}

.p-company-page__anchor-link li a:hover::after {
	opacity: 1;
	transform: scale(1, 1);
}

.p-company-page__content+.p-company-page__content {
	margin-top: 95px;
}

.p-company-page__content p {
	line-height: 1.2;
	text-align: left;
}

.p-company-page__content p+p {
	margin-top: 25px;
}

.p-company-page__content p:last-child {
	text-align: right;
}

.p-company-page__list__container {
	margin-top: 80px;
}

.p-company-page__list:nth-child(1) {
	margin-bottom: 2.5rem;
}

.p-company-page__list__item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 0.9375rem;
}

.p-company-page__list__item dt {
	width: 25%;
	font-weight: normal;
}

.p-company-page__list__item dd {
	flex: 1;
}

/* SP */
@media screen and (max-width:767px) {
	.p-company-page__anchor-link {
		height: 60px;
	}

	.p-company-page__anchor-link ul {
		justify-content: space-between;
		max-width: 500px;
		padding: 0 30px;
	}

	.p-company-page__anchor-link li {
		width: calc(100%/3);
		text-align: center;
	}

	.p-company-page__anchor-link li a {
		margin-left: 0;
		font-size: clamp(14px, calc(18/767*100vw), 18px);
	}

	.p-company-page__anchor-link li a::after {
		display: none;
	}

	.p-company-page__content+.p-company-page__content {
		margin-top: 70px;
	}

	.p-company-page__list__container {
		max-width: 500px;
		margin: auto;
	}

	.p-company-page__list__item {
		display: block;
	}

	.p-company-page__list__item dt {
		width: 100%;
	}

	.p-company-page__list__item dd {
		flex: 1;
		margin-top: 5px;
	}
}