@charset "UTF-8";

/*全体共通*/
:root, html{ font-size: 10px; }
@media screen and (max-width: 1440px) {
	:root, html{ font-size: 0.6944vw; }
}
*{ box-sizing: border-box; }
@media screen and (max-width: 768px) {
  body *,
  body *::before,
  body *::after {
    transition: none !important;
    -webkit-transition: none !important;
    transition-duration: 0s !important;
    -webkit-transition-duration: 0s !important;
  }
}
body {
	--max-width: 900px;
	--h-header: 88px;
  --c-base: #000;
  --c-main: #17060E;
  --c-accent: #E62983;
  --ff-main: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	--ff-mincho: "游明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --ff-en: "Outfit", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;

  position: relative;
  width: 100%;
  overflow-x: hidden;
	font-family: var(--ff-main);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
  -webkit-text-size-adjust: 100%;
}
body.-fixed{
	position: fixed;
	left: 0;
	width: 100%;
	height: 100%;
}
a{
	display: inline-block;
	color: inherit;
	font-weight: inherit;
}
a:hover{
	cursor: pointer;
}
body.userAgent-pc a[href^="tel:"]{
	pointer-events: none;
}
img, svg{
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
}
select{
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
input, textarea{
	border: none;
	outline: none;
	font: inherit;
}
::before, ::after{
	box-sizing: border-box;
}

.--ff-en{ font-family: var(--ff-en); }
.--c-accent{ color: var(--c-accent) !important; }
.--c-red{ color: #e60012 !important; }
.--c-white{ color: #fff !important; }
.--c-yellow{ color: #ffff00 !important; }
.--c-blue{ color: #3372b9 !important; }
.--c-pink{ color: #ff7987 !important; }
.--center{ text-align: center !important; }
.--ta-l{ text-align: left !important; }
.--ta-r{ text-align: right !important; }
.--ta-justify{ text-justify: inter-ideograph; text-align: justify; text-align-last: left; }
.--bold{ font-weight: bold !important; }
.--thin{ font-weight: 100 !important; }
.--nowrap{ white-space: nowrap; }
.--kerning{ font-feature-settings: "palt"; }

.--overflow-ellipsis{
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
a.--h-opacity, .--h-opacity a,
button.--h-opacity, .--h-opacity button{ transition: opacity .3s; }
a.--h-opacity:hover, .--h-opacity a:hover,
button.--h-opacity:hover, .--h-opacity button:hover{ opacity: .6; }

.--w-100{ display: block; width: 100%; }
.--img-cover{ width: 100%; height: 100%; object-fit: cover; }
.--img-contain{ width: 100%; height: 100%; object-fit: contain; }
.--clearfix::after{ content: ""; display: block; clear: both; }
.--d-ib{ display: inline-block !important; }
.--d-n{ display: none !important; }
.--d-f{ display: flex !important; }
.--justify-center{ display: flex; justify-content: center; }
.--absolute{ position: absolute; top: 0; left: 0; }

.--inview.-fadeup{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s .3s ease-out, transform .6s .3s ease-out;
}
.--inview.-fadeup.active{
  opacity: 1;
  transform: translateY(0);
}

.slick-list {
	overflow: visible;
}
.slick-arrow {
	position: absolute;
	top: calc(50% - 32px);
	width: 64px;
	height: 64px;
	color: transparent;
	z-index: 2;
	transition: opacity .3s, transform .3s;
}
.slick-arrow.slick-prev {
	/* left: calc((100% - 100vw) * 0.3933); */
	left: 0;
	left: clamp(-118px, calc(-118px + (1440px - 100vw) / (300 / 118)), 0px);
}
.slick-arrow.slick-next {
	/* right: calc((100% - 100vw) * 0.3933); */
	right: 0;
	right: clamp(-118px, calc(-118px + (1440px - 100vw) / (300 / 118)), 0px);
}
.slick-arrow::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #D2D2D7;
	border-radius: 50%;
	opacity: .6;
	transition: opacity .3s;
}
.slick-arrow::after {
	content: "";
	position: absolute;
	top: 0;
	left: 3%;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2216%22%20height%3D%2227%22%20viewBox%3D%220%200%2016%2027%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1.5%201.5L13.5%2013.5L1.5%2025.5%22%20stroke%3D%22%23777777%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E') center/16px no-repeat;
}
.slick-arrow.slick-prev::after {
	left: -3%;
	transform: rotate(180deg);
}
.slick-arrow:hover::before {
	opacity: 1;
}
.slick-arrow.slick-disabled {
	opacity: 0;
	transform: scale(0);
}
/* TAB */
@media screen and (max-width: 1024px) {
	body {
		--h-header: 50px;
	}
	.slick-arrow {
		width: 55px;
		height: 55px;
	}
	.slick-arrow::after {
		background-size: 14px;
	}
}
/* SP */
@media screen and (max-width: 768px) {
	.slick-arrow {
		width: 48px;
		height: 48px;
	}
	.slick-arrow.slick-prev {
		left: -15px;
	}
	.slick-arrow.slick-next {
		right: -15px;
	}
	.slick-arrow::after {
		background-size: 12px;
	}
}


/* MW WP FORM */
.mw_wp_form {
	max-width: 750px;
	margin: 0 auto;
}
.mw_wp_form .sec-title {
	text-align: center;
}
.mw_wp_form .item {
	display: grid;
	margin: 30px 0;
}
.mw_wp_form .item.-privacy {
	display: flex;
	justify-content: center;
	margin: 40px 0;
}
.mw_wp_form .item.-privacy label {
	cursor: pointer;
	font-weight: bold;
}
.mw_wp_form .title.-required::after {
	content: "*";
	display: inline-block;
	margin-left: .5em;
	color: var(--c-accent);
}
.mw_wp_form .input {
	display: block;
	width: 100%;
	border: 1px solid;
	padding: 15px;
	font: inherit;
}
.mw_wp_form .textarea {
	height: 200px;
}
.mw_wp_form .btns {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 50px;
}
.mw_wp_form .btn {
	margin: 0;
}
.mw_wp_form .btn.-return {
	width: auto;
	flex-shrink: 0;
	background: #fff;
	border: 1px solid var(--c-main);
	color: var(--c-main);
}
/* SP */
@media screen and (max-width: 768px) {
	.mw_wp_form .textarea {
		height: 150px;
	}
	.mw_wp_form .item.-privacy {
		margin: 30px 0;
	}
	.mw_wp_form .btns {
		gap: 10px;
	}
}

/* PC */
@media (min-width: 1025px){
	.--tab{ display: none !important; }
	.--sp{ display: none !important; }
	.--tab-sp{ display: none !important; }

	.--pc_pl-0{ padding: 0 !important; }
	.--pc_pr-0{ padding: 0 !important; }
}
/* TAB */
@media screen and (max-width: 1024px) and (min-width: 769px) {
	.--pc{ display: none !important; }
	.--sp{ display: none !important; }
	.--pc-sp{ display: none !important; }

	.--tab_pl-0{ padding: 0 !important; }
	.--tab_pr-0{ padding: 0 !important; }
}
/* SP */
@media screen and (max-width: 768px) {
	.--pc{ display: none !important; }
	.--tab{ display: none !important; }
	.--pc-tab{ display: none !important; }

	.--sp-pl-0{ padding: 0 !important; }
	.--sp-pr-0{ padding: 0 !important; }

	.--sp_fs-14{ font-size: 14px !important; }
	.--sp_fs-16{ font-size: 16px !important; }
	.--sp_fs-18{ font-size: 18px !important; }
}

/* 共通 */
.--section {
	padding: 0 20px;
}
.sec-inner,
.--inner{
	width: 100%;
	margin: 0 auto;
}
.--inner{
	max-width: 1140px;
}

.--title{
	overflow: hidden;
}
.--title .ja{
	color: var(--c-accent);
	font-weight: 900;
	letter-spacing: .05em;
	margin-bottom: 3;
	font-size: 16px;
}
.--title .ja{
	overflow: hidden;
}
.--title .ja > span{
	display: block;
}
.--title .en{
	font-size: 48px;
	/* font-weight: 700; */
	font-weight: 600;
	letter-spacing: .05em;
	font-family: var(--ff-en);
}
.--title .en{
	overflow: hidden;
}
.--title .en > span{
	display: block;
}
/* TAB */
@media screen and (max-width: 1024px) {
	.--title .ja{
			font-size: 14px;
		}
		.--title .en{
			font-size: 42px;
		}
}
/* SP */
@media screen and (max-width: 768px) {
	.--title .ja{
		font-size: 12px;
	}
	.--title .en{
		font-size: 36px;
	}
}

.--btn{
	display: block;
	max-width: 264px;
	width: 100%;
	background: var(--c-main);
/* 	border: 1px solid var(--c-main); */
	border-radius: 100px;
	padding: 14px 38px;
	transition: background .3s;
	position: relative;
	color: #fff;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .05em;
	text-decoration: none;
	margin-left: auto;
	margin-right: auto;
}
.--btn:hover {
	background: var(--c-accent);
}
.--btn::before{
	content: "";
	position: absolute;
	width: 12px;
	height: 100%;
	right: 22px;
	top: 0;
	background: url(../img/common/arrow-white.svg) center/ contain no-repeat;
	/* background: url(../img/common/arrow.svg) center/ contain no-repeat; */
	transition: transform .3s;
}
.--btn:hover::before {
	transform: translateX(30%);
}
/* TAB */
@media screen and (max-width: 1024px) {
	.--btn{
		max-width: 252px;
		padding: 12px 33px;
		font-size: 15px;
	}
	.--btn::before{
		width: 11px;
		right: 16px;
	}
}
/* SP */
@media screen and (max-width: 768px) {
	.--btn{
		max-width: 240px;
		padding: 10px 28px;
		font-size: 14px;
	}
	.--btn::before{
		width: 9px;
		right: 10px;
	}
}

.--category{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.--category .cat{
/*   font-size: 16px; */
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--c-accent);
  padding: 6px 15px 8px;
  border-radius: 100px;
  border: 1px solid var(--c-accent);
  line-height: 2;
  min-width: 90px;
  padding: 0 16px;
  text-align: center;
}
.--category .cat.current{
  background: var(--c-accent);
  color: #fff;
	pointer-events: none;
}
/* TAB */
@media screen and (max-width: 1024px) {
   .--category{
    gap: 12px;
  }
  .--category .cat{
    font-size: 14px;
	min-width: 75px;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .--category{
    gap: 8px;
  }
  .--category .cat{
    font-size: 12px;
	transition: 0;
  }
}
.--category .cat:hover {
	opacity: 1;
}

.--list .item {
  display: grid;
  grid-template-columns: 170px 1fr;
  font-size: 16px;
  letter-spacing: .05em;
  line-height: 1.5;
}
.--list .item-left {
  border-bottom: 1px solid var(--c-accent);
  padding: 24px 0;
  font-weight: 700;
}
.--list .item-right {
	border-bottom: 1px solid #D9D9D9;
  padding: 24px 0 24px 2.4rem;
}
.--list .inner-list {
  margin-top: 8px;
  margin-bottom: 8px;
}
.--list .inner-item {
  font-size: 16px;
  padding-left: 8px;
  position: relative;
  line-height: 1.5;
}
/* .--list .inner-item::before {
 content: "";
 position: absolute;
 width: 8px;
 height: 1px;
 background: #6B7280;
 left: 0;
 top: .5em;
} */
.--list .txt + .txt {
	display: block;
	margin-top: 8px;
}
/* TAB */
@media screen and (max-width: 1024px) {
	.--list .item {
		grid-template-columns: 130px 1fr;
		font-size: 15px;
	}
	.--list .item-left {
		padding: 20px 0;
	}
	.--list .item-right {
		padding: 20px 0 20px 16px;
	}
	.--list .inner-list {
		margin-top: 7px;
	}
	.--list .inner-item {
		font-size: 13px;
	}
}
/* SP */
@media screen and (max-width: 768px) {
	.--list .item {
		grid-template-columns: 90px 1fr;
		font-size: 14px;
	}
	.--list .item-left {
		padding: 16px 0;
	}
	.--list .item-right {
		padding: 16px 0 16px 10px;
	}
	.--list .inner-list {
		margin-top: 6px;
	}
	.--list .inner-item {
		font-size: 14px;
		padding-left: 7px;
	}
	.--list .inner-item::before {
	width: 7px;
	}
}

.c-pagination {
	display: flex;
	justify-content: center;
	gap: 16px;
}
.c-pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 16px;
}
.c-pagination .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: .05em;
	font-family: var(--ff-en);
	color: #fff;
	background: var(--c-main);
}
.c-pagination .page-numbers.current {
	background: var(--c-accent);
}
.c-pagination .page-numbers.first {
	color: transparent;
	position: relative;
}
.c-pagination .page-numbers.first::before,
.c-pagination .page-numbers.first::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	top: 50%;
	transform: translateY(-50%) rotate(225deg);
}
.c-pagination .page-numbers.first::before{
	right: 16px;
}
.c-pagination .page-numbers.first::after {
	right: 22px;
}
.c-pagination .page-numbers.last {
	color: transparent;
	position: relative;
}
.c-pagination .page-numbers.last::before,
.c-pagination .page-numbers.last::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}
.c-pagination .page-numbers.last::before{
	left: 16px;
}
.c-pagination .page-numbers.last::after {
	left: 21px;
}
.c-pagination .page-numbers.prev {
	color: transparent;
	position: relative;
}
.c-pagination .page-numbers.prev::before{
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	top: 50%;
	transform: translateY(-50%) rotate(225deg);
	left: 21px;
}
.c-pagination .page-numbers.next {
	color: transparent;
	position: relative;
}
.c-pagination .page-numbers.next::before{
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	right: 21px;
}
.c-pagination .page-numbers.dots {
	background: none;
	color: var(--c-main);
}
/* TAB */
@media screen and (max-width: 1024px) {
	.c-pagination {
		gap: 12px;
	}
	.c-pagination .nav-links {
		gap: 12px;
	}
	.c-pagination .page-numbers {
		width: 41px;
		height: 41px;
		font-size: 16px;
	}
	.c-pagination .page-numbers.first::before{
		right: 13px;
	}
	.c-pagination .page-numbers.first::after {
		right: 18px;
	}
	.c-pagination .page-numbers.last::before{
		left: 13px;
	}
	.c-pagination .page-numbers.last::after {
		left: 18px;
	}
	.c-pagination .page-numbers.prev::before{
		left: 18px;
	}
	.c-pagination .page-numbers.next::before{
		right: 18px;
	}
}
/* SP */
@media screen and (max-width: 768px) {
	.c-pagination {
		gap: 8px;
	}
	.c-pagination .nav-links {
		gap: 8px;
		flex-wrap: wrap;
	}
	.c-pagination .page-numbers {
		min-width: 35px;
		width: 35px;
		height: 35px;
		font-size: 14px;
	}
	.c-pagination .page-numbers.first::before{
		right: 10px;
	}
	.c-pagination .page-numbers.first::after {
		right: 15px;
	}
	.c-pagination .page-numbers.last::before{
		left: 10px;
	}
	.c-pagination .page-numbers.last::after {
		left: 15px;
	}
	.c-pagination .page-numbers.prev::before{
		left: 15px;
	}
	.c-pagination .page-numbers.next::before{
		right: 15px;
	}
}

/* ローディング */
#loading{
	position: fixed;
	top: 0;
	left: 0;
	background: #fff;
	width: 100%;
	height: 100%;
	z-index: 999;
}

/* オープニングアニメーション */
#opening {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: #fff;
	overflow: hidden;
}
#logoWrap {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	z-index: 20;
}
#logoImg {
	width: 280px;
	grid-area: 1 / 1;
	opacity: 0;
}
#logoXMark {
	position: absolute;
	opacity: 0;
}
#logoXMarkLarge {
	position: absolute;
	top: 0;
	left: 0;
	width: 3500px;
	height: 3061.35px;
	opacity: 0;
	z-index: 21;
	pointer-events: none;
}
#logoXMarkLarge svg {
	display: block;
	width: 100%;
	height: 100%;
}
@media (max-width: 768px) {
	#logoImg { width: 200px; }
}

/* トップへ戻るボタン */
#top{
	position: fixed;
	top: auto;
	bottom: 0;
	right: 0;
	z-index: 100;
}
#main {
	overflow: hidden;
}

/* ヘッダー */
#header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 100;
}
#header .sec-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	max-width: 1312px;
	height: var(--h-header);
}
#header .sec-logo {
	display: block;
	width: 100%;
	max-width: 175px;
}
#header .sec-box {
	display: flex;
	align-items: center;
	gap: 0 3.2rem;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
}
#header .sec-list {
	display: flex;
	gap: 0 3.2rem;
}
#header .sec-list .link {
	display: inline-flex;
	padding: 4px 8px;
/* 	background: linear-gradient(#000, #000) 100% 100% / 0 100% no-repeat;
	transition-property: color, background-size; */
	transition: .3s;
}
#header .sec-list .link:hover {
/* 	color: #fff; */
	color: var(--c-accent);
/* 	background-position: 0 100%;
	background-size: 100% 100%; */
	opacity: 1;
}
#header .sec-list .child {
	position: fixed;
	top: var(--h-header);
	left: 50%;
	display: none;
	width: calc(100% - 40px);
	max-width: 1320px;
	padding: 30px 30px 50px;
	background: #ffffff;
	box-shadow: 1rem 1rem 1.5rem #00000026;
	opacity: 0;
	transform: translateX(-50%);
	transition: opacity .3s;
}
#header .sec-list .child.-active {
	opacity: 1;
}
#header .sec-list .child-inner {
	display: grid;
	grid-template-columns: 380px 1fr;
	align-items: start;
}
#header .sec-list .child-en {
	font-family: var(--ff-en);
	font-size: 56px;
	font-weight: 700;
	line-height: 1.26;
	letter-spacing: 0.05em;
}
#header .sec-list .child-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 10px 20px;
	/* align-self: center; */
	font-weight: bold;
}
#header .sec-list .child-list a {
	display: block;
	padding: 1em;
	border-bottom: 1px solid #ddd;
	transition: .3s;
}
#header .sec-list .child-list a:hover {
    background-color: #F3F3F3;
	opacity: 1;
}
#header .sec-list .child-btn {
	margin-top: 30px;
	margin-left: 0;
	transition: .3s;
}
#header .sec-list .child-btn:hover {
	opacity: 1;
}
#header .sec-btn {
	display: block;
	padding: 14px 2.6rem;
	background: var(--c-accent);
	border-radius: 100px;
	color: #fff;
	line-height: 1;
}
#navbtn{
	position: relative;
	cursor: pointer;
	width: 50px;
	height: 40px;
}
#navbtn span{
	position: absolute;
	left: 10px;
	display: inline-block;
	width: 30px;
	height: 2px;
	background: var(--c-accent);
	transition: all .3s;
}
#navbtn span:nth-of-type(1){
	top: calc(50% - 7px);
}
#navbtn span:nth-of-type(2){
	top: 50%;
}
#navbtn span:nth-of-type(3){
	top: calc(50% + 7px);
/* 	bottom: 27px; */
}
#navbtn.-active span:nth-of-type(1){
	top: 50%;
	transform: rotate(45deg);
}
#navbtn.-active span:nth-of-type(2){
	opacity: 0;
}
#navbtn.-active span:nth-of-type(3){
	top: 50%;
	transform: rotate(-45deg);
}
/* TAB */
@media screen and (max-width: 1024px) {
	#header .sec-logo{
		max-width: 120px;
	}
}

/* スマホナビ */
#nav{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100lvh + 100px);
	padding: 50px 20px 100px;
	background: #fff;
	z-index: 99;
}
#nav .sec-inner{
	max-height: 100%;
	padding: 30px 0 50px;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
/* 	font-size: 20px; */
}
#nav .sec-inner::-webkit-scrollbar{
	display: none;
}
#nav .sec-list {
	color: var(--c-base);
	font-weight: bold;
/* 	text-align: center; */
}
#nav .sec-list .item a {
	padding: 1em 0;
	display: block;
	width: 100%;
}
#nav .sec-list .item a:hover {
	opacity: 1;
}
#nav .sec-list .item + .item {
/* 	margin-top: 1em;
	padding-top: 1em; */
	border-top: 1px solid #0000001a;
}
#nav .sec-list .item button {
	position: relative;
	display: block;
	width: 100%;
	color: #000;
}
#nav .sec-list .item button:hover {
	opacity: 1;
}
#nav .sec-list .item button::before,
#nav .sec-list .item button::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 1em;
	width: 16px;
	height: 2px;
	background: #2e2e2e;
}
#nav .sec-list .item:not(.active) button::after {
	transform: rotate(90deg);
}
#nav .sec-list .item button a {
	padding: 1em 0;
	width: fit-content;
}
#nav .sec-list .child-list {
	display: none;
}
#nav .sec-list .child-list a {
	display: block;
/* 	margin-top: 1em; */
	padding: 1em;
	border-top: 1px solid #0000001a;
	font-weight: 400;
	transition: 0;
}
#nav .sec-list .child-list a:hover {
	background-color: #F3F3F3;
	opacity: 1;
}
#nav .sec-btn {
	display: block;
	max-width: 500px;
	margin: 30px auto 0;
	padding: 14px 0;
	background: var(--c-accent);
	border-radius: 100px;
	color: #fff;
	line-height: 1;
	text-align: center;
}

/* MV */
#mv {
  padding-top: var(--h-header);
}
#mv .sec-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  max-width: 1315px;
  height: 380px;
  margin: 0 auto;
  padding: 0 8.7rem 72px;
  border-radius: 24px;
  overflow: hidden; 
}
#mv .sec-inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 68.42%;
  background: linear-gradient(to bottom, #17060E00, #17060E);
  z-index: -1;
}
#mv .sec-title {
  color: #fff;
}
#mv .sec-title .en {
  font-size: 56px;
  font-weight: 700;
  font-family: var(--ff-en);
  line-height: 1.26;
  letter-spacing: 0.05em;
}
#mv .sec-texts .title {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
#mv .sec-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
/* TAB */
@media screen and (max-width: 1024px) {
  #mv .sec-inner {
    height: 305px;
    padding: 0 20px 56px;
		border-radius: 20px;
  }
  #mv .sec-title .en {
    font-size: 49px;
  }
  #mv .sec-title .title {
    font-size: 16px;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  #mv .sec-inner {
    height: 230px;
    padding: 0 20px 40px;
		border-radius: 16px;
  }
  #mv .sec-title .en {
    font-size: 42px;
  }
  #mv .sec-title .title {
    font-size: 14px;
  }
}

/* ACCESS */
#access{
  background: #F5F5F7;
}
#access .sec-inner{
  padding-top: 120px;
  padding-bottom: 120px;
}
#access .sec-title{
  text-align: center;
  margin-bottom: 48px;
}
#access .sec-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
  margin-bottom: 48px;
	font-weight: 400;
}
#access .sec-box .table{
  max-width: 558px;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .05em;
}
#access .sec-box .table-row{
  display: grid;
  grid-template-columns: 73px 1fr;
}
#access .sec-box .table-row:not(:nth-of-type(1)){
  margin-top: 24px;
}
#access .sec-box .table-left{
  border-bottom: 1px solid var(--c-accent);
  padding-bottom: 24px;
  font-weight: 700;
}
#access .sec-box .table-right{
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
}
#access .sec-box .image{
  width: 100%;
  max-width: 540px;
	height: 325px;
}
/* TAB */
@media screen and (max-width: 1024px) {
  #access .sec-inner{
    padding-top: 90px;
    padding-bottom: 90px;
  }
  #access .sec-title{
    margin-bottom: 42px;
  }
  #access .sec-box{
    margin-bottom: 42px;
  }
  #access .sec-box .table-row:not(:nth-of-type(1)){
    margin-top: 21px;
  }
  #access .sec-box .table-left{
    padding-bottom: 21px;
  }
  #access .sec-box .table-right{
    padding-bottom: 21px;
    padding-left: 18px;
    padding-right: 18px;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  #access .sec-inner{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #access .sec-title{
    margin-bottom: 36px;
  }
  #access .sec-box{
    flex-direction: column;
    gap: 30px 0;
    margin-bottom: 36px;
  }
  #access .sec-box .table{
    margin: 0 auto;
  }
  #access .sec-box .table-row:not(:nth-of-type(1)){
    margin-top: 18px;
  }
  #access .sec-box .table-left{
    padding-bottom: 18px;
  }
  #access .sec-box .table-right{
    padding-bottom: 18px;
    padding-left: 12px;
    padding-right: 12px;
  }
  #access .sec-box .image{
    margin: 0 auto;
  }
}

/* フッター */
#footer{
	background: #17060E;
	padding: 100px 20px 100px;
}
#footer .sec-box-top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 20px;
	border-bottom: 1px solid #fff;
	padding-bottom: 42px;
	margin-bottom: 32px;
}
#footer .sec-logo{
	max-width: 218px;
	width: 100%;
	margin-bottom: 40px;
}
#footer .sec-text{
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	color: #fff;
}
#footer .sec-list-01{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	max-width: 400px;
	width: 100%;
}
#footer .sec-list-01 .item + .item{
	margin-top: 12px;
}
#footer .sec-list-01 .ja{
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .05em;
	line-height: 1.16;
	color: #fff;
	display: block;
}
#footer .sec-box-bottom{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 24px;
	gap: 30px 20px;
}

#footer .sec-list-02{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 24px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .05em;
	color: #fff;
}
#footer .sec-icons{
	display: flex;
	gap: 0 12px;
	margin-left: 20px;
}
#footer .sec-icons .icon{
	max-width: 40px;
	width: 100%;
	aspect-ratio: 1/1;
}
#copyright{
	font-size: 12px;
	font-weight: 400;
	font-family: var(--ff-en);
	letter-spacing: .05em;
	color: #fff;
	max-width: 1140px;
	width: 100%;
	margin: 0 auto;
	display: block;
	text-align: center;
}
/* TAB */
@media screen and (max-width: 1024px) {
	#footer{
		padding: 80px 20px 80px;
	}
	#footer .sec-logo{
		max-width: 190px;
		margin-bottom: 35px;
	}
	#footer .sec-list-01 .ja{
		font-size: 14px;
	}
	#footer .sec-icons{
		gap: 0 10px;
	}
	#footer .sec-icons .icon{
		max-width: 35px;
	}
	#footer .sec-list-02{
		gap: 15px 10px;
	}
}
/* SP */
@media screen and (max-width: 768px) {
	#footer{
		padding: 60px 20px 60px;
	}
	#footer .sec-box-top{
		padding-bottom: 30px;
		margin-bottom: 25px;
	}
	#footer .sec-logo{
		max-width: 163px;
		margin-bottom: 30px;
	}
	#footer .sec-icons{
		gap: 0 8px;
		margin-left: 8px;
	}
	#footer .sec-icons .icon{
		max-width: 30px;
	}
}

/*パンくずリスト*/
#breadcrumbs{
	height: 112px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#breadcrumbs .sec-list li{
  display: inline;
	font-size: 16px;
}
#breadcrumbs .sec-list li + li{
	position: relative;
	padding-left: 33px;
}
#breadcrumbs .sec-list li + li::before{
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	border-top: 1px solid var(--c-main);
	border-right: 1px solid var(--c-main);
	top: .55em;
	transform: rotate(45deg);
	left: 10px;
}
#breadcrumbs .sec-list li:last-child{
  pointer-events: none;
}
#breadcrumbs .sec-list .item:not(:last-child) a{
  display: inline;
	color: var(--c-accent);
	text-decoration: underline;
	text-underline-offset: 2px;
}
/* TAB */
@media screen and (max-width: 1024px) {
	#breadcrumbs{
		height: 92px;
	}
	#breadcrumbs .sec-list li{
		font-size: 14px;
	}
	#breadcrumbs .sec-list li + li{
		padding-left: 29px;
	}
	#breadcrumbs .sec-list li + li::before{
		width: 7px;
		height: 7px;
		left: 9px;
	}
}
/* SP */
@media screen and (max-width: 768px) {
	#breadcrumbs{
		height: 72px;
	}
	#breadcrumbs .sec-list li{
		font-size: 12px;
	}
	#breadcrumbs .sec-list li + li{
		padding-left: 25px;
	}
	#breadcrumbs .sec-list li + li::before{
		width: 6px;
		height: 6px;
		left: 8px;
	}
}


/* 投稿 */
#post {
	padding-bottom: 150px;
}
#post .sec-title {
	margin: 2em 0 1em;
	font-size: 28px;
	font-weight: bold;
}
#post .sec-desc {
	display: flex;
	flex-wrap: wrap;
  gap: 16px;
	margin-bottom: 50px;
}
#post .sec-desc .date {
	color: #6B7280;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--ff-en);
  letter-spacing: .05em;
}
#post .sec-desc .cat {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.66;
  color: var(--c-accent);
  border-radius: 100px;
  border: 1px solid var(--c-accent);
  padding: 0 8px;
}
/* SP */
@media screen and (max-width: 768px) {
	#post {
		padding-bottom: 100px;
	}
	#post .sec-title {
		font-size: 24px;
	}
	#post .sec-desc {
		margin-bottom: 30px;
	}
}

.c-post > *:first-child {
	margin-top: 0 !important;
}
.c-post > *:last-child {
	margin-bottom: 0 !important;
}
.c-post h1,
.c-post h2,
.c-post h3,
.c-post h4,
.c-post h5,
.c-post h6{
  margin: 1.5em 0 .8em;
  color: var(--c-main);
  font-weight: 700;
}
.c-post h1,
.c-post h2{
  font-size: 28px;
}
.c-post h2 {
	border-left: solid 2px #e62983;
    padding-left: 15px;
}
.c-post h3{
  font-size: 24px;
}
.c-post h4{
  font-size: 22px;
}
.c-post h5{
  font-size: 20px;
}
.c-post h6{
  font-size: 18px;
}
.c-post p{
  min-height: 1em;
/*   margin-bottom: 1em; */
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
.c-post strong,
.c-post b{ font-weight: 700; }
.c-post em{ font-style: italic; }
.c-post sup{ vertical-align: super; font-size: smaller; }
.c-post sub{ vertical-align: sub; font-size: smaller; }
.c-post s{ text-decoration: line-through; }
.c-post hr{
  width: 100%;
  height: 1px;
  margin: 30px 0;
  background: #CFD4D2;
  border: none;
}
.c-post a{
  text-decoration: underline;
  word-break: break-all;
  color: #e62983;
}
.c-post ul{ 
  margin: 1em 0;
	padding-left: 2em;
	list-style: disc;
}
.c-post ol{
  margin: 1em 0;
	padding-left: 1.8em;
	list-style: decimal;
}
.c-post ol > li {
	padding-left: .2em;
}
.c-post ul ul,
.c-post ol ul{
	list-style: circle;
}
.c-post ul li,
.c-post ol li {
	margin: .5em 0;
}
.c-post > .wp-block-image,
.c-post > .wp-block-video,
.c-post > .wp-block-columns,
.c-post > .wp-block-gallery,
.c-post > .wp-block-flexible-table-block-table{
  margin-top: 30px;
  margin-bottom: 30px;
}
.c-post table{
  width: 100%;
}
.c-post table th,
.c-post table td{
  padding: .5em;
  border: 1px solid #CFD4D2;
}
.c-post table th{
  background: #FAFAFA;
}
/* SP */
@media screen and (max-width: 768px) {
	.c-post {
		font-size: 14px;
	}
	.c-post h1,
	.c-post h2{
		font-size: 24px;
	}
	.c-post h3{
		font-size: 22px;
	}
	.c-post h4{
		font-size: 20px;
	}
	.c-post h5{
		font-size: 18px;
	}
	.c-post h6{
		font-size: 16px;
	}
}


/* アニメーション */
.fade-item {
  opacity: 0; /* 最初は隠しておく */
  pointer-events: none;
}

.fade-item.is-visible {
  /* 提示いただいたアニメーションを適用 */
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
	pointer-events: auto;
  }
}


/* Contact Form 7 全体設定 */
.wpcf7 {
    max-width: 750px;
    margin: 0 auto;
}

/* タイトル（CF7内に独自で入れている場合） */
.wpcf7 .sec-title {
    text-align: center;
}

/* 各入力項目のラップ（pタグやdivで項目を囲んでいる想定） */
.wpcf7 .item {
    display: grid;
    margin: 30px 0;
}

/* 同意チェックボックス部分 */
.wpcf7 .item.-privacy {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.wpcf7 .item.-privacy label {
    cursor: pointer;
    font-weight: bold;
}

/* 必須マーク（CF7の標準的な必須クラスに対応） */
.wpcf7 .title.-required::after {
    content: "*";
    display: inline-block;
    margin-left: .5em;
    color: var(--c-accent);
}

/* 入力フィールド全般 (text, email, tel, textarea) */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    display: block;
    width: 100%;
    border: 1px solid;
    padding: 12px 18px;
    font: inherit;
    box-sizing: border-box; /* 幅突き抜け防止 */
}

/* テキストエリアの高さ */
.wpcf7 textarea {
    height: 200px;
}

/* ボタンエリア */
.wpcf7 .btns {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
	position: relative;
}

/* 送信ボタンの基本スタイル（MW WP Formの.btnを継承） */
.wpcf7 .wpcf7-submit {
	margin: 20px 0 0;
    cursor: pointer;
    /* 必要に応じて背景色やボーダーを追加してください */
}

/* 戻るボタン（CF7は標準で戻るボタンがないため、プラグイン等で追加している場合用） */
.wpcf7 .btn.-return {
/*     width: auto; */
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--c-main);
    color: var(--c-main);
	margin: 20px 0 0;
}

/* SPレスポンシブ */
@media screen and (max-width: 768px) {
    .wpcf7 textarea {
        height: 150px;
    }
    .wpcf7 .item.-privacy {
        margin: 30px 0;
    }
    .wpcf7 .btns {
        gap: 10px;
    }
	.wpcf7 .btn.-return, .page-confirm .wpcf7 .wpcf7-submit {
		width: 45%;
	}
}


/* 生年月日の入力欄（date）をしっかり囲う */
.wpcf7 .item.-birth .inputs input[type="date"].input {
    display: block;
    width: 100%;
    /* 枠線の設定：太さ・種類・色 */
    border: 1px solid #333; /* ここで色と太さを調整（#333は濃いグレー） */
    padding: 15px;
    background-color: #fff;
    font-family: inherit;
    color: #333;
    box-sizing: border-box; /* 幅突き抜け防止 */
    
    /* ブラウザ標準の見た目をリセット */
    -webkit-appearance: none;
    appearance: none;
    min-height: 55px;
}

/* フォーカス時（入力しようとした時）の枠色 */
.wpcf7 .item.-birth .inputs input[type="date"].input:focus {
    border-color: var(--c-main); /* サイトのメインカラーに変わる */
    outline: none;
    box-shadow: 0 0 5px rgba(0,0,0,0.1); /* ほんのり影をつけて目立たせる */
}

/* SP調整 */
@media screen and (max-width: 768px) {
    .wpcf7 .item.-birth .inputs input[type="date"].input {
        padding: 12px;
        min-height: 50px;
    }
}

.wpcf7-spinner {
	position: absolute !important;
	bottom: -40px;
	right: 0;
	left: 0;
	margin: auto !important;
}

/* 1. 各スライドの基本設定 */
#js-fv .item {
  position: relative; /* テキストの絶対配置の基準にする */
  width: 100%;
  height: 100%;      /* 画面いっぱいの高さ（または任意の数値） */
  overflow: hidden;
}

/* 2. 画像の設定：背景として敷き詰める */
#js-fv .item img.--img-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; /* 背面 */
}

.contact-content-check-text {
	text-align: center;
	font-weight: bold;
	margin-top: 40px;
}

.wpcf7-not-valid-tip{
	color: #e62983 !important;
}
.privacy-post h2 {
    padding-left: 20px;
	border-left: solid 2px #e62983;
	font-size: 18px;
}
.privacy-post p {
	font-size: 14px;
}
.customer-post h2 {
    padding-left: 20px;
	border-left: solid 2px #e62983;
	font-size: 18px;
}
.customer-post p {
	font-size: 14px;
}

/* --- フェードインアップの初期状態（アニメーション前） --- */
.js-fadeup {
  opacity: 0;
  transform: translateY(50px); /* 最初は30px下に下げておく */
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform; /* スマホでのカクつきを防止する呪文 */
}

/* --- クラス（is-animated）が追加された時の状態 --- */
.js-fadeup.is-animated {
  opacity: 1;
  transform: translateY(0); /* 元の位置（上）に戻る */
}
.page-complete .--btn {
	color: #fff;
	transition: .3s;
}
.page-complete .--btn:hover {
	opacity: 1;
}

/* ======================
   FV テキストアニメーション
   ====================== */
#fv .item .title {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  opacity: 1; 
  transition: width 2s ease-in, opacity 0.6s ease-out;
}

#fv .item .text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  opacity: 1;
  transition: width 3s ease-in, opacity 0.6s ease-out;
}

/* ──────────────────────────────
   【表示時】.active クラスが付いた時
   ────────────────────────────── */
#fv .item.active .title {
  width: 100%;
  opacity: 1;
}

#fv .item.active .text {
  width: 100%;
  opacity: 1;
}

/* ──────────────────────────────
   【重要】消える時：.hide クラスが付いた時
   横幅（width: 100%）を維持したまま、フェードアウトさせる
   ────────────────────────────── */
#fv .item.hide .title,
#fv .item.hide .text {
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-out, width 0s; 
}

@media screen and (min-width: 769px){
	.sp-only {
		display: none;
	}
}
@media screen and (max-width: 768px) {

  #fv .item .title {
    transition: width 2s ease-in, opacity 0.6s ease-out !important;
  }

  #fv .item .text {
    transition: width 3s ease-in, opacity 0.6s ease-out !important;
  }

}