*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
	display: block;
}

img {
	border: none;
	vertical-align: bottom;
}

a {
	cursor: pointer;
	text-decoration: none;
}

.sp {
	display: block;
}

@media screen and (min-width: 1200px) {
	.sp {
		display: none;
	}
}

/* --------------------------------------------
 * スクロールアニメーション用
 * -------------------------------------------- */

.fadeInUp {
	-webkit-transform: translateY(20px);
	opacity: 0;
	transform: translateY(20px);
	transition: 800ms;
}

.fadeInUp.is-scrolled {
	-webkit-transform: translateY(0);
	opacity: 1;
	transform: translateY(0);
}

/* --------------------------------------------
 * メディアクエリー
 * -------------------------------------------- */

html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

body {
	color: #333;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.5;
}

img {
	height: auto;
	max-width: 100%;
}

a {
	color: inherit;
}

/* --------------------------------------------
 * ヘッダー
 * -------------------------------------------- */

.l-header {
	position: fixed;
	width: 100%;
	z-index: 1000;
	top: 2%;
}

.l-header__inner {
	align-items: center;
	display: flex;
	height: 80px;
	justify-content: space-between;
	padding-left: 40px;
	padding-right: 40px;
}

.l-header__x{
	position: absolute;
	right: 1%;
	max-width: 86px;
}

.l-header__logo img {
	height: 40px;
	width: auto;
}

.l-header__logo img:hover {
	opacity: 0.8;
	transition: all 0.3s ease 0s;
}

.l-header__sub {
	color: #fff;
	display: flex;
	font-size: 14px;
	font-weight: 600;
	gap: 24px;
	line-height: 1.71429;
}

.l-header__subItem {
	display: block;
}

.l-header__subItem:hover {
	opacity: 0.8;
	transition: all 0.3s ease 0s;
}

/* --------------------------------------------
 * インナー
 * -------------------------------------------- */

.l-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	width: 1200px;
}

/* --------------------------------------------
 * フッター
 * -------------------------------------------- */

.l-footer-top__inner {
	background: #ECE6DC;
	padding: 40px 0;
}

.l-footer-top__box {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: auto;
	max-width: 1200px;
	padding-left: 16px;
	padding-right: 16px;
	width: 100%;
}

.l-footer-bottom__inner {
	background: #E4E1DA;
	padding: 32px 16px;
}

.l-footer__inner {
	padding: 18px 0 20px;
}

.l-footer-menu__inner {
	padding: 54px 0 42px;
}

.l-footer__logo {
	text-align: center;
}

.l-footer__logo-link {
	color: #fff;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.l-footer__logo-link:hover {
	opacity: 0.7;
}

.l-footer__sns:hover {
	opacity: 0.7;
}

.l-footer__nav {
	text-align: center;
}

.l-footer__navList {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 32px;
	justify-content: center;
}

.l-footer__navLink {
	align-items: center;
	color: #333;
	display: inline-flex;
	font-size: 14px;
	font-weight: 500;
	gap: 4px;
	position: relative;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.l-footer__navLink:hover {
	opacity: 0.6;
}

.l-footer__navLink.is-external::after {
	background: center/contain no-repeat url(/wp-content/themes/ikemen/images/cpn/dreamoire/icon-external.svg);
	content: "";
	display: inline-block;
	height: 24px;
	margin-left: 16px;
	width: 24px;
}

.l-footer__copy {
	color: #666;
	font-family: "Lato", sans-serif;
	font-size: 12px;
	letter-spacing: 0;
	margin-bottom: 2px;
	margin-top: 24px;
	text-align: center;
}

/* --------------------------------------------
 * 追従ボタン
 * -------------------------------------------- */

html {
	scroll-behavior: smooth;
}

#floating_button {
	bottom: 48px;
	color: #333;
	left: 50%;
	opacity: 0;
	position: fixed;
	text-decoration: none;
	transform: translateX(-50%);
	transition: all ease 0.3s;
	visibility: hidden;
	z-index: 1;
}

#floating_button.visible {
	opacity: 1;
	visibility: visible;
}

/* --------------------------------------------
 * 見出し
 * -------------------------------------------- */

.c-section-heading {
	display: block;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
	white-space: nowrap;
}

.c-section-heading__ja {
	font-size: clamp(32px, 3vw, 40px);
}

.c-section-heading__en {
	align-items: center;
	color: #D4AF37;
	display: flex;
	font-family: "Lato", sans-serif;
	font-size: clamp(18px, 3vw, 24px);
	justify-content: center;
	margin-top: 4px;
}

.c-section-heading__en.m-left {
	justify-content: left;
}

.c-section-heading__en.m-small {
	font-size: clamp(13px, 3vw, 16px);
}

/* --------------------------------------------
 * 共通ボタン
 * -------------------------------------------- */

.c-btn {
	background: #D4AF37;
	border: 2px solid #D4AF37;
	border-radius: 40px;
	box-shadow: 3px 3px 10px rgba(51, 51, 51, 0.2);
	color: #fff;
	display: flex;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
	font-size: clamp(14px, 3vw, 16px);
	font-weight: bold;
	gap: 8px;
	height: 56px;
	justify-content: center;
	line-height: 54px;
	margin: 0 auto;
	position: relative;
	text-align: center;
	transition: all 300ms linear;
	width: 300px;
}

.c-btn::after {
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	content: "";
	display: block;
	height: 6px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	transition: all 300ms linear;
	width: 6px;
}

.c-btn:hover {
	opacity: 0.7;
	transition: all 0.3s ease 0s;
}

.c-btn.m-white {
	background: #fff;
	border-radius: 40px;
	color: #D4AF37;
}

.c-btn.m-center {
	display: block;
	margin: 0 auto;
}

.c-btn__button-wrapper {
	margin: 0 auto;
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.speechBubble {
	background-color: #ffffff;
	border-radius: 60px;
	color: #d4af37;
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	left: 50%;
	letter-spacing: 0.1em;
	line-height: 1;
	padding: 5px 30px;
	position: absolute;
	text-align: center;
	top: -12px;
	transform: translateX(-50%);
	white-space: nowrap;
	z-index: 1;
}

.speechBubble span {
	font-family: "Lato", sans-serif;
	font-weight: 700;
}

.speechBubble::before {
	border-color: #fff transparent transparent transparent;
	border-style: solid;
	border-width: 8px 8px 0 8px;
	bottom: -6px;
	content: "";
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

/* --------------------------------------------
 * ファーストビュー
 * -------------------------------------------- */

.p-fv {
	position: relative;
}

.p-fv__image > img {
	display: block;
	height: auto;
	width: 100%;
}

.p-fv__button-wrapper {
	bottom: 32px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

/* --------------------------------------------
 * コンセプト
 * -------------------------------------------- */

.p-concept {
	background: #FBF1E0;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
	overflow: hidden;
	padding-bottom: 80px;
	padding-top: 50px;
}

.p-concept__inner {
	margin: 0 auto;
}

.p-concept__image {
	margin-bottom: 40px;
}

.p-concept-item {
	display: block;
	margin-bottom: 60px;
}

.p-concept-item__heading > .text {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.178;
	text-align: center;
}

.p-concept-item__body {
	display: flex;
	justify-content: space-between;
}

.p-concept-item__content {
	display: block;
	padding-top: 40px;
}

.p-concept-item__body {
	width: 100%;
}

.p-concept-item__description {
	font-size: 14px;
	padding-bottom: 16px;
	padding-top: 30px;
	text-align: justify;
}

.p-concept-item__title {
	font-size: clamp(20px, 3vw, 24px);
	font-weight: 700;
	line-height: 2;
}

.p-concept-item__detail {
	font-size: clamp(14px, 3vw, 16px);
	line-height: 2.2;
	margin-top: 8px;
}

.p-concept-item__detail:not(:last-child) {
	margin-bottom: 32px;
}

.p-concept-item__detail span {
	font-weight: 700;
}

/* --------------------------------------------
 * 無限ループスライダー（Swiper）
 * -------------------------------------------- */

.swiper-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	padding-bottom: 100px;
	transition-timing-function: linear;
}

.swiper-wrapper .swiper-slide {
	width: auto;
}

.swiper-wrapper .swiper-slide img {
	-o-object-fit: contain;
	border-radius: 12px;
	height: 100%;
	max-height: 225px;
	max-width: 169px;
	object-fit: contain;
	width: 100%;
}

/* --------------------------------------------
 * 特徴
 * -------------------------------------------- */

.p-feature {
	background: #F8F6F2;
	padding-bottom: 180px;
	padding-top: 108px;
	position: relative; /* 番号のリセット */
}

.p-feature__inner {
	margin: 0 auto;
	max-width: 1040px;
	width: 100%;
}

.p-feature__list {
	counter-reset: feature;
	margin: 80px auto 0;
}

.p-feature-item {
	align-items: center;
	counter-increment: feature;
	display: flex;
	gap: 32px;
	justify-content: space-between;
	padding-left: 64px; /* 偶数行は左右を反転 */ /* ===== 画像側:FEATURE & 仕切り線(疑似要素) ===== */
}

.p-feature-item:not(:last-child) {
	margin-bottom: 120px;
}

.p-feature-item:nth-child(even) {
	padding-left: 0;
	padding-right: 64px;
}

.p-feature-item:nth-child(even) > figure {
	margin-left: auto;
	margin-right: 40px;
	order: 1;
}

.p-feature-item:nth-child(even) > div {
	order: 0;
}

.p-feature-item__picture {
	max-width: 420px;
	position: relative;
	width: 100%; /* 縦線 */ /* "FEATURE 01" */ /* 偶数項目 → 右側へ配置 */
}

.p-feature-item__picture::before {
	background: #D4AF37;
	border-radius: 1px;
	content: "";
	height: 56px;
	left: -44px;
	position: absolute;
	top: 0px; /* 奇数:左側 */
	width: 1px;
}

.p-feature-item__picture::after {
	color: #D4AF37;
	content: "FEATURE " counter(feature, decimal-leading-zero);
	font-family: "Lato", sans-serif;
	font-size: clamp(13px, 3vw, 16px);
	font-weight: 700;
	left: -32px;
	letter-spacing: 0.1em;
	position: absolute;
	top: 182px; /* 奇数:左側 */
	transform: rotate(90deg) translateX(-100%);
	transform-origin: left top;
	white-space: nowrap;
}

.p-feature-item:nth-child(even) .p-feature-item__picture::before {
	left: auto;
	right: -44px;
}

.p-feature-item:nth-child(even) .p-feature-item__picture::after {
	right: -55px;
	top: 583px;
	transform: rotate(90deg);
	transform-origin: right top;
}

.p-feature-item__picture > img {
	vertical-align: bottom;
	width: 100%;
}

.p-feature-item__body {
	width: 44.5%;
}

.p-feature-item__heading {
	letter-spacing: 0.1em;
}

.p-feature-item__heading > .title {
	align-items: center;
	color: #333;
	display: flex;
	font-size: 48px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 40px;
}

.p-feature-item__heading > .title img {
	height: 56px;
	margin-right: 16px;
	width: 56px;
}

.p-feature-item__heading > .text {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 5px;
	margin: -6px 0 20px;
}

.p-feature-item__heading > .text span {
	background-image: linear-gradient(180deg, rgba(234, 217, 165, 0.5019607843) 1.5em, transparent 1.5em);
}

.p-feature-item__description {
	font-size: 16px;
	line-height: 2;
}

.p-feature-item.re_title{
	padding-right: 0;
}
.p-feature-item.re_title:nth-child(even) > figure {
    margin-left: initial;
    margin-right: 0;
    order: 0;
}
.p-feature-deco {
	position: absolute;
	z-index: 0;
}

.p-feature-deco img {
	width: 100%;
}

.p-feature-deco.m-1 {
	right: -8%;
	top: 2%;
	width: clamp(194px, 32vw, 450px);
}

.p-feature-deco.m-2 {
	left: -2%;
	top: 27%;
	width: clamp(80px, 32vw, 300px);
}

.p-feature-deco.m-3 {
	right: -5%;
	top: 46%;
	width: clamp(111px, 32vw, 336px);
}

.p-feature-deco.m-4 {
	left: -1%;
	top: 70%;
	width: clamp(200px, 32vw, 290px);
}

.p-feature-deco.m-5 {
	bottom: 3%;
	right: -1%;
	width: clamp(100px, 32vw, 160px);
}

/* --------------------------------------------
 * リリースタイトル
 * -------------------------------------------- */
.p-feature.release-title{

}

.p-feature.release-title .p-feature-item{
	align-items: flex-start;
	padding-left: 0;
}

.p-feature.release-title .p-feature-item__picture{
	max-width: 510px;
}

.p-feature.release-title .p-feature-item__picture::before, .p-feature.release-title .p-feature-item__picture::after{
	display: none;
}

 .p-feature.release-title .title{
	display: block;
	font-size: 42px;
 }

.p-feature__list > li:nth-child(2) .title {
  font-size: 40px;
}

 .p-feature.release-title .title span{
	display: block;
	font-size: 36px;
	margin-top: 15px;
 }

 .p-feature__list > li:nth-child(3) .title span{
	font-size: 34px;
}
/* --------------------------------------------
 * よくあるご質問
 * -------------------------------------------- */

.p-faq {
	background-color: #F2F0EB;
	padding: 80px 0;
}

.p-faq__inner {
	max-width: 960px;
	width: 100%;
}

.p-faq__list {
	display: flex;
	flex-direction: column;
	margin: 32px 0 0;
}

.p-faq-item__row {
	align-items: center;
	border-bottom: 1px solid #DDDDDD;
	display: flex;
	gap: 16px;
	padding: 12px;
	position: relative; /* --- Q 行（トグル） --- */ /* --- A 行（回答） --- */
}

.p-faq-item__row a {
	text-decoration: underline;
}

.p-faq-item__row a:hover {
	opacity: 0.7;
}

.p-faq-item__row .text {
	flex-grow: 1;
}

.p-faq-item__row.m-q {
	cursor: pointer;
	padding-right: 44px;
}

.p-faq-item__row.m-q.is-open {
	border-bottom: none;
}

.p-faq-item__row.m-q .question {
	color: #333;
	font-family: "Lato", sans-serif;
	font-size: 20px;
	font-weight: 700;
}

.p-faq-item__row.m-q .text {
	font-size: clamp(14px, 3vw, 16px);
}

.p-faq-item__row.m-q::after {
	border-bottom: 2px solid #333;
	border-right: 2px solid #333;
	content: "";
	height: 8px;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	transition: transform 0.2s ease;
	width: 8px;
}

.p-faq-item__row.m-q.is-open::after,
.p-faq-item__row.m-q[aria-expanded=true]::after {
	transform: translateY(-50%) rotate(-135deg);
}

.p-faq-item__row.m-q .text {
	font-weight: 600;
}

.p-faq-item__row.m-q:focus-visible {
	border-radius: 2px;
	outline: 2px solid rgba(0, 0, 0, 0.2);
	outline-offset: 2px;
}

.p-faq-item__row.m-a {
	background-color: #F8F6F2;
	font-size: clamp(14px, 3vw, 16px);
	font-weight: 400;
	padding-right: 44px;
}

.p-faq-item__row.m-a .answer {
	color: #A7A19B;
	font-family: "Lato", sans-serif;
	font-size: 20px;
	font-weight: 700;
}

/* --------------------------------------------
 * 会員特典
 * -------------------------------------------- */

.p-benefit {
	background: #FFF8F0;
	overflow: hidden;
	padding: 80px 0;
}

.p-benefit__inner {
	margin: 0 auto;
	max-width: 720px;
	width: 100%;
}

.p-benefit__list {
	display: flex;
	gap: 80px;
	justify-content: space-between;
	margin: 64px auto 0;
}

.p-benefit-item__heading {
	justify-content: center;
	text-align: center;
}

.p-benefit-item__heading .text {
	background: #fff;
	border: 1.5px solid #D4AF37;
	border-radius: 8px;
	box-sizing: border-box;
	color: #D4AF37;
	display: inline-block;
	font-size: clamp(12px, 3vw, 15px);
	font-weight: 700;
	line-height: 1;
	padding: 8px;
	position: relative; /* ゴールド吹き出し矢印 */ /* ゴールドの縁（下層） */
}

.p-benefit-item__heading .text::after {
	-webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
	background: #fff;
	bottom: -6px;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	content: "";
	height: 8px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 15px;
	z-index: 1;
}

.p-benefit-item__heading .text::before {
	-webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
	background: #D4AF37;
	bottom: -8px;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	content: "";
	height: 8px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 16px; /* 下層に金色の矢印 */
	z-index: 0;
}

.p-benefit-item__picture {
	height: 160px;
	margin: 0 auto;
	max-width: 480px;
	position: relative;
	width: 100%;
	width: 160px;
}

.p-benefit-item__picture::before {
	aspect-ratio: 1/1;
	background: #fff;
	border-radius: 50%;
	content: "";
	inset: 0;
	margin: auto;
	position: absolute;
	z-index: 0;
}

.p-benefit-item__picture > img {
	display: block;
	margin: 0 auto;
	margin-top: 32px;
	position: relative;
	width: 62%;
	z-index: 1;
}

.p-benefit-item__content {
	padding-top: 12px;
	position: relative;
}

.p-benefit-item__content::after {
	background: #333;
	content: "";
	display: block;
	height: 16px;
	margin: 6px auto 18px;
	opacity: 0.6;
	position: absolute;
	top: 178px;
	width: 2px;
}

.p-benefit-item__content {
	align-items: center;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.p-benefit-item__body {
	margin-top: 32px;
}

.p-benefit-item__title {
	font-size: clamp(14px, 3vw, 18px);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
}

.p-benefit-item__detail {
	font-size: clamp(14px, 3vw, 16px);
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.8;
	margin-top: 2px;
	text-align: left;
}

/* =========================================
   IFCダイヤモンド会員特典
   ========================================= */

.p-benefit-diamond {
	background: #FFF;
	border: 2px solid #D4AF37;
	border-radius: 12px;
	margin: 0 auto;
	margin-top: 40px;
	max-width: 720px;
	overflow: hidden;
	position: relative;
	text-align: center;
	width: 100%; /* 見出し */ /* 本文ブロック */ /* ダイヤのイメージ */ /* 下の説明2行 */ /* 仕切り */ /* 下段：IFC説明と注意事項 */
}

.p-benefit-diamond .p-benefit-diamond__heading {
	align-items: center;
	background: #D4AF37;
	border: none;
	color: #fff;
	display: inline-flex;
	font-size: clamp(18px, 3vw, 20px);
	font-weight: 800;
	justify-content: center;
	letter-spacing: 0.1em;
	line-height: 1;
	padding: 24px 0;
	position: relative;
	width: 100%; /* 左右デコレーション */ /* 左デコ */ /* 右デコ */
}

.p-benefit-diamond .p-benefit-diamond__heading::before,
.p-benefit-diamond .p-benefit-diamond__heading::after {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 44px;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
}

.p-benefit-diamond .p-benefit-diamond__heading::before {
	background-image: url(/wp-content/themes/ikemen/images/cpn/dreamoire/diamond-deco--left.svg);
	left: 18px;
}

.p-benefit-diamond .p-benefit-diamond__heading::after {
	background-image: url(/wp-content/themes/ikemen/images/cpn/dreamoire/diamond-deco--right.svg);
	right: 18px;
}

.p-benefit-diamond .p-benefit-diamond__picture {
	height: 240px;
	width: 240px;
}

.p-benefit-diamond__content {
	margin-top: 40px;
	padding: 0 16px 32px; /* 上段テキスト（説明） */ /* 大きなポイント表示行 */
}

.p-benefit-diamond__content > .text:first-of-type {
	color: #D4AF37;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.p-benefit-diamond__content > .text:nth-of-type(2) {
	color: #333;
	font-family: "Lato", sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	margin-top: 18px;
}

.p-benefit-diamond__content > .text:nth-of-type(2) span {
	background: #fff;
	color: #333;
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	margin-right: 16px;
	vertical-align: middle;
}

.p-benefit-diamond__picture {
	margin: 14px auto 56px;
	position: relative;
	width: 200px;
}

.p-benefit-diamond__picture > img {
	display: block;
	height: auto;
	position: relative;
	width: 100%;
	z-index: 1;
}

.p-benefit-diamond__content > .text span {
	font-weight: 700;
}

.p-benefit-diamond__content > .text:nth-of-type(3),
.p-benefit-diamond__content > .text:nth-of-type(4) {
	font-size: clamp(14px, 3vw, 16px);
	letter-spacing: 0.1em;
	line-height: 1.5;
	text-align: left;
}

.p-benefit-diamond__content > .text:nth-of-type(3) {
	margin-top: 8px;
}

.p-benefit-diamond__content > .text:nth-of-type(4) {
	margin-top: 4px;
	opacity: 0.8;
}

.p-benefit-diamond__body {
	text-align: left;
}

.p-benefit-diamond__description {
	margin: 0 auto;
	text-align: left;
}

.p-benefit-diamond__title {
	color: #333;
	font-size: clamp(16px, 3vw, 18px);
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-top: 32px;
}

.p-benefit-diamond__detail {
	color: #333;
	font-size: 14px;
	line-height: 1.9;
	margin-top: 10px;
	padding-left: 1.2em;
}

.p-benefit-diamond__detail > li {
	list-style: none;
	margin-top: 10px;
	position: relative; /* カスタムドット */
}

.p-benefit-diamond__detail > li::before {
	background: #333;
	border-radius: 50%;
	content: "";
	height: 6px;
	left: -1.2em;
	position: absolute;
	top: 0.72em;
	width: 6px;
}

.p-benefit-diamond__detail > li a {
	color: #D4AF37;
	display: inline-block;
	font-size: clamp(14px, 3vw, 16px);
	font-weight: 800;
	font-weight: 400;
	margin-top: -6px;
	padding-bottom: 1px;
	text-decoration: underline;
	transition: opacity 0.2s ease; /* 外部リンクアイコン（↗） */
}

.p-benefit-diamond__detail > li a:hover {
	opacity: 0.7;
}

.p-benefit-diamond__detail > li a::after {
	background: center/contain no-repeat url(/wp-content/themes/ikemen/images/cpn/dreamoire/icon-external--gold.svg);
	content: "";
	display: inline-block;
	height: 24px;
	margin-left: 6px;
	transform: translateY(5px);
	width: 24px;
}

/* --------------------------------------------
 * CTA
 * -------------------------------------------- */

.p-cta {
	overflow: hidden;
	position: relative;
	padding: 60px 0;
}

.p-cta::before {
	background-image: url(/wp-content/themes/ikemen/images/cpn/dreamoire/cta-pop.webp);
	background-position: top right;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	inset: 0;
	position: absolute;
	z-index: 0;
}

.p-cta__inner {
	align-items: stretch;
	display: grid;
	gap: 0;
	grid-template-columns: 1fr;
}

.p-cta__visual {
	margin: 0;
}

.p-cta__body {
	display: flex;
	flex-direction: column;
	position: relative;
	text-align: center;
}

.p-cta__read {
	margin: 30px 0;
}

.p-cta__campaing {
	max-width: 390px;
	margin: 0 auto;
}

.p-cta__arrow {
	max-width: 33px;
	margin: 0 auto;
}

.p-cta__actions {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.p-cta__action {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.p-cta__action.external-link {
	max-width: 320px;
}

.p-cta__copy {
	color: #333;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.5;
	position: relative;
}

.p-cta__banner.repost{
	margin-top: 2.5rem;
	position: relative;
}
.p-cta__banner.repost_item{
	position: absolute;
	top: 5px;
    left: -31px;
    transform: scale(0.7);
}
.p-error {
	color: #d9534f; /* 赤文字 */
	font-size: 13px;
	margin-top: 4px;
}
.p-button {
	background-color: #D4AF37;
	cursor: not-allowed;
	transition: all 0.3s ease;
}

/* --------------------------------------------
 * フォーム
 * ----------[---------------------------------- */
.p-form{
	padding: 10% 0;
	max-width: 960px;
	margin: 0 auto;
}
.p-modal-form__header{
	line-height: 1;
	margin-bottom: 3rem;
}
.p-modal-form__eyebrow{
	font-weight: 700;
	font-size: 1.25rem;
    color: #D4AF37;
	letter-spacing: 2px;
	font-family: "Lato", sans-serif;
}
.p-modal-form__title{
	margin-top: .5rem;
	font-weight: 700;
	letter-spacing: 2.8px;
	font-size: 28px;
}
.p-modal-form{
	border-radius: 40px;
	padding: 80px 120px;
	background-color: #FBF1E0;
}
.p-badge--required{
	padding: 0 0.4rem 0.2rem;
	border-radius: .75rem;
	color: #fff;
	background-color: #D4AF37;
}
.p-field{
	display: flex;
	justify-content: space-between;
}
.p-form .p-field--confirm {
	margin-top: 2rem;
}
.p-label{
	width: 40%;
	font-size: 14px;
	line-height: .75rem;
}
.p-field-input{
    width: 60%;
}
.p-input{
	height: 2rem;
    width: 100%;
	line-height: 1.25rem;
    padding-left: .5rem;
    padding-right: .5rem;
    border: none;
	outline: none;
    border-radius: 5px;
	font-size: 16px;
}
.p-form .p-input:focus{
	outline: 2px solid #D4AF37;
    outline-offset: 1px;
}
.p-form .p-input::placeholder {
color: #888888;
opacity: 1;
}
.p-help{
	margin-top: .5rem;
	letter-spacing: 1.1px;
	font-size: 11px;
	line-height: 1.6;
	color: #666666;
}
.p-actions{
	margin: 3rem auto 0;
    text-align: center;
}
.p-actions .p-button{
    background-color: #D4AF37;
    color: #fff;
    border-radius: 30px;
	letter-spacing: 2px;
	padding: 0.9rem 1.3rem;
	box-shadow: 3px 3px 10px rgba(51, 51, 51, 0.2);
	transition: all 300ms linear;
}
.p-actions .p-button:hover{
    opacity: 0.7;
	cursor: pointer;
}
.p-label.email{
	width: 100%;
}
.p-label__email{
	font-weight: normal;
	margin-top: 1rem;
}
.p-label__text{
	line-height: 1.4;
	font-weight: 700;
}
.p-label__text.unsubscribe{
	font-weight: normal;
}
.p-label__email.unsubscribe{
	font-weight: 700;
}
.p-field.confirm{
	justify-content: center;
	margin-top: 3rem;
}
.p-privacy__label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #333;
	cursor: pointer;
}
.p-privacy__checkbox {
	display: none;
}
.p-privacy__custom {
	width: 24px;
    height: 24px;
	border: 2px solid #ccc;
	border-radius: 4px;
	position: relative;
	transition: all 0.3s ease;
	flex-shrink: 0;
}
.p-privacy__custom::after {
	content: "";
	position: absolute;
	left: 7px;
    top: 3px;
	width: 6px;
	height: 11px;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	transform: rotate(45deg);
	opacity: 0;
	transition: opacity 0.2s ease;
}
.p-privacy__checkbox:checked + .p-privacy__custom {
	background-color: #D4AF37;
	border-color: #D4AF37;
}
.p-privacy__checkbox:checked + .p-privacy__custom::after {
	opacity: 1;
}
.p-privacy__text{
	font-weight: 700;
	letter-spacing: 1px;
}
.p-privacy__text a {
	color: #2B55E0;
	text-decoration: underline;
	transition: all 300ms linear;
}
.p-button--back{
	margin-top: 2rem;
	text-align: right;
}
.p-button--back a{
	font-weight: 700;
	color: #333333;
	transition: all 300ms linear;
	text-decoration: underline;
}
.p-field__text{
	margin-top: 3rem;
    color: #333333;
}

/* @media screen and (min-width: 1200px) {
	.p-field {
		display: block;
	}
} */

.p-recaptcha-area {
	text-align: center;
	margin: 2rem 0 0;
}

.g-recaptcha {
	display: inline-block;
}

/* --------------------------------------------
 * 非表示
 * -------------------------------------------- */

@media screen and (min-width: 768px) and (max-width: 1199px) {

.l-header__inner {
	height: 72px;
	padding-left: 16px;
	padding-right: 0;
}

.l-header__logo {
	text-align: center;
}

.l-header__sub {
	gap: 0;
}

.l-header__subItem {
	align-items: center;
	display: flex;
	font-size: 10px;
	height: 72px;
	width: 72px;
}

.l-header__subItem--story {
	background: #fff;
	color: #D4AF37;
}

.l-header__subItem--register {
	background: #D4AF37;
	color: #fff;
}

.l-header__subItem img {
	display: block;
	margin: auto;
}

.l-header__subLink {
	font-size: 12px;
	letter-spacing: 0.05em;
	text-align: center;
	width: 100%;
}

.l-inner {
	padding-left: 24px;
	padding-right: 24px;
}

.l-footer-top__box {
	flex-direction: column;
	gap: 24px;
}

.l-footer__nav {
	text-align: left;
}

.l-footer__navList {
	flex-direction: column;
	justify-content: space-between;
}

.l-footer__navItem:not(:first-child) {
	margin-top: 12px;
}

.l-footer__navLink {
	align-items: center;
	display: flex;
	justify-content: space-between;
	white-space: nowrap;
	width: 100%;
}

.l-footer__copy {
	margin-top: 44px;
}

.p-fv__button-wrapper {
	bottom: 40px;
}

.p-feature-item__picture {
	max-width: 280px;
	width: 100%;
}

.p-feature-item:nth-child(even) .p-feature-item__picture::after {
	top: 444px;
}

.p-feature-item__body {
	width: 100%;
}

.p-feature-item__heading > .title {
	font-size: 28px;
	margin-bottom: 24px;
	margin-top: 12px;
}

.p-feature-item__heading > .title img {
	height: 40px;
	width: 40px;
}

.p-feature-item__description {
	font-size: 14px;
}

.u-hidden-tab {
	display: none;
}

.p-cta__inner {
	grid-template-columns: 1fr 1fr;
}
.p-form {
    width: 90%;
}
.p-modal-form{
	margin: 0 auto;
	padding: 80px 70px;
}

}

@media screen and (min-width: 1200px) {

.l-footer-top__inner {
	padding: 56px 0;
}

.l-footer-bottom__inner {
	padding: 48px 0;
}

.p-fv__button-wrapper {
	bottom: 100px;
}

.p-concept {
	padding-bottom: 120px;
	padding-top: 140px;
}

.p-concept__inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 0;
}

.p-concept__image {
	margin-bottom: 0;
	width: 45%;
}

.p-concept__image img {
	max-width: 440px;
	width: 100%;
}

.p-concept__box {
	width: 48%;
}

.p-concept-item__heading > .text {
	font-size: 28px;
}

.p-concept-item__content {
	align-items: flex-start;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding-top: 49px;
}

.p-concept-item__description {
	padding-bottom: 80px;
	padding-top: 24px;
}

.p-concept-item__detail {
	margin-top: 10px;
}

.swiper-wrapper .swiper-slide img {
	max-height: 260px;
	max-width: 195px;
}

.p-feature__list {
	margin: 64px auto 0;
}

.p-feature-item:not(:last-child) {
	margin-bottom: 86px;
}

.p-feature-item__heading > .text {
	font-size: 18px;
}

.p-faq {
	padding: 120px 0;
}

.p-faq-item__row.m-q {
	padding-right: 56px;
}

.p-benefit {
	padding: 120px 0;
}

.p-benefit-item__picture > img {
	height: 100px;
	width: 100px;
}

.p-benefit-item__body {
	margin-top: 28px;
}

.p-benefit-item__detail {
	margin-top: 4px;
}

.p-benefit-diamond {
	margin-top: 56px;
}

.p-benefit-diamond .p-benefit-diamond__heading {
	padding: 22px 0;
}

.p-benefit-diamond .p-benefit-diamond__heading::before {
	left: 195px;
}

.p-benefit-diamond .p-benefit-diamond__heading::after {
	right: 195px;
}

.p-benefit-diamond__content {
	margin-left: auto;
	margin-right: auto;
	padding: 0 56px 56px;
}

.p-benefit-diamond__content > .text:first-of-type {
	font-size: 18px;
}

.p-benefit-diamond__picture {
	margin: 18px auto 16px;
	width: 240px;
}

.p-benefit-diamond__content > .text:nth-of-type(3) {
	margin-top: 52px;
}

.p-benefit-diamond__title {
	margin-top: 32px;
}

.p-benefit-diamond__detail {
	font-size: 15px;
}

.p-cta__inner {
	grid-template-columns: 1fr 1fr;
	max-width: 1080px;
	margin: 0 auto;
}

.p-cta__body {
	text-align: left;
}

.p-cta__actions {
	gap: 15px;
	padding: 0;
}

.u-hidden-pc {
	display: none;
}

}

@media screen and (max-width: 767px) {
.l-header{
	top: 10%;
}

.l-header__x{
	max-width: 68px;
}

.l-header__inner {
	height: 72px;
	padding-left: 16px;
	padding-right: 0;
}

.l-header__logo {
	text-align: center;
}

.l-header__sub {
	gap: 0;
}

.l-header__subItem {
	align-items: center;
	display: flex;
	font-size: 10px;
	height: 72px;
	width: 72px;
}

.l-header__subItem--story {
	background: #fff;
	color: #D4AF37;
}

.l-header__subItem--register {
	background: #D4AF37;
	color: #fff;
}

.l-header__subItem img {
	display: block;
	margin: auto;
}

.l-header__subLink {
	font-size: 12px;
	letter-spacing: 0.05em;
	text-align: center;
	width: 100%;
}

.l-inner {
	padding-left: 16px;
	padding-right: 16px;
}

.l-footer-top__box {
	flex-direction: column;
	gap: 24px;
}

.l-footer-menu__inner {
	padding: 54px 0 56px;
}

.l-footer__logo-link {
	margin-bottom: 14px;
}

.l-footer__nav {
	text-align: left;
}

.l-footer__navList {
	flex-direction: column;
	justify-content: space-between;
}

.l-footer__navItem:not(:first-child) {
	margin-top: 12px;
}

.l-footer__navLink {
	align-items: center;
	display: flex;
	justify-content: space-between;
	white-space: nowrap;
	width: 100%;
}

.l-footer__navLink.is-external::after {
	margin-left: 0;
}

.l-footer__copy {
	margin-top: 44px;
}

.p-feature {
	/* margin-top: -70px; */
	padding-bottom: 114px;
	padding-top: 70px;
}

.p-feature__list {
	margin: 80px auto 0;
}

.p-feature-item {
	display: block;
}

.p-feature-item:not(:last-child) {
	margin-bottom: 80px;
}

.p-feature-item__picture {
	max-width: 280px;
	width: 100%;
}

.p-feature-item__picture {
	max-width: 280px;
	width: 100%; /* ラベル・線の位置とサイズをSP向けに微調整 */
}

.p-feature-item__picture::before {
	height: 48px;
	left: -20px;
	top: 8px;
}

.p-feature-item__picture::after {
	font-size: 11px;
	left: -12px;
	top: 180px;
}

.p-feature-item:nth-child(even) .p-feature-item__picture::before {
	left: auto;
	right: -20px;
}

.p-feature-item:nth-child(even) .p-feature-item__picture::after {
	right: -11px;
	top: -600px;
}

.p-feature-item__body {
	width: 100%;
}

.p-feature-item__heading > .title {
	font-size: 28px;
	margin-bottom: 24px;
	margin-top: 12px;
}

.p-feature-item__heading > .title img {
	height: 40px;
	width: 40px;
}

.p-feature-item__description {
	font-size: 14px;
}

.p-feature-deco.m-1 {
	right: -18%;
	top: 4%;
}

.p-feature-deco.m-2 {
	left: -7%;
}

.p-feature-deco.m-3 {
	top: 50%;
}

.p-feature-deco.m-4 {
	left: -16%;
	top: 71%;
}

.p-feature-deco.m-5 {
	bottom: 2%;
	right: -8%;
}

.p-benefit__list {
	gap: 16px;
	margin: 40px auto 0;
}

.p-benefit-item__heading .text {
	padding: 6px 10px;
}

.u-hidden-sp {
	display: none;
}

.p-cta {
	padding: 40px 16px;
}

.p-cta__body:first-child {
	margin-bottom: 60px;
}

.p-cta__banner.repost{
	margin: 2.5rem 5% 0;
}
.p-cta__banner.repost_item{
    left: -18px;
	transform: scale(0.65);
}

.p-feature.release-title .title {
    font-size: 18px;
	line-height: 1.5;
}

.p-feature__list > li:nth-child(2) .title {
    font-size: 18px;
}

.p-feature.release-title .title span {
    display: initial;
    font-size: 18px;
	padding-left: .5rem;
}
.p-feature__list > li:nth-child(3) .title span {
    font-size: 18px;
}
.p-form {
    width: 90%;
	padding: 15% 0 20%;
}
.p-modal-form{
	margin: 0 auto;
	padding: 62px 5%;
	border-radius: 12px;
}
.p-modal-form__header {
    margin-bottom: 2.3rem;
}
.p-field {
    display: block;
    justify-content: space-between;
}
.p-label{
    width: 100%;
    display: block;
	margin-bottom: 1rem;
	font-size: 14px;
}
.p-badge--required {
    padding: 0 0.4rem 0.1rem;
}
.p-field-input {
    width: 100%;
}
.p-input {
    height: 2.6rem;
    font-size: 14px;
}
.p-actions .p-button{
	max-width: 222px;
    width: 80%;
	font-size: 14px;
}
.p-button--back a {
    font-size: 14px;
}
.p-field__text {
    font-size: 14px;
}
.p-recaptcha-area{
	text-align: center;
	margin-top: 50px;
}

}

@media screen and (min-width: 1200px) {
	.p-recaptcha-area {
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) and (max-width: 767px) {
.p-feature-item__picture::before {
	left: -32px;
	top: 0;
}

.p-feature-item__picture::after {
	left: -24px;
	top: 135px;
}

.p-feature-item:nth-child(even) .p-feature-item__picture::before {
	right: -34px;
}

.p-feature-item:nth-child(even) .p-feature-item__picture::after {
	right: -41px;
	top: 404px;
}
}

@media screen and (max-width: 330px) {
	.p-modal-form__title {
		font-size: 1.5rem;
	}
	.p-privacy__text {
		font-size: .7rem;
	}
}