/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/

/* Box sizing rules */

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
	margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

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

/* Set core root defaults */

html:focus-within {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img,
picture {
	display: block;
	max-width: 100%;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/

/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/

/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/

html {
	font-size: 16px;
}

body {
	background: #FFF;
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

.l-header {
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
}

.l-inner {
	margin: 0 auto;
	max-width: 100%;
	padding-inline: 20px;
	width: 1280px;
}

.l-subFv {
	margin-top: 100px;
}

.p-page {
	min-height: inherit;
	padding-bottom: 5rem;
	padding-top: 56px;
}

.c-sectionTtl {
	color: #264053;
	display: block;
	font-family: "Roboto", sans-serif;
	font-size: 32px;
	font-weight: bold;
	letter-spacing: 0.2em;
	position: relative;
	text-align: center;
}

.c-sectionTtl::after {
	color: #264053;
	font-family: "Roboto", sans-serif;
	font-size: 1.5rem;
	left: 50%;
	letter-spacing: 0.075em;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
}

.c-subSectionTtl {
	color: #264053;
	display: block;
	font-family: "Roboto", sans-serif;
	font-size: 0rem;
	font-weight: bold;
	letter-spacing: 0.2em;
	position: relative;
	text-align: center;
}

.c-subSectionTtl::after {
	color: #264053;
	font-family: "Roboto", sans-serif;
	font-size: 1.5rem;
	font-weight: 400;
	left: 50%;
	letter-spacing: 0.075em;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
}

.c-subSectionTtl__singleMember {
	padding-top: 2rem;
}

.c-linkBtn {
	background: #CAA27F;
	border: 2px solid #CAA27F;
	border-radius: 30px;
	color: #264053;
	color: #fff;
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.075em;
	line-height: 1;
	padding: 12px 56px 12px 16px;
	position: relative;
	transition: 0.3s all ease;
	white-space: nowrap;
}

.c-linkBtn__right {
	background: #fff;
	border-radius: 50%;
	display: grid;
	height: 24px;
	padding-left: 4px;
	place-content: center;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
}

.c-linkBtn__triangle {
	background-color: #CAA27F;
	clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
	height: 14px;
	width: 10px;
}

.c-link__btn--news {
	margin-inline: auto;
}

.c-linkBtn__youtube {
	margin-inline: auto;
}

.c-linkBtn__product {
	margin-inline: auto;
}

.c-linkBtn__member {
	margin-inline: auto;
}

.c-linkBtn__dark {
	background: #264053;
	border: 2px solid #264053;
	color: white;
}

.c-linkBtn__dark .c-linkBtn__triangle {
	background: #264053;
}

.c-orderBtn {
	background: #CAA27F;
	border: 2px solid #CAA27F;
	border-radius: 30px;
	color: #264053;
	color: #fff;
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.075em;
	line-height: 1;
	padding: 12px 56px 12px 16px;
	position: relative;
	transition: 0.3s all ease;
}

.c-orderBtn__right {
	background: #fff;
	border-radius: 50%;
	display: grid;
	height: 24px;
	padding-left: 4px;
	place-content: center;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
}

.c-orderBtn__triangle {
	background-color: #CAA27F;
	clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
	height: 0.875rem;
	width: 0.625rem;
}

.c-orderBtn__dark {
	background: #264053;
	border: 2px solid #264053;
	color: white;
}

.c-orderBtn__dark .c-orderBtn__triangle {
	background: #264053;
}

.c-orderBtn__drawer {
	font-size: 26px !important;
}

.c-returnBtn {
	align-items: center;
	background: #264053;
	border: 2px solid #264053;
	border-radius: 30px;
	color: #264053;
	display: flex;
	flex-direction: row-reverse;
	font-size: 16px;
	font-weight: 600;
	gap: 16px;
	justify-content: center;
	padding: 18px 24px;
	position: relative;
	transition: 0.3s all ease;
}

.c-returnBtn .c-returnBtn__text {
	color: #fff;
}

.c-returnBtn .c-returnBtn__left {
	background-image: url(../img/common/icon_return_btn__white.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	height: 24px;
	width: 24px;
}

.c-productBuyBtn {
	display: flex;
	justify-content: left;
}

.c-productBuyBtn .c-productBuyBtn__link {
	align-items: center;
	background: #CAA27F;
	border: 2px solid #CAA27F;
	border-radius: 40px;
	cursor: pointer;
	display: flex;
	gap: 24px;
	justify-content: center;
	max-width: 100%;
	min-width: 240px;
	padding: 10px 16px;
	transition: 0.3s ease all;
	width: 100%;
}

.c-productBuyBtn .c-productBuyBtn__link .c-productBuyBtn__link-text {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
}

.c-productBuyBtn .c-productBuyBtn__link .c-productBuyBtn__link-icon {
	background: url(../img/common/icon_cart.svg) center center/contain no-repeat;
	border-radius: 100vmax;
	display: grid;
	height: auto;
	height: 24px;
	min-width: 24px;
	place-content: center;
	width: 24px;
}

.c-text__underline {
	position: relative;
}

.c-text__underline::after {
	background: #264053;
	bottom: -3%;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transition: all 0.2s ease;
	width: 0%;
}

.c-pager { /* 1. 数字の「最初」の要素に適用 */ /* (「前へ」がない場合は最初の子供、ある場合は「前へ」の次の要素) */ /* 2. 数字の「最後」の要素に適用 */ /* (「次へ」がない場合は最後の子供、ある場合は「次へ」の直前の要素) */
}

.c-pager .nav-links {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: center;
}

.c-pager .page-numbers {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #fff;
	border: 2px solid #CAA27F;
	border-radius: 50%;
	display: grid;
	font-size: 12px;
	height: 28px;
	line-height: 1;
	place-content: center;
	transition: 0.3s ease;
	width: 28px;
}

.c-pager .page-numbers:hover {
	background: #CAA27F;
	color: #fff;
}

.c-pager .dots {
	background: transparent;
	border: 0 solid;
	height: 28px;
	pointer-events: none;
	width: 28px;
}

.c-pager .prev {
	background: #fff;
	border: 2px solid #CAA27F;
	border-radius: 50%;
	font-size: 0;
	height: 28px;
	margin-right: 4px;
	position: relative;
	width: 28px;
}

.c-pager .prev::after {
	border-left: 2px solid #CAA27F;
	border-top: 2px solid #CAA27F;
	color: #264053;
	content: "";
	height: 7px;
	left: 55%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	transition: all 0.3s ease;
	white-space: nowrap;
	width: 7px;
}

.c-pager .next {
	background: #fff;
	border: 2px solid #CAA27F;
	border-radius: 50%;
	font-size: 0;
	height: 28px;
	margin-left: 4px;
	position: relative;
	width: 28px;
}

.c-pager .next::after {
	border-right: 2px solid #CAA27F;
	border-top: 2px solid #CAA27F;
	color: #264053;
	content: "";
	height: 7px;
	left: 45%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	transition: all 0.3s ease;
	white-space: nowrap;
	width: 7px;
}

.c-pager .current {
	background: #CAA27F;
	color: #fff;
}

.c-pager .nav-links > .page-numbers:not(.prev):first-child,
.c-pager .nav-links > .prev + .page-numbers {
	border-left: 2px solid #CAA27F;
}

.c-pager .nav-links > .page-numbers:not(.next):last-child,
.c-pager .nav-links > .page-numbers:has(+ .next) {
	border-right: 2px solid #CAA27F;
}

.c-breadcrumb {
	background: #CAA27F;
	color: #fff;
	padding: 16px 0;
}

.c-breadcrumb .breadcrumbs {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 40px;
}

.c-breadcrumb .breadcrumbs a {
	display: block;
	position: relative;
}

.c-breadcrumb .breadcrumbs a::after {
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	content: "";
	height: 8px;
	position: absolute;
	right: -25px;
	top: 45%;
	transform: translateY(-50%) rotate(45deg);
	width: 8px;
}

.c-breadcrumb span span {
	color: #fff;
	display: block;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	line-height: 1;
}

.c-breadcrumb .current-item {
	color: #264053;
	display: block;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	line-height: 1;
}

.c-breadcrumb--calendar .c-bread__lists {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 40px;
}

.c-breadcrumb--calendar .c-bread__link {
	display: block;
	position: relative;
}

.c-breadcrumb--calendar .c-bread__link::after {
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	content: "";
	height: 8px;
	position: absolute;
	right: -25px;
	top: 45%;
	transform: translateY(-50%) rotate(45deg);
	width: 8px;
}

.c-breadcrumb--calendar span {
	color: #264053;
}

.c-postPerChange {
	display: flex;
	justify-content: right;
	margin-top: 32px;
}

.c-postPerChange form {
	align-items: center;
	display: flex;
	gap: 10px;
}

.c-postPerChange .c-postPerChange--select {
	position: relative;
}

.c-postPerChange .c-postPerChange--select select {
	background: #fff;
	border: 2px solid #264053;
	border-radius: 4px;
	color: #264053;
	padding: 2px 8px;
	position: relative;
	width: 86px;
}

.c-postPerChange .c-postPerChange--select::after {
	background: #264053;
	clip-path: polygon(100% 0, 0 0, 50% 70%);
	content: "";
	height: 15px;
	position: absolute;
	right: 10%;
	top: 60%;
	transform: translateY(-50%);
	width: 15px;
}

.p-drawer {
	display: block;
}

.p-drawer__btn {
	display: block;
	position: fixed;
	right: 20px;
	top: 8px;
	z-index: 12000;
}

.p-drawer__bars {
	height: 40px;
	position: relative;
	width: 40px;
	z-index: 12000;
}

.p-drawer__bar {
	background: #CAA27F;
	border-radius: 20px;
	display: block;
	height: 3px;
	left: 0%;
	position: absolute;
	transition: 0.3s all ease;
	width: 100%;
	z-index: 11000;
}

.p-drawer__bar--top {
	top: 10px;
}

.p-drawer__bar--middle {
	top: 20px;
}

.p-drawer__bar--bottom {
	top: 30px;
}

.p-drawer__container {
	background: #F8F5E7;
	display: grid;
	height: 100dvh;
	place-content: center;
	position: fixed;
	top: -3000px;
	transition: 0.2s all ease;
	visibility: hidden;
	width: 100%;
	z-index: 9000;
}

.p-drawer__lists {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: center;
	padding-top: 24px;
}

.p-drawer__list--link {
	display: flex;
	font-size: 24px;
}

.p-drawer__list--youtube {
	width: 120px;
}

.p-drawer__sns {
	display: flex;
	justify-content: center;
	margin-inline: auto;
	max-width: 100%;
	width: 226px;
}

.p-drawer__snsLists {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-top: 30px;
}

.p-drawer__snsLink {
	display: block;
	width: 30px;
}

.p-drawer__snsLink img {
	width: 100%;
}

.p-drawer__snsLink--youtube {
	width: 34px;
}

.jsDrawerActive .p-drawer__container {
	top: 0;
	visibility: visible;
}

.jsDrawerActive .p-drawer__bar--top {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.jsDrawerActive .p-drawer__bar--middle {
	width: 0;
}

.jsDrawerActive .p-drawer__bar--bottom {
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

body.jsNoScroll {
	overflow: hidden;
}

.p-sideSns {
	display: none;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	visibility: hidden;
	z-index: 10000;
}

.p-sideSns__container {
	background: #CAA27F;
	border: 1px solid #CAA27F;
	border-bottom-left-radius: 24px;
	border-top-left-radius: 24px;
	display: grid;
	height: 280px;
	place-content: center;
	width: 64px;
}

.p-sideSns__lists {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
}

.p-sideSns__link {
	display: block;
	margin: 0 auto;
	text-align: center;
	width: 30px;
}

.p-sideSns__link img {
	width: 100%;
}

.p-sideSns__link--youtube {
	width: 34px;
}

/* ==========================================================================
   Header Layout
   ========================================================================== */

.p-header {
	background: #fff;
	display: flex;
	flex-direction: column;
	height: 56px;
	justify-content: center;
}

.p-header__inner {
	padding: 0 20px;
}

.p-header__content {
	align-items: center;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.p-header__logo {
	width: 50px;
}

.p-header__logo img {
	height: auto;
	width: 100%;
}

/* ==========================================================================
   Global Navigation
   ========================================================================== */

.p-header__right {
	align-items: center;
	display: none;
	gap: 24px;
}

.p-header__lists {
	display: flex;
	gap: 24px;
}

.p-header__list {
	display: grid;
	place-content: center;
}

.p-header__list--link {
	display: block;
	font-size: 16px;
	font-weight: 500;
}

.p-header__list--youtube {
	display: grid;
	place-content: center;
	vertical-align: middle;
	width: 70px;
}

/* ==========================================================================
   SNS Dropdown (p-headerSns)
   ========================================================================== */

.p-headerSns {
	display: none;
	position: relative;
}

.p-headerSns:hover .p-headerSnsBtn__triangle {
	transform: rotate(180deg);
}

.p-headerSns:hover .p-headerSnsBtn::after {
	transform: translateY(-50%) rotate(-90deg);
}

.p-headerSns:hover .p-header__snsBox {
	opacity: 1;
	visibility: visible;
}

.p-headerSns__content {
	position: relative;
}

.p-headerSnsBtn {
	align-items: center;
	border: 1px solid #264053;
	border-radius: 30px;
	color: #264053;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	padding: 11px 16px;
	position: relative;
	transition: all 0.3s ease;
	width: 143px;
}

.p-headerSnsBtn .p-headerSnsBtn__text {
	font-size: 16px;
	font-weight: bold;
}

.p-headerSnsBtn:hover .p-headerSnsBtn__triangle {
	transform: rotate(180deg);
}

.p-headerSnsBtn__triangle {
	background: #264053;
	border-radius: 50%;
	display: grid;
	height: 24px;
	place-content: center;
	transition: all 0.3s ease;
	width: 24px;
}

.p-headerSnsBtn__triangle span {
	background: #fff;
	background: #fff;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	display: grid;
	height: 10px;
	margin: auto;
	place-content: center;
	transform: translateY(1px);
	transition: all 0.3s ease;
	width: 14px;
}

.p-header__snsBox {
	left: 50%;
	opacity: 0;
	padding-top: 10px;
	position: absolute;
	top: 100%;
	transform: translateX(-50%);
	transition: 0.3s all ease;
	visibility: hidden;
	width: 180px;
}

.p-header__snsBox.jsHeaderListActive {
	opacity: 1;
	visibility: visible;
}

.p-header__snsContainer {
	background: #F8F5E7;
	border: 1px solid #264053;
	border-radius: 8px;
	padding: 24px 16px;
	width: 100%;
}

.p-header__snsLists {
	display: grid;
	gap: 24px;
}

/* ==========================================================================
   SNS Links & Icons
   ========================================================================== */

.p-header__snsLink {
	align-items: center;
	display: flex;
	gap: 10px;
	width: 100%;
}

.p-header__snsLink .p-header__snsLink--image {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	justify-content: center;
}

.p-header__snsLink .p-header__snsLink--image img {
	height: auto;
	width: 100%;
}

.p-header__snsLink--x .p-header__snsLink--image,
.p-header__snsLink--instagram .p-header__snsLink--image,
.p-header__snsLink--tiktok .p-header__snsLink--image {
	width: 25px;
}

.p-header__snsLink--youtube .p-header__snsLink--image {
	width: 30px;
}

.p-header__snsLink--text {
	display: block;
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	font-weight: 600;
	width: calc(100% - 30px);
}

/* ==========================================================================
   Utility / Others
   ========================================================================== */

.p-header__snsBox--closeBtn {
	background: #F8F5E7;
	border: 1px solid #264053;
	border-radius: 50%;
	cursor: pointer;
	display: grid;
	font-size: 18px;
	height: 40px;
	place-content: center;
	position: absolute;
	right: -10px;
	top: 50px;
	width: 40px;
}

.p-fv {
	width: 100%;
}

.p-fv__inner {
	padding-top: 56px;
	width: 100%;
}

.p-fvSwiper__container {
	position: relative; /* バー単体のスタイル */ /* バーの中身（進行アニメーション用） */ /* アニメーション：アクティブ時 */ /* 既読状態：満タン維持 */
}

.p-fvSwiper__container .swiper-slide {
	height: 100%;
	overflow: hidden;
	position: relative;
	transition: transform 0.3s, opacity 0.3s;
	width: 100%;
}

.p-fvSwiper__container .swiper-slide:not(.swiper-slide-active) {
	opacity: 0.6;
	transform: scale(0.95);
}

.p-fvSwiper__container .swiper-slide img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.p-fvSwiper__container .swiper-slide source {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.p-fvSwiper__container .p-fv__swiper--pagination {
	align-items: center;
	bottom: -6% !important; /* 位置：下部 */
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	left: 0;
	padding: 0 12px;
	pointer-events: none;
	position: absolute;
	right: 0;
	width: 100%;
	z-index: 8000;
}

.p-fvSwiper__container .p-fv__swiper--pagination .swiper-pagination-bullet {
	background: #F8F5E7 !important;
	background-clip: padding-box !important;
	border-bottom: 1px solid #F8F5E7;
	border-radius: 8px !important;
	border-top: 1px solid #F8F5E7;
	cursor: pointer;
	display: block !important;
	flex-grow: 1 !important;
	height: 6px !important;
	margin: 0 2px !important;
	opacity: 1 !important;
	overflow: hidden;
	pointer-events: auto !important;
	position: relative;
	width: auto !important;
}

.p-fvSwiper__container .p-fv__swiper--pagination .swiper-pagination-bullet::after {
	background-color: #CAA27F;
	border-radius: 2px;
	content: "";
	height: 6px; /* 本体の高さに合わせる */
	left: 0;
	position: absolute;
	top: 0;
	width: 0%;
	z-index: 2;
}

.p-fvSwiper__container .p-fv__swiper--pagination .swiper-pagination-bullet-active::after {
	animation: progress-bar 5s linear forwards;
	width: 100%;
}

.p-fvSwiper__container .p-fv__swiper--pagination .swiper-pagination-bullet.visited::after {
	animation: none;
	background-color: #CAA27F;
	width: 100%;
}

.jsFvSwiper {
	overflow: hidden;
	padding-top: 70px;
	width: 100%;
}

.jsFvSwiper .swiper-wrapper {
	transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1) !important;
}

.jsFvSwiper .swiper-slide {
	height: inherit;
	max-height: calc(100% - 130px);
	overflow: hidden;
	width: 100%;
}

.jsFvSwiper .swiper-slide .p-fv__image {
	height: 100%;
	width: 100%;
}

.jsFvSwiper .swiper-slide .p-fv__image img {
	-o-object-fit: cover;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-news {
	padding-bottom: 80px;
	padding-top: 60px;
}

.p-news__inner {
	margin-inline: auto;
	max-width: 100%;
	width: 800px;
}

.p-news__content {
	margin-top: 32px;
}

.p-news__lists {
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr;
}

.p-news__list--link {
	border-bottom: 1px solid #CAA27F;
	display: grid;
	grid-template-columns: 1fr;
	padding-bottom: 12px;
	position: relative;
}

.p-news__list--link::after {
	background: #264053;
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transition: all 0.2s ease;
	width: 0%;
}

.p-news__list--time {
	color: #CAA27F;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.075em;
	line-height: 1;
	width: 100px;
}

.p-news__list--ttl {
	color: #264053;
	display: inline-block;
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	line-height: 1.5;
	margin-top: 12px;
	position: relative;
}

.p-news-bottom {
	display: grid;
	margin-top: 40px;
	place-content: center;
}

.p-news__noPost {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

.p-youtube {
	background: #F8F5E7;
	padding: 32px 0 56px;
}

.p-youtube__swiper--container {
	margin-inline: auto;
	margin-top: 32px;
	max-width: 100%;
	padding-inline: 0;
	position: relative;
	width: 1240px;
}

.p-youtube__swiper--container .swiper-slide {
	padding: 0 1%;
}

.p-youtube__swiper--container .p-youtube__link {
	aspect-ratio: 16/9;
	background: #000;
	border-radius: 20px;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.p-youtube__swiper--container .p-youtube__link .p-youtube__thumbnail {
	inset: 0;
	position: absolute;
	z-index: 2;
}

.p-youtube__swiper--container .p-youtube__link .p-youtube__thumbnail img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-youtube__swiper--container .p-youtube__link .js-youtube-player-container {
	inset: 0;
	position: absolute;
	z-index: 1;
}

.p-youtube__swiper--container .p-youtube__link .js-youtube-player-container iframe {
	border: none;
	height: 100%;
	width: 100%;
}

.p-youtube__swiper--container .p-youtube__link .c-play-button {
	background: rgba(255, 0, 0, 0.8);
	border-radius: 50%;
	height: 60px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	z-index: 3;
}

.p-youtube__swiper--container .p-youtube__link .c-play-button::after {
	border-color: transparent transparent transparent #fff;
	border-style: solid;
	border-width: 10px 0 10px 18px;
	content: "";
	left: 55%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.p-youtube__swiper--container .p-youtube__body {
	margin-top: 60px;
	padding: 0 20px;
	text-align: left;
}

.swiper-pagination__youtube {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.swiper-pagination__youtube > .swiper-pagination-bullet {
	background: #caa27f;
	border-radius: 50%;
	height: 20px;
	opacity: 1;
	transition: all 0.3s;
	width: 20px;
}

.swiper-pagination__youtube > .swiper-pagination-bullet-active {
	background: #caa27f;
	border-radius: 10px;
	height: 20px;
	width: 60px;
}

.p-youtube__body {
	margin: 5rem auto 0;
	max-width: 100%;
	padding: 0 20px;
	text-align: center;
	width: 800px;
}

.p-youtube__body .p-youtube__body--ttl {
	color: #264053;
	font-size: 1.25rem;
}

.p-youtube__body .p-youtube__body--text {
	font-size: 1rem;
	margin-top: 24px;
}

.p-youtube__bottom {
	display: grid;
	margin-top: 40px;
	place-content: center;
}

/* ==========================================================================
   Product Section (セクション全体)
   ========================================================================== */

.p-product {
	padding-bottom: 56px;
	padding-top: 32px;
}

.p-product__inner {
	padding: 0;
}

/* ==========================================================================
   Swiper Container & Controls (スライダー制御・ページネーション)
   ========================================================================== */

.p-product__swiper--container {
	padding-bottom: 56px;
	position: relative;
	width: 100%;
}

.p-product__swiper--container .jsProductSwiper {
	width: 100%;
}

.p-product__swiper--container .jsProductSwiper .swiper-slide {
	height: auto;
	padding: 0 8px;
}

.p-product__swiper--container .swiper-pagination {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: center;
	left: 50% !important;
	opacity: 1;
	position: absolute;
	transform: translateX(-50%);
	width: 100%;
}

.p-product__swiper--container .swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 0;
}

.p-product__swiper--container .swiper-pagination-bullet {
	background: #caa27f;
	border-radius: 50%;
	height: 20px;
	opacity: 1;
	transition: all 0.3s;
	width: 20px;
}

.p-product__swiper--container .swiper-pagination-bullet-active {
	background: #caa27f;
	border-radius: 10px;
	height: 20px;
	width: 60px;
}

.p-product-content {
	position: relative;
}

.p-product-content .swiper-scrollbar {
	background-color: #F8F5E7;
	height: 8px;
	width: 100%;
}

.p-product-content .swiper-scrollbar-drag {
	background-color: #264053;
}

/* ==========================================================================
   Product Items (個別の商品アイテム)
   ========================================================================== */

.p-product__items {
	margin: 0 calc(50% - 50vw);
	margin-top: 32px;
	overflow: hidden;
	width: 100vw;
}

.p-product__item {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	text-align: center;
}

.p-product__item--image {
	aspect-ratio: 1/1;
	border-radius: 12px;
	flex-shrink: 0;
	overflow: hidden;
}

.p-product__item--image img {
	-o-object-fit: cover;
	height: 100% !important;
	object-fit: cover;
	transition: transform 0.3s ease;
	width: 100% !important;
}

.p-product__item--body {
	background: #F8F5E7;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 8px;
	margin-top: 12px;
	padding: 12px;
	padding-bottom: 40px;
	position: relative;
}

.p-product__item--body .p-product__item--ttl {
	color: #264053;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	text-align: left;
}

.p-product__item--body .p-product__item--text {
	font-size: 16px;
	line-height: 1.5;
	text-align: justify;
}

.p-product__item--body .p-product__item--price {
	align-items: center;
	bottom: 4px;
	display: flex;
	gap: 4px;
	left: 12px;
	position: absolute;
}

.p-product__item--body .p-product__item--price p {
	font-size: 20px;
	font-weight: 600;
}

.p-product__item--body .p-product__item--price span {
	font-size: 16px;
}

/* ==========================================================================
   Section Bottom (下部エリア)
   ========================================================================== */

.p-product__bottom {
	display: grid;
	margin-inline: auto;
	margin-top: 40px;
	place-content: center;
}

/* ==========================================================================
   Member Section (セクション全体)
   ========================================================================== */

.p-member {
	background: #F8F5E7;
	padding: 32px 0 100px;
}

/* ==========================================================================
   Swiper Container (スライダー外枠・ページネーション)
   ========================================================================== */

.p-member__swiper-container {
	display: flex;
	justify-content: center;
	margin: 56px auto 0;
	overflow: visible;
	padding-bottom: 56px;
	position: relative;
	width: 500px;
}

.p-member__swiper-container .jsMemberSwiper {
	overflow: visible;
	padding-inline: 10px;
	width: 100%;
}

.p-member__swiper-container .swiper-pagination {
	align-items: center;
	bottom: 0 !important;
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 20px;
	opacity: 1;
	position: absolute;
}

.p-member__swiper-container .swiper-pagination .swiper-pagination-bullet {
	background: #caa27f;
	border-radius: 50%;
	height: 20px;
	opacity: 1;
	transition: all 0.3s;
	width: 20px;
}

.p-member__swiper-container .swiper-pagination .swiper-pagination-bullet-active {
	background: #caa27f;
	border-radius: 10px;
	height: 20px;
	width: 60px;
}

/* ==========================================================================
   Member Items (個別のカード)
   ========================================================================== */

.p-member__items {
	display: flex;
	justify-content: center;
	margin-inline: auto;
	overflow: hidden;
	width: 100%;
}

.p-member__item {
	background: #fff;
	border: 1px solid #264053;
	border-radius: 30px;
	display: flex;
	flex: 1;
	flex-direction: column;
	height: 100%;
	margin-inline: auto;
	overflow: hidden;
	position: relative;
	width: 250px;
}

.p-member__item::before,
.p-member__item::after {
	content: "";
	position: absolute;
}

.p-member__item .p-member__info-item--nameWrap {
	margin-inline: auto;
}

.p-member__item .p-member__info-item--nameWrapSp {
	display: none;
}

.p-member__item .p-member__info-item--nameWrapPc {
	display: block;
}

.p-member__item .p-member__infoHead {
	background: #CAA27F;
	display: flex;
	justify-content: right;
	padding: 4px 18px;
	width: 100%;
}

.p-member__item .p-member__name-en {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	padding-left: 4px;
	word-break: break-all;
}

.p-member__item .p-member__name-jp {
	font-size: 22px;
	line-height: 1.1;
	width: calc(100% - 56px);
}

.p-member__item .p-member__info-nameLogo {
	align-items: center;
	display: flex;
	gap: 8px;
}

.p-member__item .p-member__infoHeadingLogo {
	width: 48px;
}

.p-member__item .p-member__info-item-numb {
	color: #fff;
	font-family: "Roboto", sans-serif;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.05em;
}

.p-member__item .p-member__item-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 200px;
	padding: 6px 8px 0;
	position: relative;
}

.p-member__item .p-member__item-imageContainer {
	display: grid;
	margin-inline: auto;
	margin-top: 12px;
	place-content: center;
	width: 200px;
}

.p-member__item .p-member__item-image {
	border-radius: 16px;
	overflow: hidden;
}

.p-member__item .p-member__item-image img {
	height: auto;
	width: 100%;
}

.p-member__item .p-member__info-itemLists {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-top: 6px;
	width: 100%;
}

.p-member__item .p-member__info-label {
	font-size: 14px;
}

.p-member__item .p-member__info-value {
	font-size: 14px;
	padding-left: 12px;
}

.p-member__item .p-member__info-list {
	line-height: 1;
}

.p-member__item .p-member__info-list-affiliation {
	border-bottom: 1px solid #CAA27F;
	margin-top: 6px;
	min-height: 50px;
	padding-bottom: 6px;
}

.p-member__item .p-member__info-valueAffiliation {
	margin-top: 6px;
}

.p-member__item .p-member__info-list-motto {
	margin-top: 6px;
	min-height: 66px;
}

.p-member__item .p-member__info-list-motto .p-member__info-value {
	margin-top: 6px;
	min-height: 42px;
}

.p-member__item-image--noImage {
	background-color: #fff !important;
}

/* ==========================================================================
Section Bottom (下部ボタンエリア等)
========================================================================== */

.p-member__bottom {
	display: grid;
	margin-top: 40px;
	place-content: center;
}

.p-footer {
	background: #CAA27F;
}

.p-footer__inner {
	margin: 0 auto;
	max-width: 100%;
	padding-bottom: 16px;
	padding-inline: 24px;
	width: 1440px;
}

.footer-menu01 {
	order: 1;
}

.footer-menu02 {
	order: 2;
}

.footer-menu03 {
	order: 3;
}

.p-footer__content {
	display: flex;
	flex-direction: column;
	gap: 32px;
	justify-content: center;
	padding-top: 32px;
}

.p-footer__order {
	display: flex;
	justify-content: center;
}

.p-footer__menus {
	display: grid;
	gap: 16px;
	max-width: 100%;
	padding-block: 16px;
	place-content: center;
}

.p-footer__menu ul {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	justify-content: center;
}

.p-footer__menu ul li a {
	font-size: 16px;
	font-weight: 600;
}

.p-footer__menu--youtube {
	display: flex;
	width: 100px;
}

.p-footer__sns {
	margin-top: 10px;
}

.p-footer__sns ul {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: center;
}

.p-footer__snsLink {
	background: #F8F5E7;
	border-radius: 100vmax;
	display: grid;
	height: 50px;
	place-content: center;
	width: 50px;
}

.p-footer__snsLink img {
	height: auto;
	width: 24px;
}

.p-footer__copy {
	display: block;
	font-size: 14px;
	margin-top: 16px;
	text-align: center;
}

.p-news-archive {
	background: #F8F5E7;
	min-height: inherit;
	padding-bottom: 80px;
	padding-top: 56px;
}

.p-news__postPerChange {
	display: flex;
	justify-content: right;
}

.p-news__postPerChange form {
	align-items: center;
	display: flex;
	gap: 10px;
}

.p-news__postPerChange .p-news__postPerChange--select {
	position: relative;
}

.p-news__postPerChange .p-news__postPerChange--select select {
	background: #fff;
	border: 2px solid #264053;
	border-radius: 4px;
	padding: 2px 8px;
	position: relative;
	width: 78px;
}

.p-news__postPerChange .p-news__postPerChange--select::after {
	background: #264053;
	clip-path: polygon(100% 0, 0 0, 50% 70%);
	content: "";
	height: 15px;
	position: absolute;
	right: 10%;
	top: 60%;
	transform: translateY(-50%);
	width: 15px;
}

.p-news__list--excerpt {
	font-size: 16px;
	margin-top: 12px;
}

.p-news__single {
	background: #F8F5E7;
	min-height: inherit;
	padding-bottom: 80px;
	padding-top: 56px;
}

.p-news__single .p-news__list--content {
	padding-top: 32px;
}

.p-news__single .p-news__content--image {
	border-radius: 18px;
	display: grid;
	margin-inline: auto;
	max-width: 100%;
	overflow: hidden;
	place-content: center;
	width: 500px;
}

.p-news__single .p-news__content--image img {
	height: auto;
	text-align: center;
	width: 100%;
}

.p-news__single .p-news__singleBannerWrap {
	padding-bottom: 24px;
	padding-top: 32px;
}

.p-news__single .p-news__list--time {
	display: block;
	font-size: 16px;
}

.p-news__single .p-news__list--title {
	border-bottom: 4px solid #CAA27F;
	color: #264053;
	font-size: 20px;
	line-height: 1.5;
	margin-top: 12px;
	padding-bottom: 12px;
}

.p-news__single .p-news__content--body h4 {
	color: #264053;
	font-size: 24px;
	margin-top: 24px;
	padding-left: 30px;
	position: relative;
}

.p-news__single .p-news__content--body p {
	font-size: 18px;
	margin-top: 20px;
}

.p-news__single .p-news__content--body a {
	color: #0000ee;
	text-decoration: underline;
}

.p-news__single .p-news__content--body a:visited {
	color: #551a8b;
}

.p-news__single .p-news__content--body a:hover {
	opacity: 0.7;
}

.p-news__single .p-news-bottom {
	margin-top: 80px;
}

.p-product__images {
	min-width: 0;
	padding-bottom: 16px;
}

.p-newsMain__swiper--container {
	display: grid;
	margin-inline: auto;
	max-width: 100%;
	padding-bottom: 0;
	place-content: center;
	position: relative;
	width: 500px;
}

.p-newsMain__swiper--container .swiper-singlePagination__news {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 32px;
	position: relative;
}

.p-newsMain__swiper--container .swiper-singlePagination__news > .swiper-pagination-bullet {
	background: #caa27f;
	border-radius: 50%;
	height: 20px;
	opacity: 1;
	transition: all 0.3s;
	width: 20px;
}

.p-newsMain__swiper--container .swiper-singlePagination__news > .swiper-pagination-bullet-active {
	background: #caa27f;
	border-radius: 10px;
	height: 20px;
	width: 60px;
}

.jsNewsMainSwiper {
	max-width: 100%;
	position: relative;
}

.jsNewsMainSwiper .swiper-wrapper {
	max-width: 100%;
	padding-top: 32px;
}

.jsNewsMainSwiper .swiper-slide {
	border-radius: 8px;
	overflow: hidden;
	width: 100%;
}

.jsNewsMainSwiper .swiper-slide img {
	border-radius: 8px;
	width: 100%;
}

.jsNewsThumbSwiper {
	display: none;
}

.jsNewsThumbSwiper .swiper-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.jsNewsThumbSwiper .swiper-slide {
	border-radius: 8px;
	cursor: pointer;
	height: auto;
	margin-top: 10px;
	opacity: 0.4;
	overflow: hidden;
	padding: 0 4px;
	position: relative;
	transition: opacity 0.3s;
	width: 25%;
}

.jsNewsThumbSwiper .swiper-slide img {
	border-radius: 8px;
}

.jsNewsThumbSwiper .swiper-slide-thumb-active {
	opacity: 1;
}

.p-product__archive {
	background: #fff;
	min-height: inherit;
	padding-bottom: 120px;
	padding-top: 56px;
}

.p-product__archive .p-product__container {
	padding: 0 20px;
}

.p-product__archive .p-product__items {
	border-radius: 10px;
	box-sizing: border-box;
	display: grid;
	gap: 40px 20px;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	margin: 24px auto 0;
	width: 100%;
}

.p-product__archive .p-product__item {
	background: #fff;
	border-radius: 10px;
	height: auto;
}

.p-product__archive .p-product__item--body {
	background: #F8F5E7;
	position: relative;
}

.p-product__archive .p-product__item--ttl {
	font-size: 18px;
	font-weight: 600;
	text-align: left;
}

.p-product__archive .p-product__item--price {
	font-size: 18px;
	font-weight: 600;
	padding: 12px;
	text-align: right;
}

.p-product__archive .p-product__item--excerpt {
	font-size: 16px;
	line-height: 1.5;
	text-align: justify;
}

.p-product__archive .p-product__archive--bottom {
	padding-top: 32px;
}

.p-product__archivePrice {
	align-items: flex-end;
	bottom: 4px;
	display: flex;
	gap: 4px;
	left: 12px;
	position: absolute;
}

.p-product__archivePrice p {
	font-size: 20px;
	font-weight: 600;
}

.p-product__archivePrice span {
	font-size: 16px;
}

.p-product__single {
	min-height: inherit;
	padding-bottom: 80px;
	padding-top: 56px;
}

.p-product__single .p-product__container {
	margin-top: 32px;
}

.p-product__single .p-product__content {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-inline: auto;
	max-width: 100%;
	width: 100%;
}

.p-product__singleTtl {
	margin-top: 0;
	max-width: 100%;
	width: 100%;
}

.p-product__singleTtl h2 {
	font-size: 24px;
	line-height: 1.5;
}

.p-product__singlePrice {
	align-items: end;
	display: flex;
	gap: 6px;
	justify-content: left;
	margin-top: 32px;
	text-align: right;
}

.p-product__singlePrice h3 {
	font-size: 32px;
}

.p-product__singlePrice span {
	font-size: 20px;
}

.p-product__singleDescription {
	font-size: 18px;
	line-height: 1.4;
	margin: 0;
	max-width: 100%;
	overflow-wrap: break-word;
	padding-top: 16px;
	width: 100%;
	word-break: break-all;
}

.p-product__images {
	width: 100%;
}

.p-product__singleContent {
	margin-top: 16px;
	width: 100%;
}

.p-productMain__swiper--container {
	padding-bottom: 0;
	position: relative;
}

.p-productMain__swiper--container .swiper-singlePagination__Product {
	bottom: -12px !important;
	display: flex;
	gap: 10px;
	justify-content: center;
	position: relative;
}

.p-productMain__swiper--container .swiper-singlePagination__Product > .swiper-pagination-bullet {
	background: #caa27f;
	border-radius: 50%;
	height: 20px;
	opacity: 1;
	transition: all 0.3s;
	width: 20px;
}

.p-productMain__swiper--container .swiper-singlePagination__Product > .swiper-pagination-bullet-active {
	background: #caa27f;
	border-radius: 10px;
	height: 20px;
	width: 60px;
}

.jsProductMainSwiper {
	max-width: 100%;
	position: relative;
}

.jsProductMainSwiper .swiper-wrapper {
	max-width: 100%;
}

.jsProductMainSwiper .swiper-slide {
	border-radius: 8px;
	margin-inline: auto;
	max-width: 100%;
	overflow: hidden;
}

.jsProductMainSwiper .swiper-slide img {
	width: 100%;
}

.jsProductThumbSwiper {
	display: none;
}

.jsProductThumbSwiper .swiper-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.jsProductThumbSwiper .swiper-slide {
	border-radius: 8px;
	cursor: pointer;
	height: auto;
	margin-top: 8px;
	opacity: 0.4;
	overflow: hidden;
	padding: 0 4px;
	position: relative;
	transition: opacity 0.3s;
	width: 25%;
}

.jsProductThumbSwiper .swiper-slide img {
	border-radius: 8px;
}

.jsProductThumbSwiper .swiper-slide-thumb-active {
	opacity: 1;
}

.p-product-single__bottom {
	margin: 0 auto;
	padding: 80px 0 40px;
	width: 240px;
}

.c-productBuyBtn.is-disabled {
	cursor: not-allowed;
	pointer-events: none;
}

.c-productBuyBtn.is-disabled .c-productBuyBtn__link {
	background: rgba(202, 162, 127, 0.5);
	border: 0px solid rgba(202, 162, 127, 0.5);
}

/* デザイン調整（任意） */

.c-productBuyBtn__link {
	display: flex; /* 既存のボタンデザインのCSS */
}

.p-productBuyContainer {
	margin-top: 16px;
}

.p-productBuyBtn__footer {
	display: grid;
	margin-top: 16px;
}

.p-productBuyBtn__footer p {
	font-size: 16px;
}

.p-product__makerWrap {
	color: #fff;
	font-weight: bold;
	gap: 8px;
	margin-top: 0px;
	padding: 0px 0px 10px;
	position: relative;
}

.p-product__makerTags {
	display: flex;
	flex: 1;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.p-product__maker {
	background: #f9f4ef;
	border: 2px solid #caa27f;
	border-radius: 16px;
	color: #fff;
	color: #caa27f;
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	padding: 4px 0px;
	text-align: right;
	text-align: center;
	transition: 0.3s all ease;
}

.p-product__maker .staff-tag {
	display: grid;
	place-content: center;
}

.p-member__archive {
	background: #F8F5E7;
	min-height: inherit;
	padding-bottom: 120px;
	padding-top: 56px;
}

.p-member__archive .p-member__container {
	margin-top: 32px;
}

.p-member__archive .p-archiveMember__content {
	max-width: 100%;
}

.p-member__archive .p-archiveMember__items {
	display: grid;
	place-content: center;
}

.p-member__archive .p-archiveMember__item {
	display: flex;
	padding-bottom: 24px;
}

.p-member__archive .p-archiveMember__item:not(:first-of-type) {
	padding-top: 24px;
}

.p-member__archive .p-archiveMember__item:not(:last-child) {
	border-bottom: 1px solid #CAA27F;
}

.p-member__archive .p-archiveMember--link {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 32px;
	justify-content: center;
	margin-inline: auto;
	max-width: 100%;
}

.p-member__archive .p-archiveMember--image {
	background: #ffffff;
	border-radius: 50%;
	height: auto;
	max-width: 100%;
	overflow: hidden;
	width: 300px;
}

.p-member__archive .p-archiveMember--image img {
	height: auto;
	transition: all 0.3s ease;
	width: 100%;
}

.p-member__archive .p-archiveMember__image--no {
	background: #ffffff;
	border-radius: 38px;
	height: auto;
	max-width: 100%;
	overflow: hidden;
	width: 300px;
}

.p-member__archive .p-archiveMember__image--no img {
	height: auto;
	transition: all 0.3s ease;
	width: 100%;
}

.p-member__archive .p-archiveMember__item--info {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
	max-width: 100%;
	padding: 0;
}

.p-member__archive .p-archiveMember__item--infoWrap {
	display: flex;
	flex-direction: column;
	justify-content: left;
}

.p-member__archive .p-archiveMember--ttl {
	text-align: center;
}

.p-member__archive .p-archiveMember--ttl h3 {
	font-family: "Roboto", sans-serif;
	font-size: 28px;
	font-weight: 700;
}

.p-member__archive .p-archiveMember--ttl span {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.p-member__archive .p-archiveMember--list {
	display: grid;
	gap: 32px;
	min-width: 200px;
	place-content: center;
}

.p-member__archive .p-archiveMember--list ul {
	display: grid;
	gap: 12px;
}

.p-member__archive .p-archiveMember--list ul li {
	display: flex;
}

.p-member__archive .p-archiveMember--list ul li p,
.p-member__archive .p-archiveMember--list ul li span {
	font-size: 18px;
	font-weight: 500;
	text-align: left;
}

.p-member__archive .p-archiveMember--list ul li span {
	display: block;
	min-width: 120px;
	padding-right: 32px;
}

.p-member__archive .p-archiveMember--list ul li p {
	width: calc(100% - 120px);
}

.p-member__archive .p-member__archive--bottom {
	padding-top: 32px;
}

.p-member__archive .p-member__noPost {
	display: block;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}

.p-member__archive .p-member__item {
	width: 480px;
}

.p-member__archive .p-member__item-imageContainer {
	padding-block: 24px;
	width: 320px;
}

.p-member__single {
	min-height: inherit;
	padding-bottom: 120px;
	padding-top: 56px;
}

.p-member__single .p-member__inner {
	padding-inline: 20px;
}

.p-member__single .p-member__container {
	margin-inline: auto;
	margin-top: 32px;
	max-width: 100%;
}

.p-member__single .p-member__heading {
	position: relative;
}

.p-member__single .p-member__heading span {
	display: block;
	font-size: 16px;
	letter-spacing: 0.05em;
	text-align: center;
}

.p-member__single .p-subSectionTtl__singleMember {
	font-size: 28px;
	text-align: center;
}

.p-member__single .p-memberSingle__content {
	display: grid;
	gap: 40px;
	margin-top: 32px;
	max-width: 100%;
	max-width: 100%;
	padding: 0;
	place-content: center;
	width: 1280px;
}

.p-member__single .p-memberSingle__item {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 32px;
	justify-content: center;
	margin-top: 0px;
	max-width: 100%;
	padding: 0px;
}

.p-member__single .p-memberSingle__item--image {
	border-radius: 0;
	height: auto;
	max-width: 100%;
	overflow: hidden;
	width: 100%;
}

.p-member__single .p-memberSingle__item--image img {
	height: auto;
}

.p-member__single .p-memberSingle__item--imageContainer {
	display: grid;
	place-content: center;
}

.p-member__single .p-memberSingle__item--info {
	padding-inline: 20px;
}

.p-member__single .p-memberSingle__item--ttl {
	text-align: center;
}

.p-member__single .p-memberSingle__item--ttl h3 {
	font-family: "Roboto", sans-serif;
	font-size: 40px;
	font-weight: 500;
}

.p-member__single .p-memberSingle__item--ttl span {
	font-size: 24px;
	font-weight: 500;
}

.p-member__single .p-memberSingle__item--list {
	padding-inline: 0;
}

.p-member__single .p-memberSingle__item--list ul {
	display: grid;
	gap: 32px;
}

.p-member__single .p-memberSingle__item--list ul li {
	display: flex;
	flex-direction: column;
	gap: 8px;
	justify-content: flex-start;
	text-align: left;
}

.p-member__single .p-member__archive--bottom {
	padding-top: 2rem;
}

.p-member__single .p-member__noPost {
	display: block;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
}

.p-memberSingle__item--label {
	display: grid;
	place-content: center;
	width: inherit;
}

.p-memberSingle__item--label span {
	align-items: center;
	border-radius: 16px;
	color: #fff;
	color: #264053;
	display: flex;
	display: inline-flex;
	font-size: 18px;
	font-weight: 400;
	font-weight: 500;
	justify-content: center;
	line-height: 1;
	margin-inline: auto;
	padding-left: 12px;
	position: relative;
}

.p-memberSingle__item--label span::after {
	background: #CAA27F;
	border-radius: 4px;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
}

.p-memberSingle__item--answer {
	display: block;
	font-size: 18px;
	padding-left: 0px;
	text-align: center;
	width: 100%;
}

.p-memberSingle__item--imageAnnotation {
	font-size: 18px;
	padding-top: 32px;
	text-align: center;
}

.p-member__single-bottom {
	display: grid;
	margin-top: 2.5rem;
	place-content: center;
}

.p-youtube-archive {
	background: #F8F5E7;
	min-height: inherit;
	padding-bottom: 120px;
	padding-top: 70px;
}

.p-youtube-archive .p-youtube__items {
	align-items: stretch;
	display: grid;
	gap: 3.75rem;
	grid-template-columns: 1fr;
	margin-bottom: 100px;
	margin-top: 80px;
}

.p-youtube-archive .p-youtube__inner {
	padding-top: 60px;
}

.p-youtube-archive .p-youtube__item {
	background: #fff;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	padding: 20px;
}

.p-youtube-archive .p-youtube__item--movie {
	aspect-ratio: 16/9;
	border-radius: 30px;
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.p-youtube-archive .p-youtube__item--movie figure {
	height: 100%;
	width: 100%;
}

.p-youtube-archive .p-youtube__item--movie .wp-block-embed__wrapper {
	height: 100%;
	width: 100%;
}

.p-youtube-archive .p-youtube__item--movie iframe {
	height: 100%;
	width: 100%;
}

.p-youtube-archive .p-youtube__item--body {
	border-radius: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 16px;
	padding-top: 32px;
}

.p-youtube-archive .p-youtube__item--body h3 {
	color: #264053;
	font-size: 1rem;
	font-weight: bold;
}

.p-youtube-archive .p-youtube__item--postDay {
	color: #264053;
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	font-weight: 600;
}

.p-youtube-archive .p-youtube__item--text {
	color: #264053;
	display: block;
	font-size: 0.875rem;
	line-height: 1.78;
	padding: 10px 0;
}

.p-youtube-archive .p-youtube__item--link {
	background: #CAA27F;
	border: 1px solid #CAA27F;
	border-radius: 30px;
	color: #fff;
	display: grid;
	margin-inline: auto;
	margin-top: auto;
	padding: 16px 20px;
	place-content: center;
	transition: 0.3s all ease;
	white-space: nowrap;
	width: 200px;
}

.p-events__archive {
	min-height: inherit;
	padding-bottom: 120px;
	padding-top: 56px;
}

.p-events__archive .p-events__container {
	margin-top: 32px;
}

.p-events__archive .eventNavRow__heading {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-inline: auto;
	max-width: 100%;
	position: relative;
	width: 128px;
}

.p-events__archive .eventNavRow-year select {
	width: 94px;
}

.p-events__archive .eventNavRow-year .eventNav {
	display: none !important;
}

.p-events__archive .eventNavRow-month select {
	text-align: center;
	width: 56px;
}

.p-events__archive .eventNavRow-month .eventNav {
	position: absolute;
}

.p-events__archive .eventNavRow-month .eventNav__prev {
	left: -50%;
	top: 46%;
	transform: translateY(-50%);
}

.p-events__archive .eventNavRow-month .eventNav__next {
	right: -44%;
	top: 46%;
	transform: translateY(-50%);
}

.p-events__archive .eventNavRow {
	align-items: center;
	display: flex;
	flex-direction: column-reverse;
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	font-weight: bold;
	gap: 8px;
	height: 40px;
	justify-content: center;
	margin: 0 auto;
	max-width: 180px;
	text-align: center;
}

.p-events__archive .eventNavRow .eventNav {
	display: flex;
}

.p-events__archive .eventNavRow select {
	-moz-text-align-last: center;
	color: #264053;
	font-size: 24px;
	height: 36px;
	line-height: 1;
	text-align: center;
	text-align-last: center;
}

.p-events__archive .eventNavRow input {
	color: #264053;
}

.p-events__archive .eventNavRow .p-eventNav__triangleWrap {
	background: #CAA27F;
	border: 2px solid #CAA27F;
	border-radius: 50%;
	display: grid;
	height: 28px;
	place-content: center;
	position: relative;
	width: 28px;
}

.p-events__archive .eventNavRow .p-eventNav__triangle--prev {
	background-color: #fff;
	clip-path: polygon(100% 0%, 0% 50%, 100% 100%);
	display: grid;
	height: 14px;
	margin-right: 4px;
	place-content: center;
	width: 10px;
}

.p-events__archive .eventNavRow .p-eventNav__triangle--next {
	background-color: #fff;
	clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
	display: grid;
	height: 14px;
	margin-left: 4px;
	place-content: center;
	width: 10px;
}

.p-events__archive .p-eventYM {
	color: #264053;
	font-family: "Roboto", sans-serif;
	font-size: 0;
	letter-spacing: 0.02em;
	text-align: center;
}

.p-events__archive .eventListCal {
	color: #264053;
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
	margin-top: 16px;
}

.p-events__archive .eventListCal__row {
	align-items: center;
	background: #F8F5E7;
	border-radius: 20px;
	display: flex;
	gap: 10px;
	padding: 12px 8px;
}

.p-events__archive .eventListCal__date {
	font-weight: 600;
	width: 72px;
}

.p-events__archive .eventListCal__dateWrap {
	display: flex;
	gap: 16px;
}

.p-events__archive .eventListCal__day {
	color: #264053;
	display: grid;
	font-size: 18px;
	font-weight: 600;
	place-content: center;
}

.p-events__archive .eventListCal__dow {
	color: #264053;
	display: grid;
	font-size: 13px;
	place-content: center;
}

.p-events__archive .is-sat {
	background-color: #e7f8f7;
}

.p-events__archive .is-sun-holiday {
	background-color: #f8e7f0;
}

.p-events__archive .eventListCal__holiday {
	color: #ef858c;
	font-size: 12px;
	font-weight: 600;
	margin-top: 8px;
	text-align: left;
}

.p-events__archive .eventListCal__body {
	width: calc(100% - 72px);
}

.p-events__archive .eventListCal__event:not(:first-child) {
	margin-top: 16px;
}

.p-events__archive .eventListCal__event a {
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	padding-left: 10px;
	pointer-events: none;
	position: relative;
}

.p-events__archive .eventListCal__event a::after {
	background: #CAA27F;
	border-radius: 2px;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
}

.p-events__archive .eventListCal__empty {
	font-size: 14px;
}

.p-contact__form {
	margin-inline: auto;
	margin-top: 32px;
	max-width: 100%;
	width: 1048px;
}

.p-contact__order {
	margin: 0 auto;
	max-width: 100%;
	width: 960px;
}

.p-contact__item {
	border-bottom: 1px solid #CAA27F;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-bottom: 24px;
}

.p-contact__item:not(:first-child) {
	padding-top: 40px;
}

.p-contact__item--textarea {
	border-bottom: 0px solid #F8F5E7;
}

.p-contact__label {
	display: inline-block;
	font-size: 18px;
	line-height: 1.2;
	max-width: 100%;
	padding-left: 16px;
	position: relative;
	width: inherit;
	width: 100%;
}

.p-contact__label::before {
	background: #CAA27F;
	border-radius: 4px;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
}

.p-contact__input {
	max-width: 100%;
	width: 100%;
}

.p-contact__input input {
	background: #F8F5E7;
	border-radius: 8px;
	font-size: 16px;
	height: 43px;
	padding: 16px;
	width: 100%;
}

.p-contact__input select {
	background: #F8F5E7;
	border-radius: 8px;
	font-size: 16px;
	height: 43px;
	padding: 0 16px;
	width: 100%;
}

.p-contact__input textarea {
	background: #F8F5E7;
	border-radius: 8px;
	font-size: 16px;
	height: 200px;
	padding: 16px;
	width: 100%;
}

.p-contact__input--select {
	position: relative;
}

.p-contact__input--select::before {
	background: #CAA27F;
	clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
	content: "";
	height: 16px;
	position: absolute;
	right: 10px;
	top: 14px;
	width: 24px;
	z-index: 100;
}

.p-contact__input--requiredSp {
	position: relative;
}

.p-contact__input--requiredSp::after {
	background: #d92525;
	border-radius: 8px;
	color: #fff;
	content: "必須";
	display: grid;
	font-family: "Roboto", sans-serif;
	font-size: 12px;
	height: 22px;
	place-content: center;
	position: absolute;
	right: -64px;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
}

.p-contact__check {
	display: grid;
	margin-top: 8px;
	place-content: center;
}

.p-contact__check label {
	font-size: 14px;
}

.p-contact__check ul li:not(:first-child) {
	margin-top: 16px;
}

.p-contact__check .wpcf7-list-item {
	display: block;
	line-height: 1;
}

.p-contact__check .wpcf7-list-item + .wpcf7-list-item {
	margin-top: 8px;
}

.p-contact__check input[type=checkbox] {
	display: none;
}

.p-contact__check .wpcf7-list-item-label {
	display: inline-block;
	height: 20px;
	line-height: 20px;
	padding-left: 40px;
	position: relative;
}

.p-contact__check .wpcf7-list-item-label::before {
	background: #fff;
	border: 2px solid;
	box-sizing: border-box;
	content: "";
	display: block;
	height: 20px;
	left: 0;
	position: absolute;
	top: 0;
	width: 20px;
}

.p-contact__check input[type=checkbox]:checked + .wpcf7-list-item-label::after {
	border-right: 2px solid #264053;
	border-top: 2px solid #264053;
	content: "";
	display: block;
	height: 10px;
	left: 5px;
	position: absolute;
	top: -2px;
	transform: rotate(135deg);
	width: 20px;
}

.p-contact__submitWrap {
	display: flex;
	justify-content: center;
}

.p-contact__submit {
	background: #264053;
	border: 2px solid #264053;
	border-radius: 30px;
	color: #fff;
	display: grid;
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
	justify-content: center;
	letter-spacing: 0.075em;
	line-height: 1;
	margin-inline: auto;
	margin-top: 24px;
	place-content: center;
	position: relative;
	position: relative;
	text-align: center;
	transition: 0.3s all ease;
}

.p-contact__submit .wpcf7-spinner {
	display: none;
	visibility: hidden !important;
}

.p-contact__submit input {
	height: 100%;
	letter-spacing: 0.075em;
	padding: 12px 56px 12px 16px;
	width: 100%;
}

.p-contact__submit .c-linkBtn__right {
	background: #fff;
	border-radius: 50%;
	display: grid;
	height: 24px;
	padding-left: 4px;
	place-content: center;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
}

.p-contact__submit .c-linkBtn__triangle {
	background-color: #264053;
	clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
	height: 14px;
	pointer-events: none;
	width: 10px;
}

.p-contact__from {
	padding-inline: 20px;
}

.wpcf7 form.invalid .wpcf7-response-output {
	border: 0 solid #000;
}

.wpcf7 form .wpcf7-response-output {
	color: #d92525;
	text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output {
	display: none;
}

.p-orderThanks {
	margin-inline: auto;
	margin-top: 32px;
	max-width: 100%;
	width: 760px;
}

.p-order-thanks__inner {
	margin-inline: auto;
	max-width: 100%;
	padding-inline: 12px !important;
	width: 100%;
}

.p-orderThanks__image {
	margin-inline: auto;
	margin-top: 24px;
	max-width: 100%;
	width: 400px;
}

.p-orderThanks__ttl {
	font-size: 28px;
	line-height: 1;
	padding: 0 !important;
	text-align: center;
}

.p-orderThanks__ttl br {
	display: none;
}

.p-orderThanks__box {
	background: rgba(202, 162, 127, 0.5);
	border-radius: 8px;
	display: grid;
	margin-top: 24px;
	padding: 20px;
}

.p-orderThanks__box h3 {
	color: #fff;
	font-family: "Roboto", sans-serif;
	font-size: 24px;
	text-align: center;
}

.p-orderThanks__box p {
	font-size: 18px;
	line-height: 2;
	text-align: center;
}

.p-orderThanks__bottom {
	display: grid;
	margin-top: 32px;
	place-content: center;
}

.p-orderThanks__grid {
	display: grid;
	gap: 16px;
	margin-top: 16px;
}

.p-orderThanks__gridBr {
	display: none;
}

.p-performance {
	margin-top: 24px;
}

.p-performance__body {
	margin-top: 24px;
}

.p-performance__wrap h3 {
	font-family: "Roboto", sans-serif;
	font-size: 22px;
	font-weight: 600;
	text-align: center;
}

.p-performance__wrap {
	margin-inline: auto;
	max-width: 100%;
	width: 780px;
}

.p-performance__textWrap {
	display: grid;
	gap: 32px;
	margin-top: 32px;
	padding-inline: 20px;
	text-align: center;
}

.p-performance__text {
	display: grid;
	gap: 0rem;
}

.p-performance__text p {
	font-family: "Roboto", sans-serif;
	font-size: 18px;
}

.p-performance__mainImage {
	margin-top: 32px;
}

.p-philosophy {
	margin-top: 32px;
}

.p-philosophyMainTtl {
	font-family: "Roboto", sans-serif;
	font-size: 22px;
	line-height: 1.8;
	text-align: center;
}

.p-philosophy__inner {
	margin-inline: auto;
	max-width: 100%;
	width: 1080px;
}

.p-philosophy__items {
	display: grid;
	gap: 32px;
	margin-top: 36px;
	padding-bottom: 64px;
}

.p-philosophy__item {
	display: grid;
	gap: 32px;
}

.p-philosophy__item p {
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	text-align: center;
}

.p-philosophy__item-different {
	display: grid;
	gap: 0;
}

.p-philosophy__item-different span {
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	text-align: center;
}

.p-company {
	margin-top: 24px;
}

.p-company__inner {
	background: #F8F5E7;
	margin-inline: auto;
	margin-top: 32px;
	max-width: 100%;
	padding: 0 20px;
	width: 1080px;
}

.p-company__inner .p-company__lists {
	margin-inline: auto;
	max-width: 100%;
	width: 960px;
}

.p-company__inner .p-company__lists ul li {
	display: block;
	padding-bottom: 16px;
	position: relative;
}

.p-company__inner .p-company__lists ul li:not(:first-child) {
	padding-bottom: 16px;
	padding-top: 16px;
}

.p-company__inner .p-company__lists ul li:not(:last-child)::after {
	background: #CAA27F;
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-company__inner .p-company__lists ul li .p-company__list--label {
	display: block;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	padding-left: 10px;
	position: relative;
	width: 120px;
}

.p-company__inner .p-company__lists ul li .p-company__list--label::after {
	background: #CAA27F;
	border-radius: 4px;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
}

.p-company__inner .p-company__lists ul li .p-company__list--text {
	width: 100%;
}

.p-company__inner .p-company__lists ul li .p-company__list--text p {
	font-size: 18px;
	margin-top: 16px;
}

.p-company__inner .p-company__lists ul li .p-company__list--text .p-company__list--attention {
	display: block;
	font-size: 14px;
	margin-top: 8px;
}

.p-company__ceoBr {
	display: block;
}

.p-company__list--textBr {
	display: block;
}

.p-youtube__swiper--container {
	min-width: inherit;
	overflow: hidden;
	padding-bottom: 56px;
}

.p-youtube__swiper--container .swiper-pagination {
	bottom: 0 !important;
	display: flex;
}

.yss-container {
	margin: 0 auto;
	overflow: hidden;
	padding: 0;
	position: relative;
	width: 100%;
}

.yss-thumb-img {
	transition: 0.3s all ease;
}

.yss-video-trigger {
	cursor: pointer;
	display: block;
	width: 100%;
}

/* モバイル・タブレット (1023px以下): スライダー */

.yss-layout-switcher {
	overflow: hidden; /* Swiperの基本設定 */
}

/* PC (1024px以上): グリッド */

.yss-thumb-mock {
	height: 100%;
	overflow: visible;
	width: 100%;
}

.yss-thumb-container {
	aspect-ratio: 9/16;
	border-radius: 40px;
	display: flex;
	overflow: hidden;
	padding: 3px;
	position: relative;
}

.yss-thumb-container::after {
	background: url(../img/common/mock_up__iphone.webp) center center/cover no-repeat;
	content: "";
	height: 100%;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.yss-thumb-container .ys-thumb-image {
	border-radius: 40px;
	height: 99%;
	left: 0;
	overflow: hidden;
	top: 0;
	width: 99%;
}

.yss-thumb-container .ys-thumb-image img {
	-o-object-fit: cover;
	border-radius: 40px;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yss-play-overlay {
	align-items: center;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 50px;
	display: flex;
	height: 100%;
	justify-content: center;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2;
}

.yss-play-overlay .yss-play-btn {
	align-items: center;
	background: #c4302b;
	border-radius: 50%;
	color: white;
	display: flex;
	font-size: 40px;
	height: 60px;
	justify-content: center;
	padding-left: 5px;
	position: relative;
	width: 60px;
}

.yss-play-overlay .yss-play-btn::after {
	background: #fff;
	clip-path: polygon(80% 50%, 0 0, 0 100%);
	content: "";
	height: 30px;
	left: 60%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
}

.yss-title-text {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	background: #fff;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
	bottom: 0;
	color: inherit;
	color: #264053;
	display: block;
	display: -webkit-box;
	font-size: 14px;
	font-weight: bold;
	left: 50%;
	line-height: 1.4;
	margin-top: 10px;
	overflow: hidden;
	padding: 0.625rem 1.5625rem 1.875rem;
	position: absolute;
	text-align: center;
	transform: translateX(-50%);
	width: 100%;
}

/* =========================================
 * モーダル表示 (Modal)
 * ========================================= */

.yss-modal {
	background: rgba(0, 0, 0, 0.88);
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999999;
}

.yss-modal-inner {
	height: 75vh;
	margin: 3vh auto;
	max-width: 400px;
	position: relative;
	width: 90%;
}

.yss-modal-close {
	color: #fff;
	cursor: pointer;
	font-size: 35px;
	line-height: 1;
	position: absolute;
	right: 0;
	top: -45px;
}

#yss-modal-video-container {
	background: #000;
	border-radius: 10px;
	height: 100%;
	overflow: hidden;
	width: 100%;
}

#yss-modal-video-container iframe {
	border: none;
	height: 100%;
	width: 100%;
}

#yss-modal-close {
	color: #fff;
	display: flex;
	font-size: 32px;
	font-weight: bold;
	justify-content: right;
	text-align: right;
}

/* =========================================
 * 取得失敗
 * ========================================= */

.p-orderThanks__ttl {
	padding-top: 32px;
}

.yss-errorWrap {
	border: 2px solid red;
	border-radius: 16px;
	display: grid;
	gap: 16px;
	margin-inline: auto;
	max-width: 732px;
	padding: 20px;
	text-align: center;
	width: calc(100% - 40px);
}

.yss-errorWrap h3 {
	align-items: center;
	display: flex;
	flex-direction: column;
	font-size: 20px;
	font-weight: bold;
	justify-content: center;
	margin-bottom: 8px;
}

.yss-errorWrap h3 .yss-errorFtext {
	display: block;
	font-size: 20px;
	white-space: nowrap;
}

.yss-errorWrap h3 .yss-errorText {
	font-size: 20px;
}

.yss-error {
	display: grid;
	gap: 16px;
}

.yss-error p {
	font-size: 18px;
	line-height: 1.7;
	text-align: center;
}

.u-spBr {
	display: block;
}

.u-pcBr {
	display: none;
}

@media (prefers-reduced-motion: reduce) {

html:focus-within {
	scroll-behavior: auto;
}

*,
*::before,
*::after {
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	scroll-behavior: auto !important;
	transition-duration: 0.01ms !important;
}

}

@media (any-hover: hover) {

.c-linkBtn:hover {
	background: #fff;
	color: #CAA27F;
}

.c-linkBtn:hover .c-linkBtn__right {
	background: #CAA27F;
}

.c-linkBtn:hover .c-linkBtn__triangle {
	background: #fff;
}

.c-linkBtn__dark:hover {
	color: #264053;
}

.c-linkBtn__dark:hover .c-linkBtn__right {
	background: #264053;
}

.c-linkBtn__dark:hover .c-linkBtn__triangle {
	background: #fff;
}

.c-orderBtn:hover {
	background: #fff;
	color: #CAA27F;
}

.c-orderBtn:hover .c-linkBtn__right {
	background: #CAA27F;
}

.c-orderBtn:hover .c-linkBtn__triangle {
	background: #fff;
}

.c-orderBtn__dark:hover {
	color: #264053;
}

.c-orderBtn__dark:hover .c-orderBtn__right {
	background: #264053;
}

.c-orderBtn__dark:hover .c-orderBtn__triangle {
	background: #fff;
}

.c-returnBtn:hover {
	background: #fff;
	color: #CAA27F;
}

.c-returnBtn:hover .c-returnBtn__text {
	color: #264053;
}

.c-returnBtn:hover .c-returnBtn__left {
	background-image: url(../img/common/icon_return_btn__secondary.png);
}

.c-productBuyBtn .c-productBuyBtn__link:hover {
	background: #fff;
}

.c-productBuyBtn .c-productBuyBtn__link:hover .c-productBuyBtn__link-text {
	color: #CAA27F;
}

.c-productBuyBtn .c-productBuyBtn__link:hover .c-productBuyBtn__link-icon {
	background-color: #CAA27F;
}

.c-text__underline:hover::after {
	width: 100%;
}

.c-pager .prev:hover::after {
	border-color: #fff;
}

.c-pager .next:hover::after {
	border-color: #fff;
}

.p-product__item:hover .p-product__item--image img {
	transform: scale(1.1);
}

.p-product__maker:hover {
	background: #CAA27F;
	color: #fff;
}

.p-member__archive .p-archiveMember--link:hover .p-archiveMember--image img {
	transform: scale(1.1);
}

.p-youtube-archive .p-youtube__item--link:hover {
	background: #fff;
	color: #CAA27F;
}

.p-contact__submit:hover {
	background: #fff;
	color: #264053;
}

.p-contact__submit:hover .c-linkBtn__right {
	background: #264053;
}

.p-contact__submit:hover .c-linkBtn__triangle {
	background: #fff;
}

.yss-video-trigger:hover .yss-thumb-img {
	transform: scale(1.05);
}

}

@media (hover: hover) {

.c-pager .page-numbers:hover,
.c-pager .prev:hover,
.c-pager .next:hover {
	background: #CAA27F;
	color: #fff;
}

.p-news__list--link:hover::after {
	width: 100%;
}

}

@media (width >= 650px) {

.p-member__swiper-container {
	width: 1080px;
}

.p-member__swiper-container .jsMemberSwiper .p-member__slide {
	padding-inline: 10px;
}

.p-member__item {
	min-height: 280px;
	width: 480px;
}

.p-member__item .p-member__info-item--nameWrapSp {
	display: block;
}

.p-member__item .p-member__info-item--nameWrapPc {
	display: none;
}

.p-member__item .p-member__infoHead {
	padding: 8px 22px;
}

.p-member__item .p-member__name-en {
	font-size: 16px;
}

.p-member__item .p-member__name-jp {
	font-size: 22px;
}

.p-member__item .p-member__infoHeadingLogo {
	width: 48px;
}

.p-member__item .p-member__info-item-numb {
	font-size: 24px;
}

.p-member__item .p-member__item-content {
	display: flex;
	flex-direction: row-reverse;
	gap: 12px;
	min-height: 176px;
	padding: 0 10px;
}

.p-member__item .p-member__item-imageContainer {
	margin-top: 0px;
	width: 380px;
}

.p-member__item .p-member__info-itemLists {
	padding-bottom: 12px;
	padding-top: 12px;
}

.p-member__item .p-member__info-label {
	font-size: 18px;
}

.p-member__item .p-member__info-value {
	font-size: 18px;
}

}

@media (width >= 1080px) {

.p-member__swiper-container {
	max-width: 100%;
	padding-bottom: 0;
	width: 1040px;
}

.p-member__swiper-container .jsMemberSwiper .swiper-wrapper {
	align-items: center;
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr 1fr;
	justify-content: center;
	margin-inline: auto;
}

.p-member__swiper-container .jsMemberSwiper .p-member__slide {
	padding: 0;
}

.p-member__swiper-container .swiper-pagination {
	display: none;
	opacity: 0;
}

}

@media ((width <= 460px)) {

.p-orderThanks__ttl br {
	display: block;
}

}

@media (min-width: 380px) {

.p-drawer__lists {
	gap: 24px;
	padding-top: 0px;
}

.yss-modal-inner {
	height: 80vh;
	width: 80%;
}

}

@media (min-width: 400px) {

.p-philosophy__item p {
	font-size: 18px;
}

.p-philosophy__item-different span {
	font-size: 18px;
}

.p-company__inner .p-company__lists ul li .p-company__list--text p {
	font-size: 18px;
}

.p-company__inner .p-company__lists ul li .p-company__list--text .p-company__list--attention {
	font-size: 16px;
}

.p-company__list--textBr {
	display: none;
}

}

@media screen and (min-width: 425px) {

.yss-errorWrap h3 {
	flex-direction: row;
}

}

@media (min-width: 460px) {

.p-orderThanks__gridBr {
	display: block;
}

}

@media screen and (min-width: 500px) {

.c-pager .page-numbers {
	font-size: 14px;
	height: 32px;
	width: 32px;
}

.c-pager .dots {
	height: 32px;
	width: 32px;
}

.c-pager .prev {
	height: 32px;
	margin-right: 16px;
	width: 32px;
}

.c-pager .prev::after {
	height: 10px;
	width: 10px;
}

.c-pager .next {
	height: 32px;
	margin-left: 16px;
	width: 32px;
}

.c-pager .next::after {
	height: 10px;
	width: 10px;
}

.p-events__archive .eventNavRow {
	height: 54px;
	max-width: 100%;
}

}

@media (min-width: 500px) {

.p-company__ceoBr {
	display: none;
}

}

@media screen and (min-width: 768px) {

html {
	font-size: 1.3333333333vw;
}

.p-page {
	min-height: calc(100vh - 70px);
	padding-top: 70px;
}

.c-sectionTtl {
	font-size: 40px;
}

.c-subSectionTtl {
	font-size: 0rem;
}

.c-subSectionTtl::after {
	font-size: 1.75rem;
}

.c-productBuyBtn .c-productBuyBtn__link {
	width: inherit;
}

.c-postPerChange {
	margin-top: 56px;
}

.p-drawer__btn {
	top: 15px;
}

.p-header {
	height: 70px;
}

.p-header__inner {
	padding: 0 20px;
}

.p-header__logo {
	width: 64px;
}

.p-header__list--youtube {
	width: 80px;
}

.p-headerSns {
	display: flex;
}

.p-fv__inner {
	padding-top: 70px;
}

.p-fvSwiper__container .p-fv__swiper--pagination {
	bottom: -40px !important; /* 位置：下部 */
}

.p-fvSwiper__container .p-fv__swiper--pagination .swiper-pagination-bullet {
	height: 8px !important;
}

.p-fvSwiper__container .p-fv__swiper--pagination .swiper-pagination-bullet::after {
	height: 8px !important;
}

.jsFvSwiper {
	padding-top: 100px;
}

.jsFvSwiper .swiper-slide {
	max-height: calc(100svh - 170px);
}

.p-news {
	padding-bottom: 100px;
	padding-top: 80px;
}

.p-news__content {
	margin-top: 40px;
}

.p-news__list--link {
	grid-template-columns: 1fr;
	padding-bottom: 16px;
}

.p-news__list--time {
	font-size: 16px;
}

.p-news__list--ttl {
	font-size: 20px;
}

.p-news-bottom {
	margin-top: 64px;
}

.p-youtube {
	padding: 56px 0 100px;
}

.p-youtube__swiper--container {
	margin-top: 56px;
}

.p-youtube__swiper--container .p-youtube__body {
	margin-top: 80px;
	text-align: center;
}

.p-youtube__body .p-youtube__body--ttl {
	font-size: 1.5rem;
}

.p-youtube__body .p-youtube__body--text {
	font-size: 1.125rem;
}

.p-youtube__bottom {
	margin-top: 56px;
}

.p-product {
	padding-bottom: 100px;
	padding-top: 56px;
}

.p-product__inner {
	padding: 0 20px;
}

.p-product__swiper--container .jsProductSwiper .swiper-wrapper {
	gap: 40px;
}

.p-product__swiper--container .jsProductSwiper .swiper-slide {
	height: auto;
	padding: 0;
}

.p-product__items {
	margin-top: 56px;
	padding-bottom: 0;
}

.p-member {
	padding: 56px 0 160px;
}

.p-footer__sns {
	margin-top: 0;
}

.p-footer__copy {
	font-size: 16px;
	margin-top: 8px;
}

.p-news-archive {
	padding-top: 70px;
}

.p-news__single {
	padding-top: 70px;
}

.p-news__single .p-news__list--content {
	padding-top: 56px;
}

.p-news__single .p-news__list--title {
	font-size: 22px;
}

.p-news__single .p-news__content--body p {
	font-size: 20px;
	margin-top: 22px;
}

.p-product__images {
	margin-top: 0;
	padding-bottom: 0;
}

.p-newsMain__swiper--container .swiper-singlePagination__news {
	display: none;
}

.jsNewsThumbSwiper {
	display: grid;
}

.p-product__archive {
	padding-top: 70px;
}

.p-product__archive .p-product__items {
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	margin: 56px auto 0;
	max-width: 100%;
	width: 100%;
}

.p-product__single {
	padding-top: 70px;
}

.p-product__single .p-product__container {
	margin-top: 56px;
}

.p-product__single .p-product__content {
	flex-direction: row;
	gap: 24px 40px;
	width: 1280px;
}

.p-product__singleTtl {
	font-size: 22px;
	margin-top: 0;
	width: 100%;
}

.p-product__singleTtl h2 {
	font-size: 26px;
}

.p-product__singleDescription {
	font-size: 20px;
	padding-top: 24px;
}

.p-product__images {
	max-width: 100%;
	width: 45%;
}

.p-product__singleContent {
	margin-top: 0;
	max-width: 100%;
	width: 55%;
}

.p-productMain__swiper--container .swiper-singlePagination__Product {
	display: none;
}

.jsProductThumbSwiper {
	display: grid;
}

.p-product-single__bottom {
	padding: 120px 0;
}

.p-product__makerWrap {
	margin-top: 10px;
}

.p-member__archive {
	padding-top: 70px;
}

.p-member__archive .p-member__container {
	margin-top: 56px;
}

.p-member__archive .p-archiveMember__items {
	grid-template-columns: 1fr;
	margin-inline: auto;
	max-width: 100%;
	width: 960px;
}

.p-member__archive .p-archiveMember__item {
	justify-content: left;
}

.p-member__archive .p-archiveMember__item:nth-child(odd) .p-archiveMember--link .p-archiveMember__item--infoWrap {
	align-items: start;
}

.p-member__archive .p-archiveMember__item:nth-child(even) {
	justify-content: right;
}

.p-member__archive .p-archiveMember__item:nth-child(even) .p-archiveMember--link {
	display: flex;
	flex-direction: row-reverse;
}

.p-member__archive .p-archiveMember__item:nth-child(even) .p-archiveMember--link .p-archiveMember__item--infoWrap {
	align-items: end;
}

.p-member__archive .p-archiveMember--link {
	display: flex;
	flex-direction: row;
	gap: 40px;
	justify-content: space-between;
	width: 100%;
}

.p-member__archive .p-archiveMember__item--info {
	padding: 0 24px;
	width: calc(100% - 300px);
}

.p-member__archive .p-archiveMember--ttl h3 {
	font-size: 30px;
}

.p-member__archive .p-archiveMember--ttl span {
	font-size: 18px;
}

.p-member__archive .p-archiveMember--list ul li p,
.p-member__archive .p-archiveMember--list ul li span {
	font-size: 20px;
}

.p-member__single {
	padding-top: 70px;
}

.p-member__single .p-member__container {
	margin-top: 56px;
}

.p-member__single .p-member__heading span {
	font-size: 18px;
}

.p-member__single .p-subSectionTtl__singleMember {
	font-size: 30px;
}

.p-member__single .p-memberSingle__content {
	margin-top: 64px;
}

.p-member__single .p-memberSingle__item {
	align-items: self-start;
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr 1fr;
	margin-top: 16px;
	padding: 0;
}

.p-member__single .p-memberSingle__item--info {
	padding-inline: 0;
}

.p-member__single .p-memberSingle__item--list {
	max-width: 100%;
}

.p-memberSingle__item--label {
	display: block;
}

.p-memberSingle__item--label span {
	display: inline-flex;
	font-size: 20px;
	max-width: inherit;
}

.p-memberSingle__item--answer {
	font-size: 20px;
	padding-left: 12px;
	text-align: left;
}

.p-youtube-archive {
	min-height: calc(100vh - 200px);
	padding-bottom: 100px;
	padding-top: 100px;
}

.p-youtube-archive .p-youtube__items {
	gap: 16px;
	grid-template-columns: 1fr 1fr;
}

.p-youtube-archive .p-youtube__item--body h3 {
	font-size: 1.25rem;
}

.p-youtube-archive .p-youtube__item--text {
	font-size: 1rem;
}

.p-events__archive {
	padding-top: 70px;
}

.p-events__archive {
	min-height: calc(100vh - 200px);
	padding-bottom: 100px;
}

.p-events__archive .p-events__container {
	margin-top: 56px;
}

.p-events__archive .eventNavRow-year select {
	width: 118px;
}

.p-events__archive .eventNavRow-month select {
	width: 72px;
}

.p-events__archive .eventNavRow-month .eventNav__prev {
	left: -70%;
	top: 48%;
}

.p-events__archive .eventNavRow-month .eventNav__next {
	right: -64%;
	top: 48%;
}

.p-events__archive .eventNavRow {
	max-width: 100%;
}

.p-events__archive .eventNavRow select {
	font-size: 32px;
	height: 40px;
	max-width: 100%;
}

.p-events__archive .eventListCal {
	gap: 28px;
}

.p-events__archive .eventListCal__row {
	padding: 10px 16px;
}

.p-events__archive .eventListCal__day {
	font-size: 20px;
}

.p-events__archive .eventListCal__event a {
	font-size: 18px;
}

.p-events__archive .eventListCal__empty {
	font-size: 18px;
}

.p-contact__form {
	margin-top: 56px;
}

.p-contact__label {
	font-size: 20px;
	padding-left: 24px;
	width: inherit;
}

.p-contact__label:after {
	display: grid;
}

.p-contact__input input {
	font-size: 18px;
}

.p-contact__input select {
	font-size: 20px;
}

.p-contact__input textarea {
	font-size: 18px;
}

.p-contact__check label {
	font-size: 1rem;
}

.p-orderThanks {
	margin-top: 56px;
}

.p-orderThanks__image {
	margin-top: 40px;
}

.p-orderThanks__ttl {
	font-size: 34px;
}

.p-orderThanks__box {
	padding: 24px;
}

.p-orderThanks__box h3 {
	font-size: 28px;
}

.p-orderThanks__box p {
	font-size: 20px;
}

.p-orderThanks__bottom {
	margin-top: 56px;
}

.p-performance {
	margin-top: 56px;
}

.p-performance__body {
	margin-top: 56px;
}

.p-performance__wrap h3 {
	font-size: 26px;
}

.p-performance__textWrap {
	margin-top: 64px;
}

.p-performance__text {
	gap: 32px;
}

.p-performance__text p {
	font-size: 20px;
}

.p-performance__mainImage {
	margin-top: 56px;
}

.p-philosophy {
	margin-top: 56px;
}

.p-philosophyMainTtl {
	font-size: 26px;
}

.p-philosophy__items {
	margin-top: 64px;
}

.p-philosophy__item p {
	font-size: 20px;
}

.p-philosophy__item-different {
	gap: 32px;
}

.p-philosophy__item-different span {
	font-size: 20px;
}

.p-company {
	margin-top: 0;
}

.p-company__inner {
	margin-top: 56px;
	padding: 48px 32px;
}

.p-company__inner .p-company__lists ul li {
	display: flex;
	padding-bottom: 32px;
}

.p-company__inner .p-company__lists ul li:not(:first-child) {
	padding-bottom: 32px;
	padding-top: 32px;
}

.p-company__inner .p-company__lists ul li .p-company__list--label {
	font-size: 20px;
	padding-left: 0;
	width: 130px;
}

.p-company__inner .p-company__lists ul li .p-company__list--label::after {
	display: none;
}

.p-company__inner .p-company__lists ul li .p-company__list--text p {
	font-size: 20px;
	margin-top: 0;
	width: inherit;
}

.p-company__inner .p-company__lists ul li .p-company__list--text .p-company__list--attention {
	font-size: 18px;
}

#yss-modal-video-container {
	border: 3px solid #fff !important;
}

.yss-errorWrap h3 {
	margin-bottom: 24px;
}

.yss-errorWrap h3 .yss-errorFtext {
	font-size: 24px;
}

.yss-errorWrap h3 .yss-errorText {
	font-size: 24px;
}

.yss-error p {
	font-size: 20px;
}

.u-spBr {
	display: none;
}

.u-pcBr {
	display: block;
}

}

@media screen and (min-width: 1024px) {

.p-drawer {
	display: none;
}

.p-sideSns {
	display: block;
}

.p-header__inner {
	padding: 0 40px;
}

.p-header__right {
	display: flex;
}

.p-header__list--youtube {
	width: 100px;
}

.p-headerSns {
	display: flex;
}

.p-youtube__swiper--container {
	padding-inline: 20px;
}

.p-product__swiper--container {
	padding-bottom: 0px;
}

.p-product__swiper--container .jsProductSwiper {
	max-width: 100%;
	padding: 0 20px;
	width: 1280px;
}

.p-product__swiper--container .jsProductSwiper .swiper-wrapper {
	display: grid;
	gap: 48px;
	grid-template-columns: repeat(3, 1fr);
	transform: none !important;
	width: 100% !important;
}

.p-product__swiper--container .jsProductSwiper .swiper-pagination__product {
	display: none;
}

.p-product__swiper--container .swiper-pagination {
	display: none;
	opacity: 0;
}

.p-product__bottom {
	margin-top: 56px;
}

.p-member__bottom {
	margin-top: 56px;
}

.p-footer__inner {
	padding-inline: 20px;
}

.footer-menu01 {
	order: 2;
}

.footer-menu02 {
	order: 1;
}

.footer-menu03 {
	order: 3;
}

.p-footer__content {
	align-items: center;
	flex-direction: row;
	gap: 0;
	justify-content: space-evenly;
}

.p-footer__menus {
	border-left: 1px solid #F8F5E7;
	border-right: 1px solid #F8F5E7;
	width: 48%;
}

.p-footer__menu ul {
	justify-content: left;
}

.p-news-archive {
	min-height: calc(100vh - 200px);
	padding-bottom: 100px;
}

.p-news__single {
	min-height: calc(100vh - 200px);
	padding-bottom: 120px;
}

.p-product__archive {
	min-height: calc(100vh - 200px);
	padding-bottom: 100px;
}

.p-product__single {
	min-height: calc(100vh - 200px);
}

.p-product__single .p-product__content {
	gap: 0 56px;
}

.p-member__archive {
	min-height: calc(100vh - 200px);
	padding-bottom: 100px;
}

.p-member__archive .p-archiveMember__item {
	padding-inline: 20px;
}

.p-member__single {
	min-height: calc(100vh - 200px);
	padding-bottom: 6.25rem;
}

.p-member__single .p-memberSingle__content {
	flex-direction: row;
	gap: 0;
	grid-template-columns: 1fr;
	justify-content: space-between;
	margin-inline: auto;
	max-width: 100%;
	padding: 0 20px;
}

.p-member__single .p-memberSingle__item {
	align-items: self-start;
	display: grid;
	gap: 80px;
	grid-template-columns: 1fr 1fr;
	padding: 0;
}

.p-member__single .p-memberSingle__item--list {
	padding-inline: 0;
}

.p-memberSingle__item--imageAnnotation {
	font-size: 20px;
	padding-top: 56px;
}

.p-youtube-archive .p-youtube__items {
	grid-template-columns: 1fr 1fr 1fr;
}

.p-youtube-archive .p-youtube__item--text {
	font-size: 0.875rem;
}

.p-youtube__swiper--container {
	padding-bottom: 0;
}

.p-youtube__swiper--container .swiper-pagination {
	display: none;
}

.yss-layout-switcher .swiper-wrapper {
	display: grid;
	gap: 80px 64px;
	grid-template-columns: repeat(3, 1fr); /* 3列表示 */
	transform: none !important; /* Swiperの移動を無効化 */
	width: 100% !important;
}

.yss-layout-switcher .swiper-slide {
	margin-right: 0 !important;
	overflow: visible;
	width: 100% !important;
}

}

@media (min-width: 1200px) {

html {
	font-size: 16px;
}

}

@media screen and (min-width: 1200px) {

.p-footer__menu ul li a {
	font-size: 16px;
}

}

@media (min-width: 1620px) {

.p-member__swiper-container .jsMemberSwiper .swiper-wrapper {
	gap: 48px;
	grid-template-columns: 1fr 1fr 1fr;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes progress-bar {

0% {
	width: 0%;
}

100% {
	width: 100%;
}

}

