@charset "utf-8";
.bg-lazy {
    background-image: none !important;
}


/* --- home --- */
.home_secTtl {
	color: #d9b97a;
	font-size: 2.285714em;
	font-weight: normal;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.section > .img {
	position: relative;
	width: 90%;
	max-width: 1080px;
	margin: 48px auto 0;
	background: center/cover no-repeat;
}
.section > .img::before {
	display: block;
	padding-top: 66.667%;
	content: '';
}
.section > .img > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.section > .btn + .img {
	margin-top: 120px;
}
.section > .textArea {
	margin-top: 40px;
}
.section > .textArea p {
	text-align: center;
}
.section > .btn {
	margin: 40px auto 0;
}
.section > .btn + .btn {
	margin-top: 16px;
}

.catchphrase {
	position: absolute;
	right: 5%;
	bottom: 5%;
}
.catchphrase .svg g path {
	fill: #fff;
	filter: drop-shadow(5px 5px 0 rgba(61, 43, 6, 0.5));
}


/* --- loading --- */
.loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background-color: #3d2b06;
	animation: byeShutter 2.6s 0.75s forwards;
}
.loading .loadLogo {
	position: absolute;
	width: 50%;
	max-width: 320px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.loading .loadLogo::after {
	display: block;
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	z-index: 2;
	background: #3d2b06;
	opacity: 0.9;
	transform: scaleX(1);
	transform-origin: right;
	animation: anim 1.5s ease-in 0s forwards;
	content: '';
}
.loading .loadLogo img {
	position: absolute;
	top: -1px;
	left: -1px;
	width: 100%;
}
.loading .loadLogo .svg .gray,
.loading .loadLogo .svg .black {
	animation: colorChange 1.5s 0s forwards;
}
@keyframes anim {
	0% {
		transform: scaleX(1);}
	100% {
		transform: scaleX(0);}
}
@keyframes colorChange {
	100% {
		fill: #fff;
	}
}
@keyframes byeShutter {
	70% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		display: none;
		z-index: -1;
	}
}


/* --- popup --- */
[id^='pop-up'] {
	display: none;
}
.overlay {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(0, 0, 0, 0.7);
	color: #333;
	transition: opacity 500ms;
	visibility: visible;
	opacity: 1;
}
[id^='pop-up']:checked + .overlay {
	visibility: hidden;
	opacity: 0;
}
[id^='pop-up']:checked + .overlay a {
	pointer-events: none;
}
.popup {
	display: flex;
	flex-flow: column;
	align-items: center;
	position: relative;
}
.popup a:hover {
	opacity: 1;
}
.popup img {
	max-width: 90vw;
	max-height: calc(90vh - 50px);
}
.popup .popClose {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 50px;
	height: 50px;
	margin: 0 0 8px auto;
	background: #fff;
	color: inherit;
	font-size: 32px;
	font-weight: bold;
	text-decoration: none;
}
.popup .popClose span {
	display: block;
	position: absolute;
	left: 8px;
	width: 34px;
	border-bottom: 2px solid #000;
	transition: 0.35s ease-in-out;
}
.popup .popClose span:nth-child(1) {
	top: 24px;
	transform: rotate(-45deg);
}
.popup .popClose span:nth-child(2) {
	opacity: 0;
}
.popup .popClose span:nth-child(3) {
	top: 24px;
	transform: rotate(45deg);
}


/* --- contents --- */
#contents {
	background: #fff;
}
@keyframes fadein {
	100% {
		opacity: 1;
	}
}


/* --- eisei --- */
.eisei {
	padding: 64px 0;
}

.eisei.is-fixed {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 90;
	padding: 20px;
	transition: opacity 0.3s;
}
.eisei.is-scroll {
	opacity: 0;
	visibility: hidden;
}

.eisei__item {
	position: relative;
}

.eisei__link {
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	height: 100%;
	padding: 10px 20px 10px 0;
	border: solid 2px #d9b97a;
	border-radius: 50px;
	background: #f4f4f4;
	text-decoration: none;
}
.eisei__item-txt {
	flex: 1 0 0;
	padding: 3px;
	font-size: 1.125em;
	font-weight: bold;
	line-height: 1.25;
}
.eisei__item-txt .small {
	display: block;
}

.eisei__item [class^="illust"] {
	position: relative;
	width: 60px;
	margin: 0 14px 0 20px;
}
.eisei__item [class^="illust"]::after {
	display: block;
	padding-top: 100%;
	background: url(../img/eisei/assets.png) no-repeat 0 0/500% 600%;
	content: '';
}
.eisei__item [class^="illust_"]::after {
	background: url(../img/eisei/assets02.png) no-repeat 0 0/200% 100%;
}
.eisei__item .illust03::after {
	background-position: 50% 0;
}
.eisei__item .illust_excl::after {
	background-position: 100% 0;
}


/* --- online --- */
#online {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 90;
	width: 125px;
}


/* --- visual --- */
#visual {
	position: relative;
	height: 100vh;
	min-height: 640px;
}
#visual p {
	position: absolute;
	top: 25%;
	left: 10vw;
}
#visual .svg {
	width: 80vw;
	height: 29.5vw;
}
#visual .svg g:nth-child(1) path {
	backface-visibility: hidden;
	transform: translateY(-25%);
}
#visual .svg g:nth-child(2) {
}

.visual__weddingpark-award {
	position: absolute;
	bottom: -12px;
	left: 20px;
	width: 160px;
}
.visual__weddingpark-award img {
	width: 100%;
	height: auto;
}
.visual__weddingpark-award_column {
	position: absolute;
	bottom: -12px;
	left: 20px;
	display: flex;
	gap: 10px;
	width: 320px;
}
.visual__weddingpark-award_column img {
	width: 50%;
}

.mainvisualSlide {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100vh;
	min-height: 512px;
	overflow: hidden;
}
.mainvisualSlide .bgImg {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	/*opacity: 0;*/
}
.mainvisualSlide .bgImg img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*
.mainvisualSlide .bgImg {
	animation: pseudoAnimation 25s infinite;
}
.mainvisualSlide .bgImg:nth-child(2) {
	animation-delay: 5s;
}
.mainvisualSlide .bgImg:nth-child(3) {
	animation-delay: 10s;
}
.mainvisualSlide .bgImg:nth-child(4) {
	animation-delay: 15s;
}
.mainvisualSlide .bgImg:nth-child(5) {
	animation-delay: 20s;
}
.mainvisualSlide .bgImg:nth-child(6) {
	animation-delay: 25s;
}
.mainvisualSlide .bgImg:nth-child(7) {
	animation-delay: 15s;
}
.mainvisualSlide .bgImg:nth-child(8) {
	animation-delay: 30s;
}
.mainvisualSlide .bgImg:nth-child(9) {
	animation-delay: 35s;
}
.mainvisualSlide .bgImg:nth-child(10) {
	animation-delay: 40s;
}
@keyframes pseudoAnimation {
	0% {
		opacity: 0;
	}
	5% {
		opacity: 1;
	}
	25% {
		opacity: 1;
	}
	30% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
*/
@keyframes comedown {
	0% {
		opacity: 0;
		transform: translateY(-25%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}


/* --- notice --- */
#notice {
	padding: 80px 0 0;
}
#notice dl, #notice article {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}
#notice dl:not(:first-child),
#notice article:not(:first-child) {
	margin-top: 40px;
}
#notice dt {
	padding: 14px 0 12px;
	font-size: 1.25em;
	font-weight: 400;
	background: #f4f4f4;
}
#notice dt:first-child {
	border-top: 1px solid #222;
}
#notice dt.large {
	font-size: 1.5em;
	font-weight: bold;
}
#notice dd {
	padding: 21px 0 23px;
	font-size: 1.07142857em;
	letter-spacing: 0.1em;
	border-bottom: 1px solid #222;
}
#notice dd p {
	margin-top: 15px;
	text-align: center;
}
#notice dd p:first-child {
	margin-top: 0;
}
#notice dd p strong {
	font-weight: normal;
}
#notice dd p b {
	display: inline-block;
	padding-top: 0.75em;
}
#notice dd p + .btnWrap {
	margin-top: 20px;
}
#notice dd .btnWrap p {
	width: 280px;
	margin: 0 auto 0.25em;
	font-size: 1.067em;
	text-align: left;
}
#notice dd .btnWrap .tag {
	display: inline-block;
	margin-right: 0.5em;
	padding: 0.25em 0.5em;
	background: rgba(230, 0, 18, 1);
	color: #fff;
	line-height: 1;
	vertical-align: middle;
}
#notice article h1 {
	width: 100%;
	font-size: 1.5em;
	letter-spacing: 0;
}
#notice article .btn {
	margin-top: 20px;
}


/* --- topics --- */
#topics {
	padding-top: 100px;
}
#topics .btn {
	margin-top: 48px;
}

[class^="post"] article .meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
[class^="post"] article .meta span {
	margin-right: 1.25em;
	line-height: 1.25;
}
[class^="post"] article .meta .date {
	display: none;
	color: #757575;
}
[class^="post"] article .meta .category {
	width: 5em;
	padding: 0.125em 0;
	background: #ddd;
	font-size: 0.9375em;
	text-align: center;
	text-transform: uppercase;
}
[class^="post"] article.cat001 .meta .category {/*News*/
	background: #d9b97a;
	color: #fff;
}
[class^="post"] article.cat002 .meta .category {/*Fair*/
	background: #8bc63e;
	color: #fff;
}
[class^="post"] article.cat003 .meta .category {/*Plan*/
	background: #e3616c;
	color: #fff;
}

.postWrap {
	padding-top: 48px;
}

.postList:not(.slick-slider) {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
}
.postList article {
	width: calc((100% - 65px) /3);
}
.postList article a {
	color: currentColor;
	font-size: 1.142857em;
	text-decoration: none;
}
.postList article .meta {
	flex: 0 0 auto;
	margin-top: 1em;
}
.postList article h1 {
	margin-top: 0.25em;
	font-size: 1em;
	font-weight: normal;
}
.postList article a:hover h1 {
	text-decoration: underline;
}
.postList article .thumbnail {
	position: relative;
	background: #efefef;
}
.postList article .thumbnail::before {
	display: block;
	padding-top: 64%;
	background: url(../img/share/logo.svg) no-repeat center/50% auto;
	content: '';
}
.postList article .thumbnail img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: auto;
}


/* --- fixedBnr --- */
#fixedBnr {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 90;
	font-family: YakuHanMP, '游明朝', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'Noto Serif JP', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
}
#fixedBnr a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 160px;
	height: 160px;
	padding-top: 0.25em;
	color: #fff;
	border: 3px solid #b40014;
	border-radius: 50%;
	background: #b40014;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
}
#fixedBnr a::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 2px solid currentColor;
	border-radius: 50%;
	content: '';
}
#fixedBnr a:hover,
#fixedBnr.active a {
	color: #b40014;
	border-color: #fff;
	background: #fff;
	opacity: 1;
}
#fixedBnr a span {
	margin-right: -0.08em;
}
#fixedBnr a b {
	font-weight: bold;
	font-size: 1.25em;
}


/* --- banner --- */
.banner {
	padding-top: 100px;
}
.banner .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.banner__item {
	display: block;
	width: 100%;
	text-align: center;
}
.banner__item + .banner__item {
	margin-top: 32px;
}
.banner__item a {
	text-decoration: none;
}
.banner__item p {
	text-align: center;
	font-size: 1.0625em;
	transition: color 0.3s, border 0.3s, background 0.3s;
}

.banner__item.half {
	width: calc(50% - 16px);
}
.banner__item.half:nth-child(2) {
	margin-top: 0;
}

.banner__item .banner__heading {
	padding-bottom: 0.25em;
	font-size: 1.5em;
	font-weight: bold;
}

.banner__item--award-fair a {
	display: block;
	padding: 8px 0 0;
	border: 1px solid #3d2b05;
	transition: color 0.3s, border 0.3s, background 0.3s;
}
.banner__item--award-fair img {
	width: 55%;
}
.banner__item--award-fair a p {
	margin-top: 8px;
	background: #3d2b05;
	color: #fff;
}
.banner__item--award-fair a:hover {
	border-color: #c99b40;
}
.banner__item--award-fair a:hover p {
	background: #c99b40;
}


/* --- concept --- */
#concept .catchphrase {
	width: 32.6%;
}

#concept .svg g:nth-child(1) path {
	backface-visibility: hidden;
	opacity: 0;
	transform: translateY(-25%);
}
#concept .svg g:nth-child(2) {
	opacity: 0;
}
.loadComp #concept .is-animated .svg g:nth-child(1) path {
	animation: comedown 1s cubic-bezier(0.425, 0.005, 0, 1) 0s forwards;
}
.loadComp #concept .is-animated .svg g:nth-child(1) path:nth-child(2) {
	animation-delay: 0.125s;
}
.loadComp #concept .is-animated .svg g:nth-child(1) path:nth-child(3) {
	animation-delay: 0.25s;
}
.loadComp #concept .is-animated .svg g:nth-child(1) path:nth-child(4) {
	animation-delay: 0.375s;
}
.loadComp #concept .is-animated .svg g:nth-child(1) path:nth-child(5) {
	animation-delay: 0.5s;
}
.loadComp #concept .is-animated .svg g:nth-child(1) path:nth-child(6) {
	animation-delay: 0.625s;
}
.loadComp #concept .is-animated .svg g:nth-child(1) path:nth-child(7) {
	animation-delay: 0.75s;
}
.loadComp #concept .is-animated .svg g:nth-child(1) path:nth-child(8) {
	animation-delay: 0.875s;
}
.loadComp #concept .is-animated .svg g:nth-child(1) path:nth-child(9) {
	animation-delay: 1s;
}
.loadComp #concept .is-animated .svg g:nth-child(1) path:nth-child(10) {
	animation-delay: 1.125s;
}
.loadComp #concept .is-animated .svg g:nth-child(1) path:nth-child(11) {
	animation-delay: 1.375s;
}
.loadComp #concept .is-animated .svg g:nth-child(2) {
	animation: fadein 2s 1.625s forwards;
}


/* --- bridalfair --- */
.home_secTtl + #fairCat,
.home_secTtl + #bestrate{
	padding-top: 48px;
}
#bestrate + #fairCat {
	padding-top: 64px;
}

.pickup__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1024px;
	margin: 54px auto 0;
	padding: 0 10px;
}
.pickup__list + .pickup__list {
	margin-top: 0;
}
.pickup__item {
	position: relative;
	overflow: hidden;
	width: calc(50% - 20px);
	max-width: 500px;
	margin: 20px 10px 0;
	background: #f7f3eb;
}
.pickup__item a {
	display: block;
	text-decoration: none;
}
.pickup__item_img {
	position: relative;
	width: 100%;
}
.pickup__item_img::before {
	display: block;
	padding-top: 56.25%;
	content: '';
}
.pickup__item_img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: auto;
}
.pickup__item_body {
	padding: 0 20px 20px;
}
.pickup__item_ttl {
	font-size: 1.142857em;
	font-weight: normal;
	line-height: 1.75;
	letter-spacing: 0;
}
.pickup__item_tag {
	display: inline-block;
	min-width: 8em;
	padding: 0.5em 1em;
	background: #8bc63e;
	color: #fff;
	font-size: 1em;
	line-height: 1;
	text-align: center;
	transform: translateY(-50%);
}
.pickup__item_tag--limit,
.pickup__item_tag--newYear,
.pickup__item_tag--goldenWeek {
	background: #d8bc02;
}
.pickup__item_tag--online,
.pickup__item_tag--selectable {
	background: #b38540;
}
.pickup__item_tag--holiday {
	background: #b40014;
}
.pickup__item_tag--saturday {
	background: #0046aa;
}
.pickup__item_tag--recommended {
	background: #eb5461;
}
.pickup__item_tag--firstVisit {
	background: #d24136;
}

.pickup__item--wide {
	width: 100%;
	max-width: 640px;
}
.pickup__item--wide .pickup__item_body {
	padding-top: 20px;
}
.pickup__item--wide .pickup__item_tag {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1.25em;
	transform: translateY(0);
}

.special-fair {
	display: flex;
	justify-content: center;
	gap: 30px;
	width: 100%;
	max-width: 1100px;
	margin-top: 56px;
	margin: 56px auto 0;
	padding: 0 20px;
}
.special-fair__link {
	display: block;
	max-width: 450px;
	text-decoration: none;
}
.special-fair__link p {
	padding: 0.5em 1em;
	background: #b91a0e;
	color: #fff;
	font-size: 1.25em;
	font-weight: bold;
	text-align: center;
	line-height: 1;
}
.special-fair__link img {
	max-width: 100%;
	height: auto;
}


/* --- plan --- */
#plan ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 64px auto 0;
}
#plan ul li {
	width: calc((100% - 90px) / 4);
	max-width: 320px;
	margin: 0 10px;
}
#plan ul li a {
	text-decoration: none;
}
#plan ul li .img {
	background: center/cover no-repeat;
}
#plan ul li .img-overlay {
	overflow: hidden;
	border-radius: 50%;
}
#plan ul li .img::before {
	display: block;
	padding-top: 100%;
	content: '';
}
#plan ul li .textArea {
	padding-top: 16px;
}
#plan ul li h3 {
	font-size: 1.25em;
	font-weight: normal;
	line-height: 1.5;
	text-align: center;
}


/* --- cuisine --- */
#cuisine .catchphrase.dish {
	width: 32.0833%;
}
#cuisine .catchphrase.cake {
	width: 42.29166%;
}

#cuisine .svg g:nth-child(1) {
	opacity: 0;
}
#cuisine .svg g:nth-child(2) path {
	backface-visibility: hidden;
	opacity: 0;
	transform: translateY(-25%);
}
.loadComp #cuisine .is-animated .svg g:nth-child(1) {
	animation: fadein 2s 0s forwards;
}
.loadComp #cuisine .is-animated .svg g:nth-child(2) path {
	animation: comedown 1s cubic-bezier(0.425, 0.005, 0, 1) 0.635s forwards;
}
.loadComp #cuisine .is-animated .svg g:nth-child(2) path:nth-child(2) {
	animation-delay: 0.75s;
}
.loadComp #cuisine .is-animated .svg g:nth-child(2) path:nth-child(3) {
	animation-delay: 0.875s;
}
.loadComp #cuisine .is-animated .svg g:nth-child(2) path:nth-child(4) {
	animation-delay: 1s;
}
.loadComp #cuisine .is-animated .svg g:nth-child(2) path:nth-child(5) {
	animation-delay: 1.125s;
}
.loadComp #cuisine .is-animated .svg g:nth-child(2) path:nth-child(6) {
	animation-delay: 1.375s;
}
.loadComp #cuisine .is-animated .svg g:nth-child(2) path:nth-child(7) {
	animation-delay: 1.5s;
}
.loadComp #cuisine .is-animated .svg g:nth-child(2) path:nth-child(8) {
	animation-delay: 1.625s;
}
.loadComp #cuisine .is-animated .svg g:nth-child(2) path:nth-child(9) {
	animation-delay: 1.75s;
}
.loadComp #cuisine .is-animated .svg g:nth-child(2) path:nth-child(10) {
	animation-delay: 1.875s;
}
.loadComp #cuisine .is-animated .svg g:nth-child(2) path:nth-child(11) {
	animation-delay: 2s;
}


/* --- photo --- */
#photo .catchphrase {
	width: 30.625%;
}

#photo .svg g:nth-child(1) {
	opacity: 0;
}
#photo .svg g:nth-child(2) path {
	backface-visibility: hidden;
	opacity: 0;
	transform: translateY(-25%);
}
.loadComp #photo .is-animated .svg g:nth-child(1) {
	animation: fadein 2s 0s forwards;
}
.loadComp #photo .is-animated .svg g:nth-child(2) path {
	animation: comedown 1s cubic-bezier(0.425, 0.005, 0, 1) 0.635s forwards;
}
.loadComp #photo .is-animated .svg g:nth-child(2) path:nth-child(2) {
	animation-delay: 0.75s;
}
.loadComp #photo .is-animated .svg g:nth-child(2) path:nth-child(3) {
	animation-delay: 0.875s;
}
.loadComp #photo .is-animated .svg g:nth-child(2) path:nth-child(4) {
	animation-delay: 1s;
}
.loadComp #photo .is-animated .svg g:nth-child(2) path:nth-child(5) {
	animation-delay: 1.125s;
}
.loadComp #photo .is-animated .svg g:nth-child(2) path:nth-child(6) {
	animation-delay: 1.375s;
}
.loadComp #photo .is-animated .svg g:nth-child(2) path:nth-child(7) {
	animation-delay: 1.5s;
}
.loadComp #photo .is-animated .svg g:nth-child(2) path:nth-child(8) {
	animation-delay: 1.625s;
}
.loadComp #photo .is-animated .svg g:nth-child(2) path:nth-child(9) {
	animation-delay: 1.75s;
}
.loadComp #photo .is-animated .svg g:nth-child(2) path:nth-child(10) {
	animation-delay: 1.875s;
}
.loadComp #photo .is-animated .svg g:nth-child(2) path:nth-child(11) {
	animation-delay: 2s;
}


/* --- dress --- */
#dress .catchphrase {
	width: 56.875%;
}

#dress .svg g:nth-child(1) path {
	backface-visibility: hidden;
	opacity: 0;
	transform: translateY(-25%);
}
#dress .svg g:nth-child(2) {
	opacity: 0;
}
.loadComp #dress .is-animated .svg g:nth-child(1) path {
	animation: comedown 1s cubic-bezier(0.425, 0.005, 0, 1) 0s forwards;
}
.loadComp #dress .is-animated .svg g:nth-child(1) path:nth-child(2) {
	animation-delay: 0.125s;
}
.loadComp #dress .is-animated .svg g:nth-child(1) path:nth-child(3) {
	animation-delay: 0.25s;
}
.loadComp #dress .is-animated .svg g:nth-child(1) path:nth-child(4) {
	animation-delay: 0.375s;
}
.loadComp #dress .is-animated .svg g:nth-child(1) path:nth-child(5) {
	animation-delay: 0.5s;
}
.loadComp #dress .is-animated .svg g:nth-child(1) path:nth-child(6) {
	animation-delay: 0.625s;
}
.loadComp #dress .is-animated .svg g:nth-child(1) path:nth-child(7) {
	animation-delay: 0.75s;
}
.loadComp #dress .is-animated .svg g:nth-child(1) path:nth-child(8) {
	animation-delay: 0.875s;
}
.loadComp #dress .is-animated .svg g:nth-child(1) path:nth-child(9) {
	animation-delay: 1s;
}
.loadComp #dress .is-animated .svg g:nth-child(1) path:nth-child(10) {
	animation-delay: 1.125s;
}
.loadComp #dress .is-animated .svg g:nth-child(1) path:nth-child(11) {
	animation-delay: 1.375s;
}
.loadComp #dress .is-animated .svg g:nth-child(1) path:nth-child(12) {
	animation-delay: 1.5s;
}
.loadComp #dress .is-animated .svg g:nth-child(1) path:nth-child(13) {
	animation-delay: 1.625s;
}
.loadComp #dress .is-animated .svg g:nth-child(1) path:nth-child(14) {
	animation-delay: 1.75s;
}
.loadComp #dress .is-animated .svg g:nth-child(1) path:nth-child(15) {
	animation-delay: 1.875s;
}
.loadComp #dress .is-animated .svg g:nth-child(2) {
	animation: fadein 2s 2.125s forwards;
}


/* --- report --- */


/* --- movie --- */
#movie .playerBox {
	width: 90%;
	max-width: 1080px;
	margin: 46px auto 0;
}
#movie .player {
	overflow: hidden;
	position: relative;
	border: 1px solid currentColor;
}
#movie .player::before {
	display: block;
	padding-top: 56.25%;
	content: '';
}
#movie .player .thumb {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: auto;
	background: center/cover no-repeat;
}
#movie .player .thumb::before {
	display: block;
	padding-top: 56.25%;
	content: '';
}
#movie .player iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(35, 24, 21, 0.75);
}


/* --- access --- */
#access .img {
	border: 5px solid #231815;
}
#access .img::before {
	padding-top: 78.7037%;
}
#access .media {
	width: 90%;
	max-width: 1080px;
	margin: 48px auto 0;
}
.access__main {
	text-align: center;
}
.access__main dt {
	margin-top: 40px;
	font-size: 1.07142857em;
	font-weight: bold;
}
.access__main dt:first-child {
	margin-top: 0;
}
.access__main dd {
	line-height: 1.8;
}
.access__main dd a[href^="tel:"] {
	font-family: YakuHanMP, 'Playfair Display', 'Noto Serif JP', '游明朝', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
	font-size: 2em;
	text-decoration: none;
}
.access__main a b {
	font-weight: 500;
}
.access__main a .svg {
	width: 0.75em;
	height: 0.75em;
	margin-right: 0.25em;
	stroke-width: 1.5px;
	vertical-align: middle;
}
.access__main dd span {
	display: block;
	padding-top: 0.5em;
}


/* --- aboutPage --- */
#aboutPage {
	padding-top: 100px;
}
#aboutPage a {
	display: block;
	position: relative;
	background: #f7f3eb center/cover no-repeat;
	color: #fff;
	font-size: 1.2857em;
	text-decoration: none;
}
#aboutPage a::before {
	display: block;
	padding-top: 25%;
	background: #000;
	content: '';
	opacity: 0.25;
}
#aboutPage a:hover::before {
	opacity: 0;
}
#aboutPage a .ttl {
	position: absolute;
	top: 50%;
	left: 32px;
	transform: translateY(-50%);
}
#aboutPage a[href*="faq"] {
	background-image: url(../img/index/img-faq.jpg);
}


/* --- other --- */
#other {
	margin-top: 100px;
	padding: 64px 0;
	background: #f7f3eb;
}
#other a {
	display: block;
}
#other a + a {
	margin-top: 32px;
}

@media (min-width: 811px) {
	/* --- eisei --- */
	.eisei .inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.eisei .inner .eisei__item {
		width: calc(50% - 10px);
		font-size: 1.25em;
	}
	.eisei .inner .eisei__item:nth-child(n+3) {
		margin-top: 20px;
	}
	.eisei .inner .eisei__item:first-child:last-child {
		margin: 0 auto;
	}

	/* --- aboutPage --- */
	#aboutPage a {
		font-size: 1.75em;
	}
	#aboutPage a .ttl {
		left: 50%;
		transform: translate(-50%, -50%);
	}
}
@media (min-width: 641px) {
	/* --- eisei --- */
	.eisei.is-fixed .eisei__item-txt .aks {
		display: block;
	}


	/* --- notice --- */
	#notice.column {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	#notice.column dl,
	#notice.column article {
		width: 50%;
		max-width: 400px;
		margin: 0;
	}
	#notice article:first-child:last-child {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		max-width: 1024px;
	}
	#notice article:first-child:last-child .btn {
		margin: 20px 10px 0;
	}


	/* --- banner --- */
	.banner__item--award-fair {
		max-width: 510px;
		margin: 0 auto;
	}


	/* --- weddingpark-award --- */
	.weddingpark-award__link p {
		font-size: 1.125em;
	}


	/* --- movie --- */
	#movie .player .thumb {
		background-image: url(../img/index/img-movie-thumbnail.jpg);
	}


	/* --- access --- */
	#access .img {
		background-image: url(../img/access/accessmap.gif);
	}
}
@media (max-width: 810px) {
	/* --- eisei --- */
	.eisei__item +.eisei__item {
		margin-top: 20px;
	}


	/* --- visual --- */
	#visual p {
		top: 15%;
		left: 5vw;
	}
	#visual p .svg {
		width: 90vw;
		height: 33vw;
	}


	/* --- plan --- */
	#plan ul {
		justify-content: space-between;
		width: 90%;
	}
	#plan ul li {
		width: calc(50% - 10px);
		max-width: none;
		margin: 0;
	}
	#plan ul li:nth-child(n+3) {
		margin-top: 32px;
	}
}
@media (max-width: 640px) {
	.home_secTtl {
		font-size: 2.5em;
	}

	.section > .img {
		width: 100%;
	}
	.section > .textArea p.notice {
		display: flex;
		justify-content: center;
		font-size: 0.9em;
		text-align: left;
	}
	.section > .btn {
		margin-right: 20px;
		margin-left: 20px;
	}


	/* --- notice --- */
	#notice dl.newYear dd p,
	#notice dd p.left {
		text-align: left;
	}


	/* --- visual --- */
	.visual__weddingpark-award,
	.visual__weddingpark-award_column {
		right: 20px;
		bottom: 20px;
		left: auto;
	}
	.visual__weddingpark-award_column {
		width: 300px;
	}


	/* --- fixedBnr --- */
	#fixedBnr {
		display: none;
	}


	/* --- topics --- */
	.postList:not(.slick-slider) {
		gap: 48px;
	}
	.postList article {
		width: 100%;
	}
	.postList article a {
		display: block;
		font-size: 1.0909091em;
	}

	.topicsSlide .slick-slide {
		margin-right: 16px !important;
		margin-left: 16px !important;
	}
	.topicsSlide .slick-slide:not(.slick-active) a {
		pointer-events: none;
	}
	.topicsSlide .slick-dots {
		margin-top: 1em;
	}


	/* --- bridalfair --- */
	.pickup__item_ttl {
		font-size: 1.0909091em;
	}
	.pickup__item_tag {
		padding: 0.25em 1em;
		transform: translateY(0);
	}
	.pickup__item:not([class*="--wide"]) {
		width: 100%;
		max-width: none;
		padding: 20px 0 0 20px;
	}
	.pickup__item:not([class*="--wide"]) a {
		display: flex;
		align-items: flex-start;
	}
	.pickup__item:not([class*="--wide"]) .pickup__item_img {
		width: 140px;
		margin-bottom: 20px;
	}
	.pickup__item:not([class*="--wide"]) .pickup__item_img::before {
		padding-top: 100%;
	}
	.pickup__item:not([class*="--wide"]) .pickup__item_body {
		width: calc(100% - 140px);
		padding-right: 0;
	}
	.pickup__item--wide {
		padding-top: 1.85em;
		text-align: center;
	}
	.pickup__item--wide .pickup__item_tag {
		width: 100%;
	}

	.special-fair__link {
		max-width: 430px;
	}
	.special-fair__link p {
		font-size: 1em;
	}


	/* --- weddingpark-award --- */


	/* --- plan --- */


	/* --- banner --- */
	.banner__item.half {
		width: calc(50% - 10px);
	}
	.banner__item + .banner__item {
		margin-top: 20px;
	}


	/* --- concept --- */


	/* --- cuisine --- */


	/* --- photo --- */


	/* --- dress --- */


	/* --- report --- */


	/* --- movie --- */
	#movie .playerBox {
		width: 100%;
	}
	#movie .player .thumb {
		background-image: url(../img/index/img-movie-thumbnail-sp.jpg);
	}


	/* --- access --- */
	#access .img {
		background-image: url(../img/access/accessmap-sp.gif);
	}


	/* --- other --- */
	#other a + a {
		margin-top: 20px;
	}
}