/* --------------------------------------------------------------------------------
reset
-------------------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
	font: inherit;
	border: none;
	margin: 0px;
	padding: 0px;
}
html {
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: transparent;
}
a {
	text-decoration: none;
	color: inherit;
}
ul,
ol {
	list-style: none;
}
table {
	border-collapse: collapse;
}
iframe,
img,
svg,
video {
	display: block;
}
img {
	max-width: 100%;
	height: auto;
}



/* --------------------------------------------------------------------------------
essential
-------------------------------------------------------------------------------- */

html {
	font-size: 16px;
}
body {
	text-align: justify;
  font-family: source-han-sans-japanese, "Yu Gothic", YuGothic, sans-serif;
	font-size: 0.9375rem;
	font-weight: 300;
	font-feature-settings: "palt";
	line-height: 2rem;
	letter-spacing: 0.05em;
	color: #252526;
	/* -webkit-text-size-adjust: none; */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* -webkit-tap-highlight-color: rgba(0, 0, 0, 0); */
}
a {
	text-decoration: none;
	color: inherit;
}
a.underline {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.25em;
}
a.color {
	transition: 0.25s color ease;
}
a.color:hover {
	color: #a0a0a0;
}
h1 {
	font-size: 1.5rem;
}
h2 {
	font-size: 1.375rem;
}
h3 {
	font-size: 1.25rem;
}
h4 {
	font-size: 1.125rem;
}
h5 {
	font-size: 0.9375rem;
}
p.center {
	text-align: center;
}
p.indent {
	text-indent: -1em;
	padding-left: 1em;
}
p.note {
	font-size: 0.8125rem;
	font-weight: 200;
	line-height: 1.375rem;
}
span.required {
	color: #ff0000;
}



/* --------------------------------------------------------------------------------
form
-------------------------------------------------------------------------------- */

input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=button],
input[type=submit],
button,
textarea,
select {
	display: inline-block;
	box-sizing: border-box;
	max-width: 100%;
	vertical-align: top;
	font-size: 1rem;
	font-weight: 300;
	outline: none;
	border: none;
	margin: 0px;
	background-color: #ebebeb;
	border-radius: 0px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
select,
textarea {
  font-family: "Yu Gothic", YuGothic, sans-serif;
	line-height: 50px;
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel] {
	height: 50px;
	padding: 0px 10px;
}
input[type=button],
input[type=submit],
button {
	text-align: center;
  font-family: source-han-sans-japanese, "Yu Gothic", YuGothic, sans-serif;
	line-height: 50px;
	color: #ffffff;
	cursor: pointer;
	padding: 0px 20px;
	background-color: #252526;
	transition: 0.25s background-color ease;
}
input[type=button]:hover,
input[type=submit]:hover,
button:hover {
	background-color: #7f7f7f;
}
input[type=radio],
input[type=checkbox] {
	position: relative;
	vertical-align: middle;
	width: 20px;
	margin-right: 5px;
	transform: translate(-9999px, -4px);
}
input[type=radio]::before,
input[type=checkbox]::before,
input[type=radio]::after,
input[type=checkbox]::after {
	position: absolute;
	left: 9999px;
	top: 0px;
	cursor: pointer;
	content: "";
}
input[type=radio]::before,
input[type=checkbox]::before,
label.alternate input[type=radio] + span,
label.alternate input[type=checkbox] + span {
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	background-color: #ebebeb;
}
input[type=radio]::after,
input[type=checkbox]::after,
label.alternate input[type=radio] + span::before,
label.alternate input[type=checkbox] + span::before {
	opacity: 0;
	transition: 0.25s opacity ease;
}
input[type=radio]:checked::after,
input[type=checkbox]:checked::after,
label.alternate input[type=radio]:checked + span::before,
label.alternate input[type=checkbox]:checked + span::before {
	opacity: 1;
}
input[type=radio]::after,
label.alternate input[type=radio] + span::before {
	width: 12px;
	height: 12px;
	background-color: #252526;
}
input[type=radio]::after {
	transform: translate(4px, 4px);
}
input[type=checkbox]::after,
label.alternate input[type=checkbox] + span::before {
	width: 5px;
	height: 10px;
	border-right: 3px solid #252526;
	border-bottom: 3px solid #252526;
}
input[type=checkbox]::after {
	transform: translate(6px, 1px) rotate(45deg);
}
@-moz-document url-prefix() {
	input[type=radio],
	input[type=checkbox] {
		margin-right: 0px;
		transform: translate(0px, 0px);
	}
}
@supports (-ms-ime-align:auto) {
	input[type=radio],
	input[type=checkbox] {
		margin-right: 0px;
		transform: translate(0px, 0px);
	}
}
@media all and (-ms-high-contrast:none) {
	input[type=radio],
	input[type=checkbox] {
		margin-right: 0px;
		transform: translate(0px, 0px);
	}
}
label {
	vertical-align: middle;
}
label.alternate {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 5px;
}
label.alternate input[type=radio],
label.alternate input[type=checkbox] {
	display: none;
}
label.alternate input[type=radio] + span,
label.alternate input[type=checkbox] + span {
	display: block;
	position: relative;
	cursor: pointer;
	transform: translate(0px, -1px);
}
label.alternate input[type=radio] + span::before,
label.alternate input[type=checkbox] + span::before {
	display: block;
	position: absolute;
	content: "";
}
label.alternate input[type=radio] + span::before {
	transform: translate(4px, 4px);
}
label.alternate input[type=checkbox] + span::before {
	transform: translate(6px, 1px) rotate(45deg);
}
textarea {
	line-height: 1.75rem;
	padding: 15px 10px;
}
select {
	height: 50px;
	color: #252526;
	padding: 0px 25px 0px 10px;
	background-image: url(../images/arrow-select.svg);
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: auto 10px;
}
select::-ms-expand {
	display: none;
}
::-webkit-input-placeholder {
	color: #a0a0a0;
}
:-ms-input-placeholder {
	color: #a0a0a0;
}
::placeholder {
	color: #a0a0a0;
}
form#searchform label.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}



/* --------------------------------------------------------------------------------
misc
-------------------------------------------------------------------------------- */

img {
	display: block;
	max-width: 100%;
	height: auto;
}
img.small {
	display: none;
}
br.small {
	display: none;
}
br.large {
	display: inline;
}
hr {
	height: 0px;
	border-width: 1px 0px 0px 0px;
	border-style: solid;
	border-color: #a0a0a0;
	margin: 30px 0px;
}
mark {
	margin: 0px 5px;
	padding: 0px 5px;
	background-color: #cccccc;
	border-radius: 2.5px;
}
div.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
}
div.video-wrapper iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
iframe.wp-embedded-content {
	width: 100%;
}
*.alignleft {
	display: inline;
	float: left;
	margin-right: 20px;
}
*.alignright {
	display: inline;
	float: right;
	margin-left: 20px;
}
*.aligncenter {
	clear: both;
	display: block;
	margin: auto;
}
*.margin-bottom-extra-narrow {
	margin-bottom: 10px;
}
*.margin-bottom-narrow {
	margin-bottom: 20px;
}
*.margin-bottom {
	margin-bottom: 40px;
}
*.margin-bottom-wide {
	margin-bottom: 80px;
}



/* --------------------------------------------------------------------------------
icon
-------------------------------------------------------------------------------- */

@font-face {
  font-family: "icon";
  src: url("../fonts/icon.ttf") format("truetype"), url("../fonts/icon.woff") format("woff"), url("../fonts/icon.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
i.icon {
  font-family: "icon";
  line-height: 1em;
}
i.icon-search:before {
  content: "\e900";
}
i.icon-mail:before {
  content: "\e901";
}
i.icon-tel:before {
  content: "\e902";
}
i.icon-calendar:before {
  content: "\e903";
}
i.icon-location:before {
  content: "\e904";
}
i.icon-arrow-play:before {
  content: "\e905";
}
i.icon-line:before {
  content: "\e906";
}
i.icon-instagram:before {
  content: "\e907";
}
i.icon-youtube:before {
  content: "\e908";
}
i.icon-tiktok:before {
  content: "\e909";
}
i.icon-line-alternate:before {
  content: "\e90a";
}



/* --------------------------------------------------------------------------------
page
-------------------------------------------------------------------------------- */

div#page {
	position: relative;
	overflow: hidden;
}
div#page div.container-button,
div#page p.button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
div#page div.container-button-left {
	justify-content: flex-start;
}
div#page div.container-button p.button:not(:last-child) {
	margin-right: 20px;
}
div#page p.button {
	line-height: 1.125rem;
}
div#page p.button span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
}
div#page p.button-01 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
}
div#page p.button-01-alternate {
  font-family: source-han-sans-japanese, "Yu Gothic", YuGothic, sans-serif;
	font-size: 0.8125rem;
}
div#page p.button-02 {
	font-weight: 400;
}
div#page p.button-01 a,
div#page p.button-02 a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	transition: 0.25s color ease;
}
div#page p.button-01 a {
	width: 300px;
	height: 55px;
	background-color: #efece4;
}
div#page p.button-01 a:hover,
div#page p.button-02 a:hover {
	color: #ffffff;
}
div#page p.button-01 a::before,
div#page p.button-02 a::before {
	position: absolute;
	width: 0%;
	height: 100%;
	left: 0px;
	top: 0px;
	content: "";
	transition: 0.25s width ease;
}
div#page p.button-01 a:hover::before,
div#page p.button-02 a:hover::before {
	width: 100%;
}
div#page p.button-01 a::after,
div#page p.button-02 a::after {
	position: absolute;
	width: 10px;
	height: 10px;
	top: calc(50% - 5px);
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 10px;
	content: "";
}
div#page p.button-01 a:hover::after,
div#page p.button-02 a:hover::after {
	background-image: url(../images/arrow-more-01-white.svg);
}
div#page p.button-01 a::before {
	background-color: #252526;
}
div#page p.button-01 a::after {
	right: 20px;
	background-image: url(../images/arrow-more-01-alternate.svg);
}
div#page p.button-01 i.main,
div#page p.button-01 i.main ~ i.sub {
	transform: translateY(-1px);
}
div#page p.button-01 i.main {
	font-size: 1.25rem;
}
div#page p.button-01 i.main ~ i.sub {
	font-size: 0.9375rem;
	margin-left: 5px;
}
div#page p.button-02 {
	font-size: 0.8125rem;
}
div#page p.button-02 a {
	width: 220px;
	height: 35px;
	border: 1px solid #252526;
}
div#page p.button-02-narrow a {
	width: 160px;
}
div#page p.button-02-wide a {
	width: 280px;
}
div#page p.button-02 a::before {
	background-color: #252526;
}
div#page p.button-02 a::after {
	right: 10px;
	background-image: url(../images/arrow-more-01.svg);
}
div#page p.button-03,
div#page p.button-04 {
	font-size: 0.8125rem;
	font-weight: 500;
}
div#page p.button-03 a,
div#page p.button-04 a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 240px;
	height: 50px;
	border-radius: 25px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
div#page p.button-03 a {
	color: #ffffff;
	background-color: #252526;
}
div#page p.button-03 a:hover {
	background-color: #a0a0a0;
}
div#page p.button-03 a::before,
div#page p.button-04 a::before {
	position: absolute;
	width: 6px;
	height: 6px;
	right: 25px;
	top: calc(50% - 3px);
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	content: "";
	transform: rotate(-45deg);
	transition: 0.25s border-color ease;
}
div#page p.button-03 i.icon-line-alternate {
	font-size: 1.75rem;
	margin-right: 10px;
}
div#page p.button-04 a {
	color: #252526;
	border: 1px solid #252526;
}
div#page p.button-04 a:hover {
	color: #ffffff;
	background-color: #252526;
}
div#page p.button-04 a::before {
	border-color: #252526;
}
div#page p.button-04 a:hover::before {
	border-color: #ffffff;
}
div#page p.button-more {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 0.6875rem;
	line-height: 1rem;
	margin-top: 50px;
}
div#page p.button-more a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	color: #707070;
	border: 1px solid #a0a0a0;
	width: 90px;
	height: 30px;
	padding-bottom: 2px;
	border-radius: 15px;
	transition: 0.25s all ease;
}
div#page p.button-more a:hover {
	color: #ffffff;
	background-color: #a0a0a0;
}
div#page p.button-look {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	width: 150px;
	height: 35px;
	font-size: 0.75rem;
	font-weight: 500;
	color: #252526;
	border: 1px solid #252526;
	margin: auto;
	transition: 0.25s color ease;
}
div#page p.button-look:hover {
	color: #ffffff;
}
div#page p.button-look::before {
	position: absolute;
	width: 0%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #252526;
	content: "";
	transition: 0.25s width ease;
}
div#page p.button-look:hover::before {
	width: 100%;
}
div#page p.button-look::after {
	position: absolute;
	width: 10px;
	height: 10px;
	right: 10px;
	top: calc(50% - 5px);
	background: url(../images/arrow-more-01.svg) no-repeat center;
	background-size: auto 10px;
	content: "";
}
div#page p.button-look:hover::after {
	background-image: url(../images/arrow-more-01-white.svg);
}
div#page div.bridal div.banner-propose-plan p.button-look {
	color: #ffffff;
	border-color: #ffffff;
}
div#page div.bridal div.banner-propose-plan p.button-look:hover {
	color: #dec3cc;
}
div#page div.bridal div.banner-propose-plan p.button-look::before {
	background-color: #ffffff;
}
div#page div.bridal div.banner-propose-plan p.button-look::after {
	background-image: url(../images/arrow-more-01-white.svg);
}
div#page div.bridal div.banner-propose-plan p.button-look:hover::after {
	background-image: url(../images/arrow-more-01-bridal.svg);
}
div#page p.button-look span {
	position: relative;
}
div#page ul.bullet li {
	position: relative;
	padding-left: 15px;
}
div#page ul.bullet li::before {
	position: absolute;
	width: 4px;
	height: 4px;
	left: 4px;
	top: 15px;
	background-color: #252526;
	content: "";
	border-radius: 50%;
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce),
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce) > * {
	opacity: 0;
	transition-duration: 1.25s;
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce).active,
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce).active > * {
	opacity: 1;
}
*.scroll.fade,
*.scroll.fade-each > * {
	transition-property: opacity;
	transition-timing-function: ease-in-out;
}
*.scroll.fade-slide,
*.scroll.fade-each-slide > * {
	transition-property: opacity, transform;
	transition-timing-function: ease-in-out, ease;
}
*.scroll.fade-slide-left,
*.scroll.fade-each-slide-left > * {
	transform: translate(40px, 0px);
}
*.scroll.fade-slide-right,
*.scroll.fade-each-slide-right > * {
	transform: translate(-40px, 0px);
}
*.scroll.fade-slide-up,
*.scroll.fade-each-slide-up > * {
	transform: translate(0px, 40px);
}
*.scroll.fade-slide-down,
*.scroll.fade-each-slide-down > * {
	transform: translate(0px, -40px);
}
*.scroll.fade-slide.active,
*.scroll.fade-each-slide.active > * {
	transform: translate(0px, 0px);
}
*.scroll:where(.fade-zoom, .fade-bounce),
*.scroll:where(.fade-each-zoom, .fade-each-bounce) > * {
	transition-property: opacity, transform;
}
*.scroll:where(.fade-zoom, .fade-bounce).active,
*.scroll:where(.fade-each-zoom, .fade-each-bounce).active > * {
	transform: scale(1);
}
*.scroll.fade-zoom,
*.scroll.fade-each-zoom > * {
	transition-timing-function: ease-in-out, ease;
	transform: scale(0.875);
}
*.scroll.fade-zoom.active,
*.scroll.fade-each-zoom.active > *,
*.scroll.fade-bounce.active,
*.scroll.fade-each-bounce.active > * {
	transform: scale(1);
}
*.scroll.fade-bounce,
*.scroll.fade-each-bounce > * {
	transition-timing-function: ease-in-out, linear(0, 0.016, 0.063 9.1%, 0.25, 0.563, 1, 0.813 45.5%, 0.766, 0.75, 0.766, 0.813 63.6%, 1 72.7%, 0.953, 0.938, 0.953, 1, 0.984, 1);
	transform: scale(0.75);
}
*.split-text {
	opacity: 0;
}
div#page.active *.split-text {
	opacity: 1;
}
*.split-text > * {
	display: inline-block;
}
*.delay-01 {
	transition-delay: calc(0.125s * 1);
}
*.delay-02 {
	transition-delay: calc(0.125s * 2);
}
*.delay-03 {
	transition-delay: calc(0.125s * 3);
}
*.delay-04 {
	transition-delay: calc(0.125s * 4);
}
*.delay-05 {
	transition-delay: calc(0.125s * 5);
}
*.delay-06 {
	transition-delay: calc(0.125s * 6);
}
*.delay-07 {
	transition-delay: calc(0.125s * 7);
}
*.delay-08 {
	transition-delay: calc(0.125s * 8);
}
*.delay-09 {
	transition-delay: calc(0.125s * 9);
}
*.delay-10 {
	transition-delay: calc(0.125s * 10);
}
div.grecaptcha-badge {
	z-index: 10;
	bottom: 20px !important;
}
/* div#page *.scroll.fade {
	opacity: 0;
	transition: 1.25s opacity ease-in;
}
div#page *.scroll.fade.active {
	opacity: 1;
}
div#page *.scroll.fade-delay *.row {
	opacity: 0;
	transition: 1.25s opacity ease-in;
} */
/* div#page *.scroll.fade-delay *.row-01 {
	transition-delay: 0.1s;
}
div#page *.scroll.fade-delay *.row-02 {
	transition-delay: 0.2s;
}
div#page *.scroll.fade-delay *.row-03 {
	transition-delay: 0.3s;
}
div#page *.scroll.fade-delay *.row-04 {
	transition-delay: 0.4s;
}
div#page *.scroll.fade-delay *.row-05 {
	transition-delay: 0.5s;
}
div#page *.scroll.fade-delay *.row-06 {
	transition-delay: 0.6s;
}
div#page *.scroll.fade-delay *.row-07 {
	transition-delay: 0.7s;
}
div#page *.scroll.fade-delay *.row-08 {
	transition-delay: 0.8s;
}
div#page *.scroll.fade-delay *.row-09 {
	transition-delay: 0.9s;
}
div#page *.scroll.fade-delay *.row-10 {
	transition-delay: 1s;
}
div#page *.scroll.fade-delay *.row-11 {
	transition-delay: 1.1s;
}
div#page *.scroll.fade-delay *.row-12 {
	transition-delay: 1.2s;
}
div#page *.scroll.fade-delay *.row-13 {
	transition-delay: 1.3s;
}
div#page *.scroll.fade-delay *.row-14 {
	transition-delay: 1.4s;
}
div#page *.scroll.fade-delay *.row-15 {
	transition-delay: 1.5s;
}
div#page *.scroll.fade-delay *.row-16 {
	transition-delay: 1.6s;
}
div#page *.scroll.fade-delay *.row-17 {
	transition-delay: 1.7s;
}
div#page *.scroll.fade-delay *.row-18 {
	transition-delay: 1.8s;
}
div#page *.scroll.fade-delay *.row-19 {
	transition-delay: 1.9s;
}
div#page *.scroll.fade-delay *.row-20 {
	transition-delay: 2s;
}
div#page *.scroll.fade-delay.active *.row {
	opacity: 1;
} */
div.grecaptcha-badge {
	z-index: 1;
	bottom: 80px !important;
}
p.image {
	overflow: hidden;
}
p.image img {
	width: 100%;
}
p.image-zoom img {
	transition: 0.375s transform ease;
}
a:hover p.image-zoom img,
p.image-zoom a:hover img {
	transform: scale(1.0375);
}
div.line-contact ul {
	display: flex;
	flex-wrap: wrap;
}
div.line-contact ul li {
	font-size: 1.375rem;
	color: #707070;
}
div.line-contact ul li:not(:last-child) {
	margin-right: 15px;
}
div.line-contact ul li a {
	transition: 0.25s color ease;
}
div.line-contact ul li a:hover {
	color: #a0a0a0;
}
div.contact div.header {
	text-align: center;
	margin-bottom: 60px;
}
div.contact div.header h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
}
div.contact div.list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
div.contact div.list div.row {
	position: relative;
	width: 33.33%;
	text-align: center;
}
div.contact div.list div.row:not(:last-child)::before {
	position: absolute;
	width: 0px;
	height: 100%;
	right: 0px;
	top: 0px;
	border-right: 1px solid #ebebeb;
	content: "";
}
div.contact div.list div.row h3 {
	font-size: 0.9375rem;
	font-weight: 500;
	margin-bottom: 20px;
}
div.contact div.list div.row p.tel {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	margin-bottom: 5px;
}
div.contact div.list div.row p.tel a {
	transition: 0.25s color ease;
}
div.contact div.list div.row p.tel a:hover {
	color: #a0a0a0;
}
div.contact div.list div.row p.tel span.label {
	font-feature-settings: normal;
	transform: translateY(3px);
}
div.contact div.list div.row p.tel span.number {
	font-size: 1.875rem;
	letter-spacing: 0.075em;
}
div.contact div.list div.row p.time-close {
	font-size: 0.8125rem;
}
div#page div.contact div.container-button p.button:not(:last-child) {
	margin-right: 40px;
}
div.contact p.note {
	text-align: center;
	margin-bottom: 60px;
}



/* --------------------------------------------------------------------------------
header
-------------------------------------------------------------------------------- */

header#header {
	position: relative;
	z-index: 10;
}
/* header#header div.background-header {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	pointer-events: none;
	background-color: rgba(37, 37, 38, 0.875);
	opacity: 0;
	transition: 0.25s opacity ease-in-out;
}
header#header div.background-header div.inner-background-header {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 0px;
	background-color: #ffffff;
}
header#header.menu div.background-header,
header#header.search div.background-header,
header#header.contact div.background-header {
	pointer-events: auto;
	opacity: 1;
} */
header#header div.title {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	position: relative;
	height: 70px;
	overflow: hidden;
	z-index: 40;
	/* background-color: #252526; */
}
/* body.bridal header#header div.title {
	background-color: #dec3cc;
}
body.jewelry header#header div.title {
	background-color: #9f9489;
} */
body.bridal.staff header#header div.title,
body.jewelry.staff header#header div.title {
	background-color: #252526;
}
header#header div.title h1#logo,
header#header div.title p#logo {
	display: flex;
	flex-wrap: wrap;
	padding-top: 5px;
}
header#header div.title h1#logo img,
header#header div.title p#logo img {
	width: auto;
	height: calc(26px * 1.25);
}
header#header div.title a.rolex,
header#header div.title iframe.rolex {
	position: absolute;
	width: 150px;
	height: 70px;
	right: 0px;
	top: 0px;
	overflow: hidden;
}
header#header div.title iframe.rolex {
	display: block;
	background-color: #f7f7f7;
}
header#header div.title a.rolex {
	z-index: 1;
}
body.tax-brand_watch.term-cartier header#header div.title a.rolex,
body.tax-brand_watch.term-cartier header#header div.title iframe.rolex {
	display: none;
}
/* header#header  p#logo-alternate {
	display: none;
} */
header#header p.button-search,
header#header p.button-contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 50px;
	z-index: 20;
	font-size: 1.5rem;
	color: #7f7f7f;
	cursor: pointer;
	transition: 0.25s color ease;
}
header#header p.button-search {
	display: none;
	right: 0px;
}
header#header p.button-contact {
	right: 20px;
}
header#header p.button-search:hover,
header#header p.button-contact:hover {
	color: #a0a0a0;
}
header#header p#button-search,
header#header p#button-contact {
	position: absolute;
	height: 70px;
	top: 70px;
}
header#header p#button-search-alternate,
header#header p#button-contact-alternate {
/* header#header div#reserve-bridal { */
	position: fixed;
	height: 50px;
	top: 0px;
	transition: 0.25s color ease, 0.25s transform ease;
	transform: translateY(-50px);
}
header#header.scroll-01 p#button-search-alternate,
header#header.scroll-01 p#button-contact-alternate {
/* header#header.scroll-01 div#reserve-bridal { */
	transform: translateY(0px);
}
header#header div.line-contact-small {
	display: none;
}
/* header#header div#reserve-bridal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	right: 50px;
	z-index: 20;
}
body.admin-bar header#header div#reserve-bridal {
	top: 32px;
}
header#header div#reserve-bridal ul {
	display: flex;
	flex-wrap: wrap;
}
header#header div#reserve-bridal ul li {
	font-size: 0.75rem;
	font-weight: 500;
}
header#header div#reserve-bridal ul li:not(:last-child) {
	margin-right: 5px;
}
header#header div#reserve-bridal ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	height: 30px;
	padding: 0px 7.5px;
	background-color: #efece4;
	transition: 0.25s color ease, 0.25s background-color ease;
}
header#header div#reserve-bridal ul li a:hover {
	color: #ffffff;
}
header#header div#reserve-bridal ul li.line a:hover {
	background-color: #06c755;
}
header#header div#reserve-bridal ul li.reserve a:hover,
header#header div#reserve-bridal ul li.contact a:hover {
	background-color: #9a9085;
}
header#header div#reserve-bridal ul li b {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
header#header div#reserve-bridal ul li i.icon {
	margin-right: 5px;
	transition: 0.25s color ease;
}
header#header div#reserve-bridal ul li.line i.icon {
	font-size: 1.25rem;
	color: #06c755;
}
header#header div#reserve-bridal ul li.line a:hover i.icon {
	color: #ffffff;
}
header#header div#reserve-bridal ul li.reserve i.icon,
header#header div#reserve-bridal ul li.contact i.icon {
	font-size: 1.125rem;
	color: #9a9085;
}
header#header div#reserve-bridal ul li.reserve a:hover i.icon,
header#header div#reserve-bridal ul li.contact a:hover i.icon {
	color: #ffffff;
}
header#header div#reserve-bridal ul li i.icon,
header#header div#reserve-bridal ul li span {
	display: inline-block;
}
header#header div#reserve-bridal ul li i.icon-calendar {
	transform: translateY(-0.05em);
}
header#header div#reserve-bridal ul li span {
	transform: translateY(-1px);
}
header#header div#reserve-bridal ul li span em {
	display: none;
} */
header#header div.menu div.line-contact {
	position: absolute;
	right: 30px;
	top: calc(50% - 1rem);
}
header#header div.menu div.main {
	background-color: #ffffff;
}
header#header div.menu div.main ul.primary {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
header#header div.menu div.main ul.primary li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 70px;
	padding: 0px 25px;
	transition: 0.25s color ease;
}
/* header#header div.menu div.main ul.primary li a:hover,
body.watch header#header div.menu div.main ul.primary li.watch a,
body.bridal header#header div.menu div.main ul.primary li.bridal a,
body.jewelry header#header div.menu div.main ul.primary li.jewelry a,
body.about header#header div.menu div.main ul.primary li.about a {
	color: #a0a0a0;
} */
header#header div.menu div.main ul.primary li span.main {
	position: relative;
	font-size: 0.8125rem;
}
header#header div.menu div.main ul.primary li span.main::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	bottom: 0px;
	border-bottom: 1px solid #252526;
	content: "";
	transition: 0.25s transform ease;
	transform: scaleX(0);
}
header#header div.menu div.main ul.primary li a:hover span.main::before,
header#header div.menu.watch div.main ul.primary li.watch span.main::before,
header#header div.menu.bridal div.main ul.primary li.bridal span.main::before,
header#header div.menu.jewelry div.main ul.primary li.jewelry span.main::before,
body.watch header#header div.menu div.main ul.primary li.watch span.main::before,
body.bridal header#header div.menu div.main ul.primary li.bridal span.main::before,
body.jewelry header#header div.menu div.main ul.primary li.jewelry span.main::before,
body.about header#header div.menu div.main ul.primary li.about span.main::before {
	transform: scaleX(1);
}
body.watch header#header div.menu:where(.bridal, .jewelry) div.main ul.primary li.watch span.main::before,
body.bridal header#header div.menu:where(.watch, .jewelry) div.main ul.primary li.bridal span.main::before,
body.jewelry header#header div.menu:where(.watch, .bridal) div.main ul.primary li.jewelry span.main::before {
	transform: scaleX(0);
}
body.watch header#header div.menu:where(.bridal, .jewelry) div.main ul.primary li.watch a:hover span.main::before,
body.bridal header#header div.menu:where(.watch, .jewelry) div.main ul.primary li.bridal a:hover span.main::before,
body.jewelry header#header div.menu:where(.watch, .bridal) div.main ul.primary li.jewelry a:hover span.main::before {
	transform: scaleX(1);
}
/* header#header div.menu div.main ul.primary li span.sub {
	display: none;
} */
header#header div.menu div.main ul.primary li.search {
	font-size: 1.125rem;
	color: #7f7f7f;
}
header#header div.menu div.main ul.primary li.search a:hover {
	color: #a0a0a0;
}
header#header div.menu div.main div.container-button,
header#header div.menu div.main ul.secondary,
header#header div.menu div.main div.sns,
header#header div.menu div.main iframe.rolex {
	display: none;
}
header#header div.menu div.main div.information {
	height: 0px;
	overflow: hidden;
}
header#header div.menu div.sub,
header#header div#search,
header#header div#contact {
	position: absolute;
	width: 100%;
	height: 0px;
	overflow: hidden;
	pointer-events: none;
	background-color: #ffffff;
	transition: 0.25s height ease;
}
header#header div#menu.watch div.sub-watch,
header#header div#menu.bridal div.sub-bridal,
header#header div#menu.jewelry div.sub-jewelry,
header#header div#menu.shop div.sub-shop,
header#header.scroll-01 div#menu-alternate.watch div.sub-watch,
header#header.scroll-01 div#menu-alternate.bridal div.sub-bridal,
header#header.scroll-01 div#menu-alternate.jewelry div.sub-jewelry,
header#header.scroll-01 div#menu-alternate.shop div.sub-shop,
header#header.search div#search,
header#header.contact div#contact {
	height: 530px;
	pointer-events: auto;
}
header#header.search div#search {
	height: 320px;
}
header#header.scroll-01 div#menu.watch div.sub-watch,
header#header.scroll-01 div#menu.bridal div.sub-bridal,
header#header.scroll-01 div#menu.jewelry div.sub-jewelry,
header#header.scroll-01 div#menu.shop div.sub-shop {
	height: 0px;
	pointer-events: none;
}
header#header div.menu div.sub {
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.25rem;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.075);
}
header#header div.menu div.sub div.inner-sub {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: auto;
	padding-top: 60px;
}
header#header div.menu div.sub-watch div.inner-sub {
	width: 1100px;
}
header#header div.menu div.sub-bridal div.inner-sub,
header#header div.menu div.sub-jewelry div.inner-sub,
header#header div.menu div.sub-shop div.inner-sub {
	width: 1100px;
}
header#header div.menu div.sub div.top {
	width: 350px;
	padding-top: 5px;
}
header#header div.menu div.sub div.top p.image {
	overflow: hidden;
	margin-bottom: 20px;
}
header#header div.menu div.sub div.top p.image img {
	transition: 0.375s transform ease;
}
header#header div.menu div.sub div.top a:hover p.image img {
	transform: scale(1.0375);
}
header#header div.menu div.sub div.top p.image img.small {
	display: none;
}
header#header div.menu div.sub div.top p.label {
	text-align: center;
	font-size: 0.9375rem;
	font-weight: 500;
}
header#header div.menu div.sub div.top p.label span {
	display: inline-block;
	position: relative;
}
header#header div.menu div.sub div.top p.label span::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	bottom: -2px;
	border-bottom: 1px solid #252526;
	content: "";
	transition: 0.25s transform ease;
	transform: scaleX(0);
}
header#header div.menu div.sub div.top a:hover p.label span::before {
	transform: scaleX(1);
}
header#header div.menu div.sub div.list {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% - 420px);
}
header#header div.menu div.sub div.list a {
	transition: 0.25s color ease;
}
header#header div.menu div.sub div.list a:hover {
	color: #a0a0a0;
}
header#header div.menu div.sub div.list div.row:not(.row-content) {
	margin-right: 50px;
}
header#header div.menu div.sub-watch div.list div.row-brand {
	width: 420px;
}
header#header div.menu div.sub div.list div.row p.label {
	font-size: 0.9375rem;
	font-weight: 500;
	color: #a0a0a0;
	margin-bottom: 20px;
}
header#header div.menu div.sub div.list div.row p.label span:nth-child(2) {
	display: none;
}
header#header div.menu div.sub div.list div.row-category-alternate {
	display: none;
}
header#header div.menu div.sub div.list div.row-brand ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -10px -10px 0px;
	/* margin-right: -10px; */
}
header#header div.menu div.sub div.list div.row-brand ul li {
	width: calc(33.33% - 10px);
	margin: 0px 10px 10px 0px;
}
/* header#header div.menu div.sub div.list div.row-brand ul li.separete {
	width: calc(100% - 10px);
} */
header#header div.menu div.sub div.list div.row-brand ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	/* border: 1px solid #ebebeb; */
}
header#header div.menu div.sub-watch div.list div.row-brand ul li a {
	height: 50px;
}
header#header div.menu div.sub-bridal div.list div.row-brand ul li a,
header#header div.menu div.sub-jewelry div.list div.row-brand ul li a {
	height: 50px;
}
/* header#header div.menu div.sub div.list div.row-brand ul li a::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	pointer-events: none;
	background-color: rgba(0, 0, 0, 0.0375);
	content: "";
	opacity: 0;
	transition: 0.25s opacity ease;
}
header#header div.menu div.sub div.list div.row-brand ul li a:hover::before {
	opacity: 1;
} */
header#header div.menu div.sub div.list div.row-brand ul li span.logo img {
	width: auto;
	height: 43px;
	transition: 0.25s transform ease;
}
header#header div.menu div.sub div.list div.row-brand ul li a:hover span.logo img {
	transform: scale(1.075);
}
header#header div.menu div.sub div.list div.row-brand ul li span.text {
	display: none;
}
header#header div.menu div.sub-bridal div.list div.row-brand,
header#header div.menu div.sub-jewelry div.list div.row-brand {
	width: 280px;
}
header#header div.menu div.sub-bridal div.list div.row-brand ul li,
header#header div.menu div.sub-jewelry div.list div.row-brand ul li {
	width: calc(50% - 10px);
	/* margin-bottom: 20px; */
}
header#header div.menu div.sub div.list div.row-category {
	width: 110px;
}
/* header#header div.menu div.sub div.list div.row-category ul li {
	font-weight: 300;
	border-bottom: none;
} */
header#header div.menu div.sub div.list div.row-category ul li a {
	display: block;
	padding: 10px 0px;
}
header#header div.menu div.sub div.list div.row-content {
	width: 190px;
}
header#header div.menu div.sub div.list div.row-content-alternate {
	display: none;
}
/* header#header div.menu div.sub div.list div.row-content ul li:not(:last-child) {
	border-bottom: 1px solid #ebebeb;
} */
header#header div.menu div.sub div.list div.row-content ul li a {
	display: block;
	/* display: flex;
	flex-wrap: wrap;
	align-items: center; */
	padding: 10px 0px;
	/* background: url(../images/arrow-more-01-alternate.svg) no-repeat right center;
	background-size: auto 10px; */
}
/* header#header div.menu div.sub div.list div.row-content ul li i {
	display: block;
	font-size: 0.625rem;
	font-weight: 300;
	line-height: 1rem;
	color: #7f7f7f;
} */
/* header#header div.menu div.sub div.list div.row-content ul li.category p.label {
	padding-top: 10px;
} */
/* header#header div.menu div.sub div.list div.row-content ul li.category ul {
	padding: 10px 0px;
} */
/* header#header div.menu div.sub div.list div.row-content ul li {
	font-weight: 300;
	border-bottom: none;
} */
/* header#header div.menu div.sub div.list div.row-content ul li a {
	padding: 10px 0px;
} */
header#header div.menu div.sub div.list div.row-content p.banner-tudor-kanazawa {
	display: block;
}
header#header div.menu div.sub div.list div.row-content p.banner-tudor-kanazawa a {
	/* display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative; */
	width: 180px;
	/* height: 90px; */
	margin-top: 60px;
	background-color: #969696;
	transition: 0.25s background-color ease;
}
header#header div.menu div.sub div.list div.row-content p.banner-tudor-kanazawa a:hover {
	background-color: #808080;
}
header#header div.menu div.sub-bridal div.list div.row-content ul {
	margin-right: -60px;
}
header#header div.menu div.sub div.list div.row-content-alternate {
	display: none;
}
/* header#header div.menu div.sub-jewelry p.banner-petit-paris {
	display: none;
} */
header#header div#menu {
	position: relative;
}
header#header div#menu p.logo-menu {
	display: none;
}
header#header div#menu div.line-contact {
	display: none;
}
header#header div#menu-alternate {
	box-sizing: border-box;
	position: fixed;
	width: 100%;
	left: 0px;
	top: 0px;
	z-index: 10;
	pointer-events: none;
	box-shadow: 0px 2.5px 5px rgba(0, 0, 0, 0);
	transition: 0.25s box-shadow ease, 0.25s transform ease;
	transform: translateY(-71px);
}
header#header.scroll-01 div#menu-alternate {
	pointer-events: auto;
	box-shadow: 0px 2.5px 5px rgba(0, 0, 0, 0.075);
	transform: translateY(0px);
}
header#header div#menu-alternate p.logo-menu {
	position: absolute;
	left: 20px;
	top: 25px;
}
header#header div#menu-alternate p.logo-menu img {
	width: auto;
	height: 20px;
}
header#header div#menu-alternate div.main ul.primary li a {
	height: 70px;
}
/* @media (max-width:1599px) {
header#header div#menu-alternate div.main ul.primary {
	padding-right: 240px;
}
header#header div#menu-alternate div.main ul.primary li a {
	padding: 0px 20px;
}
} */
header#header div#search,
header#header div#contact {
	position: absolute;
	width: 100%;
	left: 0px;
	z-index: 10;
	transition: 0.25s all ease;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.075);
}
body.admin-bar header#header div#search,
body.admin-bar header#header div#contact {
	margin-top: -32px;
}
header#header.scroll-01 div#search,
header#header.scroll-01 div#contact {
	position: fixed;
	transform: translateY(-70px);
}
body.admin-bar header#header.scroll-01 div#search,
body.admin-bar header#header.scroll-01 div#contact {
	margin-top: 0px;
}
header#header div#search div.inner-search,
header#header div#contact div.inner-contact {
	width: 800px;
	margin: auto;
	padding-top: 60px;
}
header#header div#search p.button-close,
header#header div#contact p.button-close {
	display: none;
}
/* header#header div#search p.button-close,
header#header div#contact p.button-close {
	display: none;
	font-size: 0.8125rem;
	cursor: pointer;
	padding-right: 30px;
}
header#header div#search p.button-close::before,
header#header div#contact p.button-close::before,
header#header div#search p.button-close::after,
header#header div#contact p.button-close::after {
	position: absolute;
	width: 24px;
	height: 0px;
	right: 0px;
	top: 50%;
	border-bottom: 1px solid #252526;
	content: "";
}
header#header div#search p.button-close::before,
header#header div#contact p.button-close::before {
	transform: rotate(45deg);
}
header#header div#search p.button-close::after,
header#header div#contact p.button-close::after {
	transform: rotate(-45deg);
} */
header#header div#search div.header,
header#header div#contact div.header {
	text-align: center;
	margin-bottom: 60px;
}
header#header div#search div.header h2,
header#header div#contact div.header h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
}
/* header#header div#search div.header p.sub,
header#header div#contact div.header p.sub {
	font-size: 0.75rem;
} */
/* header#header div#search div.header h2 span {
	display: none;
} */
header#header div#search div.category {
	text-align: center;
	transition: 0s opacity 0.25s ease;
}
header#header div#search.watch div.category,
header#header div#search.bridal div.category,
header#header div#search.jewelry div.category,
body.watch header#header div#search div.category,
body.bridal header#header div#search div.category,
body.jewelry header#header div#search div.category {
	height: 0px;
	overflow: hidden;
	pointer-events: none;
	opacity: 0;
}
header#header div#search div.category p.description {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	margin-bottom: 40px;
}
header#header div#search div.category ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
header#header div#search div.category ul li {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 70px;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.25rem;
	border: 1px solid #a0a0a0;
	cursor: pointer;
	padding-bottom: 2px;
	/* background-color: #efece4; */
	transition: 0.25s all ease;
}
header#header div#search div.category ul li:hover {
	color: #ffffff;
	border-color: #a0a0a0;
	background-color: #a0a0a0;
}
header#header div#search div.category ul li:not(:last-child) {
	margin-right: 40px;
}
header#header div#search div.form {
	height: 0px;
	overflow: hidden;
	pointer-events: none;
	margin: 0px -90px;
	opacity: 0;
	transition: 0.25s opacity ease;
}
header#header div#search.watch div.form-watch,
header#header div#search.bridal div.form-bridal,
header#header div#search.jewelry div.form-jewelry,
body.watch header#header div#search div.form-watch,
body.bridal header#header div#search div.form-bridal,
body.jewelry header#header div#search div.form-jewelry {
	height: auto;
	pointer-events: all;
	opacity: 1;
}
header#header div#search div.form div.block:not(:last-child) {
	margin-bottom: 60px;
}
header#header div#search div.form h3 {
	font-size: 0.9375rem;
	font-weight: 500;
	margin-bottom: 20px;
}
header#header div#search div.form form {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
header#header div#search div.form form div.component {
	margin-right: 15px;
}
header#header div#search div.form form.number div.component {
	width: 200px;
}
header#header div#search div.form-watch form.custom div.component,
header#header div#search div.form-bridal form.custom div.component {
	width: calc(calc(100% - 175px) * 0.2);
}
header#header div#search div.form-jewelry form.custom div.component {
	width: calc(calc(100% - 160px) * 0.25);
}
header#header div#search div.form form div.component p.label {
	font-size: 0.8125rem;
	line-height: 1rem;
	margin-bottom: 10px;
}
header#header div#search div.form form div.component input[type=text],
header#header div#search div.form form div.action input[type=submit],
header#header div#search div.form form div.component select {
	display: block;
}
header#header div#search div.form form div.component input[type=text] {
	width: 100%;
	height: 40px;
	line-height: calc(40px - 2px);
	border: 1px solid #d1d1d1;
	background-color: transparent;
}
header#header div#search div.form form div.action input[type=submit] {
	width: 100px;
	height: 40px;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 40px;
	padding: 0px;
	border-radius: 120px;
}
header#header div#search div.form form div.action input[type=submit]:hover {
	background-color: #a0a0a0;
}
header#header div#search div.form form div.component select {
	width: 100%;
	height: 40px;
	line-height: calc(40px - 2px);
	border: 1px solid #d1d1d1;
	background-color: transparent;
	transition: 0.25s background-color ease;
}
header#header div#contact div.list {
	/* display: flex;
	flex-wrap: wrap;
	margin: 0px -130px 40px -130px; */
	margin-left: -130px;
	margin-right: -130px;
}
/* header#header div#contact div.list div.row {
	position: relative;
	width: 33.33%;
	text-align: center;
}
header#header div#contact div.list div.row:not(:last-child)::before {
	position: absolute;
	width: 0px;
	height: 100%;
	right: 0px;
	top: 0px;
	border-right: 1px solid #ebebeb;
	content: "";
}
header#header div#contact div.list div.row h3 {
	font-size: 0.9375rem;
	font-weight: 500;
	margin-bottom: 20px;
}
header#header div#contact div.list div.row p.tel {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	margin-bottom: 5px;
}
header#header div#contact div.list div.row p.tel a {
	transition: 0.25s color ease;
}
header#header div#contact div.list div.row p.tel a:hover {
	color: #a0a0a0;
}
header#header div#contact div.list div.row p.tel span.label {
	font-feature-settings: normal;
	transform: translateY(3px);
}
header#header div#contact div.list div.row p.tel span.number {
	font-size: 2rem;
	letter-spacing: 0.075em;
}
header#header div#contact div.list div.row p.time-close {
	font-size: 0.8125rem;
}
header#header div#contact p.note {
	text-align: center;
	margin-bottom: 60px;
} */
header#header div.menu p.banner-tudor-kanazawa {
	display: none;
}
header#header div.menu p.banner-tudor-kanazawa a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 200px;
	height: 90px;
	border: 1px solid #ebebeb;
}
header#header div.menu p.banner-tudor-kanazawa a::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	pointer-events: none;
	background-color: rgba(0, 0, 0, 0.0375);
	content: "";
	opacity: 0;
	transition: 0.25s opacity ease;
}
header#header div.menu p.banner-tudor-kanazawa a:hover::before {
	opacity: 1;
}
header#header div.menu div.sub div.list div.row-misc p.banner-tudor-kanazawa {
	display: block;
	margin-top: 20px;
}



/* --------------------------------------------------------------------------------
content
-------------------------------------------------------------------------------- */

div#content a {
	transition: 0.25s color ease;
}
div#content a:hover {
	color: #a0a0a0;
}
div#content p#breadcrumb {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 0.6875rem;
	line-height: 1.125rem;
	color: #7f7f7f;
	padding: 10px;
	background-color: #f7f7f7;
}
body.single div#content p#breadcrumb {
	margin-bottom: 40px;
}
div#content p#breadcrumb span {
	display: block;
	position: relative;
}
div#content p#breadcrumb span:not(:last-child)::after {
	margin: 0px 0.5em;
	content: "/";
}
div#content p.image {
	overflow: hidden;
}
div#content p.image img {
	width: 100%;
	height: auto;
}
div#content p.image.zoom img {
	transition: 0.25s transform ease;
}
div#content p.image.zoom:hover img {
	transform: scale(1.05);
}
div#content p.more {
	text-align: center;
	font-size: 0.75rem;
	margin-top: 40px;
}
div#content p.more a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.25em;
	color: #7f7f7f;
}
div#content p.not-found {
	text-align: center;
}
div#content h2.headline {
	text-align: center;
	font-size: 1.5rem;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	line-height: 2.5rem;
	color: #9a9085;
	margin-bottom: 100px;
}
div#content div.list-table div.row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	text-align: left;
	font-size: 0.8125rem;
	line-height: 1.5rem;
	border-bottom: 1px solid #a0a0a0;
	padding: 20px 0px;
}
div#content div.list-table div.row:first-child {
	border-top: 1px solid #a0a0a0;
}
div#content div.list-table div.row p.label {
	width: 120px;
}
div#content div.list-table div.row div.body {
	width: calc(100% - 120px);
}
div#content div.list-table div.row ul li {
	text-indent: -1em;
	padding-left: 1em;
}
div#content div.list-table div.row ul li::before {
	content: "○";
}
div#content div.list-common article {
	width: 200px;
	margin-right: 20px;
}
div#content div.list-common article p.image {
	aspect-ratio: 1;
	overflow: hidden;
	margin-bottom: 15px;
	border-radius: 10px;
}
div#content div.list-common article p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: 0.375s transform ease;
}
div#content div.list-common article p.image a:hover img {
	transform: scale(1.0375);
}
div#content div.list-common article h3 {
	text-align: left;
	font-size: 0.9375rem;
	line-height: 1.5rem;
	margin-bottom: 20px;
}
article div.created-category-term {
	display: flex;
	flex-wrap: wrap;
	font-size: 0.6875rem;
	line-height: 1rem;
	color: #707070;
}
article div.created-category-term p.category {
	position: relative;
	margin-right: 10px;
	padding-left: 13px;
}
article div.created-category-term p.category::before {
	position: absolute;
	width: 8px;
	height: 8px;
	left: 0px;
	top: 5px;
	background-color: #a0a0a0;
	content: "";
	border-radius: 50%;
}
article div.created-category-term p.category-bridal::before {
	background-color: #d7e4f8;
}
article div.created-category-term p.category-jewelry::before {
	background-color: #cebaa6;
}
article div.created-category-term p.created {
	margin-right: 5px;
}
article.column div.created-category-term p.created {
	display: none;
}
article div.created-category-term p:empty {
	display: none;
}
div#content section.category-top div.inner-section {
	width: 1060px;
}
div#content section.category-top div.list-common {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -30px -30px 0px;
}
div#content section.category-top div.list-common article {
	width: calc(25% - 30px);
	margin: 0px 30px 30px 0px;
}
div#content section#category-top-column {
	background-color: #f7f7f7;
}
div#content article.common,
div#content section div.inner-section {
	margin: auto;
	padding: 80px 0px;
}
div#content article.common {
	width: 800px;
	padding-top: 80px;
}
div#content article.common header {
	margin-bottom: 40px;
}
div#content article.common header div.created-category {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
div#content article.common header div.created-category p.created,
div#content article.common header div.created-category p.category {
	font-size: 0.8125rem;
}
div#content article.common header div.created-category p.created {
	margin-right: 15px;
}
div#content article.common header h1.title {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.375rem;
	line-height: 2.25rem;
}
div#content article.common div.body blockquote {
	padding: 10px 20px;
	background: #f7f7f7;
}
div#content article.common div.body strong {
	font-weight: 700;
}
div#content article.common div.body em {
	font-style: italic;
}
div#content article.common div.body ul li {
	position: relative;
	padding-left: 20px;
}
div#content article.common div.body ul li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 0.85rem;
	background-color: #252526;
	content: "";
	border-radius: 50%;
}
div#content article.common div.body ol {
	padding-left: 20px;
}
div#content article.common div.body ol li {
	list-style-type: decimal;
}
div#content article.common div.body table {
	width: 100%;
}
div#content article.common div.body table th,
div#content article.common div.body table td {
	box-sizing: border-box;
	border: 1px solid #d1d1d1;
	padding: 10px 20px;
}
div#content section header {
	text-align: center;
	margin-bottom: 40px;
}
div#content section header.separate {
	border-bottom: 1px solid #d1d1d1;
	margin-bottom: 80px;
	padding-bottom: 20px;
}
div#content section header h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
}
div#content section header p.sub {
	font-size: 0.75rem;
}
div#content *.button-down {
	display: none;
	/* position: absolute;
	width: 27px;
	height: 14px;
	left: calc(50% - 13.5px); */
}
/* div#content *.button-down a {
	display: block;
	height: 100%;
	background: url(../images/arrow-down-01.svg) no-repeat center;
	background-size: auto 100%;
} */
div#content div.slide-alternate div.list {
	overflow: hidden;
	margin: 0px calc(50% - 50vw) 40px calc(50% - 50vw);
}
div#content div.slide-alternate div.list div.inner-list {
	display: flex;
	flex-wrap: wrap;
	width: 9999px;
}
div#content div.slide-alternate div.list-common article {
	width: 240px;
	margin-right: 30px;
}
div#content div.slide-alternate div.navi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
div#content div.slide-alternate div.navi p.button {
	position: relative;
	width: 50px;
	height: 10px;
	cursor: pointer;
}
div#content div.slide-alternate div.navi p.button::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	top: calc(50% - 1px);
	border-bottom: 2px solid #ebebeb;
	content: "";
	transition: 0.25s border-color ease;
}
div#content div.slide-alternate div.navi p.button:hover::before,
div#content div.slide-alternate div.navi p.button.active::before {
	border-color: #a0a0a0;
}
div#content div.slide-alternate-video div.list {
	overflow: visible;
	margin-left: 0px;
	margin-right: 0px;
	clip-path: polygon(0% 0%, 300% 0%, 300% 100%, 0% 100%);
}
div#content div.slide-alternate-video div.list article {
	aspect-ratio: 9 / 16;
	width: 235px;
	overflow: hidden;
	border-radius: 10px;
}
div#content div.slide-alternate-video div.list article:not(:last-child) {
	margin-right: 20px;
}
div#content div.slide-alternate-video div.list article div.video-wrapper {
	aspect-ratio: 9 / 16;
	padding-bottom: 0px;
}
div#content div.slide-alternate-video div.list article iframe {
	width: 100%;
	height: 100%;
}
div#content div.slide-alternate-video div.pager {
	position: relative;
	width: 180px;
	height: 30px;
	margin: 20px auto 0px auto;
}
div#content div.slide-alternate-video div.pager p.button {
	position: absolute;
	width: 80px;
	height: 30px;
	top: 0px;
	border: 1px solid #a0a0a0;
	pointer-events: none;
	cursor: pointer;
	border-radius: 15px;
	opacity: 0;
	transition: 0.25s background-color ease, 0.25s opacity ease;
}
div#content div.slide-alternate-video div.pager p.button:hover {
	background-color: #a0a0a0;
}
div#content div.slide-alternate-video div.pager p.button.active {
	opacity: 1;
	pointer-events: auto;
}
div#content div.slide-alternate-video div.pager p.button::before,
div#content div.slide-alternate-video div.pager p.button::after {
	position: absolute;
	border-bottom: 1px solid #a0a0a0;
	content: "";
	transition: 0.25s border-color ease;
}
div#content div.slide-alternate-video div.pager p.button:hover::before,
div#content div.slide-alternate-video div.pager p.button:hover::after {
	border-color: #ffffff;
}
div#content div.slide-alternate-video div.pager p.button::before {
	width: 10px;
	height: 0px;
	left: calc(50% - 5px);
	top: calc(50% - 0.5px);
}
div#content div.slide-alternate-video div.pager p.button::after {
	width: 6px;
	height: 6px;
	left: calc(50% - 1px);
	top: calc(50% - 3px);
	border-right: 1px solid #a0a0a0;
	transform: rotate(-45deg);
}
div#content div.slide-alternate-video div.pager p.button-prev {
	left: 0px;
	transform: scaleX(-1);
}
div#content div.slide-alternate-video div.pager p.button-next {
	right: 0px;
}

/* title
-------------------------------------------------------------------------------- */

div#content div#title-top {
	position: relative;
}
div#content div#title-top p:where(.image, .logo, .button-news) {
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
div#content div#title-top.active p.image,
div#content div#title-top.active-alternate p:where(.logo, .button-news) {
	opacity: 1;
}
div#content div#title-top p.image {
	position: relative;
	aspect-ratio: 1366 / 620;
}
div#content div#title-top p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#content div#title-top p.logo {
	position: absolute;
	width: calc(136px * 1.5);
	height: calc(26px * 1.5);
	right: 140px;
	top: calc(50% - 25px);
	background: url(../images/logo.svg) no-repeat center;
	background-size: 100% auto;
	transition-delay: 0.75s;
}
body.bridal div#content div#title-top p.logo {
	color: #ffffff;
	background-image: url(../images/logo-white.svg);
}
body.jewelry div#content div#title-top p.logo {
	color: #baafa4;
	background-image: url(../images/logo-jewelry.svg);
}
div#content div#title-top p.logo::before {
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: -45px;
	text-align: center;
	text-indent: 0.15em;
	font-family: "Open Sans", sans-serif;
	font-size: 1.0625rem;
	font-weight: 400;
	letter-spacing: 0.15em;
}
body.watch div#content div#title-top p.logo::before {
	content: "WATCH";
}
body.bridal div#content div#title-top p.logo::before {
	content: "BRIDAL";
}
body.jewelry div#content div#title-top p.logo::before {
	content: "JEWELRY";
}
div#content div#title-top p.button-news {
	position: absolute;
	right: 30px;
	bottom: 30px;
	transition-delay: 1.25s;
}
div#content div#title-top p.button-news a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1;
	width: 65px;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 0.6875rem;
	border-radius: 50% 50% 5px 50%;
	transition: 0.25s color ease, 0.25s background-color ease;
}
body.watch div#content div#title-top p.button-news a {
	color: #ffffff;
	background-color: #252526;
}
body.watch div#content div#title-top p.button-news a:hover {
	background-color: #707070;
}
body:where(.bridal, .jewelry) div#content div#title-top p.button-news a {
	color: #707070;
	background-color: #ffffff;
}
body:where(.bridal, .jewelry) div#content div#title-top p.button-news a:hover {
	color: #ffffff;
	background-color: #707070;
}
body.bridal div#content div#title-top p.image img {
	filter: brightness(1.25) blur(25px);
	transition: 1.75s filter ease;
}
body.bridal div#content div#title-top.disalble p.image img {
	filter: brightness(1) blur(0px);
	transition: none;
}
body.bridal div#content div#title-top.active-alternate p.image img {
	filter: brightness(1) blur(0px);
}
body.bridal div#content div#title-top div.intro {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 5;
	transition: 1.25s opacity ease-in-out;
}
body.bridal div#content div#title-top.active-alternate div.intro {
	pointer-events: none;
	opacity: 0;
}
body.bridal div#content div#title-top div.intro p {
	text-align: center;
	text-indent: 0.15em;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
	line-height: 2.375rem;
	color: #707070;
	letter-spacing: 0.15em;
}
body.bridal div#content div#title-top div.intro p i {
	opacity: 0;
	transition: 1.75s opacity ease-in-out;
}
body.bridal div#content div#title-top.intro div.intro p i {
	opacity: 1;
}
div#content div#title {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 200px;
	margin: auto;
}
body.information div#content div#title {
	padding-top: 60px;
}
div#content div#title div.text {
	position: relative;
	width: 100%;
	text-align: center;
}
div#content div#title div.text h1 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 2rem;
	margin-bottom: 10px;
}
div#content div#title div.text h1 span {
	font-size: 1.5rem;
}
div#content div#title-bridal-contents {
	position: relative;
}
div#content div#title-bridal-contents :where(div.text, p.image) {
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
div.active div#content div#title-bridal-contents :where(div.text, p.image) {
	opacity: 1;
}
div#content div#title-bridal-contents div.text {
	position: absolute;
	width: 280px;
	right: 120px;
	bottom: 120px;
	z-index: 1;
	text-align: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	color: #ffffff;
	transition-delay: 0.5s;
}
div#content div#title-bridal-contents div.text p.sub {
	font-size: 1rem;
	margin-bottom: 15px;
}
div#content div#title-bridal-contents div.text h1 {
	font-size: 1.875rem;
	line-height: 2.375rem;
}
div#content div#title-bridal-contents p.image {
	position: relative;
	aspect-ratio: 1366 / 530;
}
div#content div#title-bridal-contents p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
/* div#content div#title.category-top {
	height: 620px;
	margin-bottom: 94px;
}
div#content div#title.category-top p.button-down {
	bottom: -94px;
} */
/* div#content div#title.category-top p.image { */
	/* position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px; */
	/* background-repeat: no-repeat;
	background-position: center;
	background-size: cover; */
	/* opacity: 0;
	transition: 1.25s opacity 0.25s ease-in-out; */
/* } */
/* div.active div#content div#title.category-top p.image {
	opacity: 1;
}
div#content div#title.category-top p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
} */
/* div#content div#title.category-top.watch p.image {
	background-image: url(../images/title-image-watch.jpg);
}
div#content div#title.category-top.bridal p.image {
	background-image: url(../images/title-image-bridal.jpg);
}
div#content div#title.category-top.jewelry p.image {
	background-image: url(../images/title-image-jewelry.jpg);
} */
/* div#content div#title.category-top div.text h1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: absolute;
	width: 200px;
	height: 50px;
	left: calc(50% + 180px);
	top: calc(50% - 25px);
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.25rem;
	color: #ffffff;
	border: 1px solid #ffffff;
	opacity: 0;
	transition: 1.25s opacity 1.25s ease-in-out;
}
div#content div#title.category-top.reverse div.text h1 {
	color: #252526;
	border-color: #252526;
}
div.active div#content div#title.category-top div.text h1 {
	opacity: 1;
}
div#content div#title.category-top div.text p.sub {
	display: none;
} */
div#content div#title.image-text {
	height: auto;
	margin-bottom: 54px;
	opacity: 0;
	transition: 1.25s opacity 0.25s ease-in-out;
}
div#content div#title.image-text.no-text {
	margin-bottom: 0px;
}
div.active div#content div#title.image-text {
	opacity: 1;
}
/* div#content div#title.image-text p.button-down {
	bottom: -54px;
} */
div#content div#title.image-text.pearl {
	margin-bottom: 94px;
}
div#content div#title.image-text p.image {
	aspect-ratio: 1366 / 400;
	width: 100%;
	min-height: 400px;
	position: relative;
	margin-bottom: 60px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
div#content div#title.image-text p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div.active div#content div#title.image-text p.image {
	opacity: 1;
}
div#content div#title.image-text.no-text p.image {
	margin-bottom: 0px;
}
div#content div#title.image-text.brand p.headline {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.25rem;
	line-height: 2.25rem;
	padding-top: 40px;
}
div#content div#title.image-text.bridal-advisor {
	width: 980px;
}
div#content div#title.image-text.diamond p.image {
	background-image: url(../images/title-image-bridal-diamond.jpg);
}
div#content div#title.image-text.pearl p.image {
	height: 310px;
	background-image: url(../images/title-image-bridal-pearl.jpg);
}
div#content div#title.image-text.ring-reform p.image {
	background-image: url(../images/title-image-bridal-ring-reform.jpg);
}
div#content div#title.image-text.propose-plan p.image {
	background-image: url(../images/title-image-bridal-propose-plan.jpg);
}
div#content div#title.image-text.bridal-advisor p.image {
	background-image: url(../images/title-image-bridal-bridal-advisor.jpg);
}
div#content div#title.image-text.jewelry-reform p.image {
	background-image: url(../images/title-image-jewelry-reform.jpg);
}
div#content div#title.image-text.staff p.image {
	background-image: url(../images/title-image-staff.jpg);
}
div#content div#title.image-text.recruit p.image {
	background-image: url(../images/title-image-recruit.jpg);
}
div#content div#title.image-text.tudor-kanazawa p.image {
	background-image: url(../images/title-image-tudor-kanazawa.jpg);
}



div#content div#title:where(.bridal-category, .jewelry-category) {
	height: auto;
	margin-bottom: 60px;
}
div#content div#title:where(.bridal-category, .jewelry-category) div.image-text {
	position: relative;
	width: 100%;
}
div#content div#title:where(.bridal-category, .jewelry-category) div.image-text p.image,
div#content div#title:where(.bridal-category, .jewelry-category) div.image-text div.text {
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
div.active div#content div#title:where(.bridal-category, .jewelry-category) div.image-text p.image,
div.active div#content div#title:where(.bridal-category, .jewelry-category) div.image-text div.text {
	opacity: 1;
}
div#content div#title:where(.bridal-category, .jewelry-category) div.image-text p.image {
	aspect-ratio: 1366 / 530;
	min-height: 530px;
}
div#content div#title:where(.bridal-category, .jewelry-category) div.image-text p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#content div#title:where(.bridal-category, .jewelry-category) div.image-text div.text {
	position: absolute;
	width: 300px;
	top: calc(50% - 20px);
	text-align: center;
	transition-delay: 0.25s;
}
div#content div#title.bridal-category div.image-text div.text {
	right: 80px;
	color: #9a8269;
}
div#content div#title.jewelry-category div.image-text div.text {
	left: calc(50% - 150px);
	color: #ffffff;
}
div#content div#title:where(.bridal-category, .jewelry-category) div.image-text div.text h1 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 2rem;
	margin-bottom: 10px;
}



div#content div#title.bridal-type {
	display: block;
	height: auto;
	margin-bottom: -100px;
	padding-top: 40px;
}
div#content div#title.bridal-type div.image-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
div#content div#title.bridal-type div.image-text p.image,
div#content div#title.bridal-type-alternate p.image {
	opacity: 0;
	transition: 1.25s opacity 0.25s ease-in-out;
}
div.active div#content div#title.bridal-type div.image-text p.image,
div.active div#content div#title.bridal-type-alternate p.image {
	opacity: 1;
}
div#content div#title.bridal-type div.image-text p.image {
	width: 240px;
	height: 240px;
	opacity: 0;
	transition: 1.25s opacity 0.25s ease-in-out;
}
div#content div#title.bridal-type div.image-text div.text {
	width: 160px;
	line-height: 2.25rem;
}
div#content div#title.bridal-type div.image-text div.text h1 {
	font-family: "EB Garamond", serif;
	font-size: 2rem;
	font-style: italic;
	color: #9a9085;
	margin-bottom: 10px;
}
div#content div#title.bridal-type div.image-text div.text p.sub {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.25rem;
}
div#content div#title.bridal-type-alternate {
	width: 850px;
	height: 200px;
}
div#content div#title.bridal-type-alternate p.image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-image: url(../images/title-image-bridal-bridal-watch.jpg);
	background-size: cover;
}
div#content div#title.bridal-type-alternate div.text {
	color: #ffffff;
	padding: 20px 0px 0px 62.5%;
}
div#content div#title.bridal-type-alternate div.text h1 {
	font-family: "EB Garamond", serif;
	font-size: 2rem;
	font-style: italic;
	margin-bottom: 0px;
}
div#content div#title.bridal-type-alternate div.text p.sub {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1rem;
}
/* div#content div#title.qa div.text,
div#content div#title.service div.text,
div#content div#title.after-service div.text {
	color: #9a9085;
} */
div#content div#title.qa,
div#content div#title.service,
div#content div#title.after-service {
	height: auto;
	padding: 80px 0px;
}
div#content div#title.qa div.text p.icon,
div#content div#title.service div.text p.icon,
div#content div#title.after-service div.text p.icon {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 15px;
}
div#content div#title.qa div.text p.icon img,
div#content div#title.service div.text p.icon img,
div#content div#title.after-service div.text p.icon img {
	width: calc(58px * 1.5);
}
div#content div#title.qa div.text h1,
div#content div#title.service div.text h1,
div#content div#title.after-service div.text h1 {
  font-family: source-han-sans-japanese, "Yu Gothic", YuGothic, sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	color: #252526;
	margin-bottom: 0px;
}
/* div#content div#title.qa div.text p.sub,
div#content div#title.service div.text p.sub,
div#content div#title.after-service div.text p.sub {
	font-size: 0.8125rem;
} */
div#content div#title.couple {
	background-color: #f7f2f4;
}
div#content div#title.couple::before,
div#content div#title.couple::after {
	position: absolute;
	pointer-events: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	content: "";
}
div#content div#title.couple::before {
	width: 123px;
	height: 133px;
	left: calc(50% - 200px);
	top: calc(50% - 80px);
	background-image: url(../images/couple-illust-01.png);
}
div#content div#title.couple::after {
	width: 87px;
	height: 68px;
	left: calc(50% + 80px);
	top: calc(50% - 10px);
	background-image: url(../images/couple-illust-02.png);
}
div#content div#title.column div.text h1 {
	font-size: 2rem;
	margin-bottom: 0px;
}
div#content div#title.column div.text p.sub {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 200px;
	height: 25px;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1rem;
	color: #ffffff;
	margin: 20px auto 0px auto;
	padding-bottom: 1px;
}
div#content div#title.column div.text p.sub-watch {
	background-color: #252526;
}
div#content div#title.column div.text p.sub-bridal {
	background-color: #dec3cc;
}
div#content div#title.column div.text p.sub-jewelry {
	background-color: #cec5bb;
}
div#content div#title.jewelry-type {
	width: 850px;
	height: 320px;
	margin-bottom: 40px;
}
div#content div#title.jewelry-type p.image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	transition: 1.25s opacity 0.25s ease-in-out;
}
div.active div#content div#title.jewelry-type p.image {
	opacity: 1;
}
div#content div#title.jewelry-type.necklace p.image {
	background-image: url(../images/title-image-jewelry-necklace.jpg);
}
div#content div#title.jewelry-type.ring p.image {
	background-image: url(../images/title-image-jewelry-ring.jpg);
}
div#content div#title.jewelry-type.earring p.image {
	background-image: url(../images/title-image-jewelry-earring.jpg);
}
div#content div#title.jewelry-type.bracelet p.image {
	background-image: url(../images/title-image-jewelry-bracelet.jpg);
}
div#content div#title.jewelry-type.gift p.image {
	background-image: url(../images/title-image-jewelry-gift.jpg);
}
div#content div#title.jewelry-type div.text {
	color: #ffffff;
	padding: 20px 50% 0px 0px;
}
div#content div#title.jewelry-type.earring div.text {
	padding-right: 0px;
}
div#content div#title.jewelry-type div.text h1 {
	font-family: "EB Garamond", serif;
	font-size: 2.5rem;
	font-style: italic;
	margin-bottom: 0px;
}
div#content div#title.jewelry-type div.text p.sub {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
}
div#content div#title.about {
	display: block;
	height: auto;
}
div#content div#title.about div.text h1,
div#content div#title.about div.text p.sub {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
}
div#content div#title.about div.text h1 {
	font-size: 2rem;
	margin-bottom: 10px;
}
div#content div#title.about div.text p.sub {
	font-size: 0.9375rem;
}
div#content div#title.about p.image {
	position: relative;
	height: 620px;
	margin-bottom: 60px;
	background: url(../images/title-image-about.jpg) no-repeat center;
	background-size: cover;
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
div.active div#content div#title.about p.image {
	opacity: 1;
}
/* div#content div#title.about p.image span.button-down {
	bottom: 40px;
}
div#content div#title.about p.image span.button-down a {
	background-image: url(../images/arrow-down-01-white.svg);
} */
div.active div#content div#title.about p.image span#down {
	position: absolute;
	bottom: 0px;
}
div#content:not(:has(#recruit-concept)) div#title.recruit {
	margin-bottom: 100px;
}
div#content div#title.misc {
	align-items: center;
}
div#content div#title.misc div.text h1 {
	font-size: 1.5rem;
}
div#content div#title-bottom {
	position: relative;
	margin-bottom: 100px;
}
/* div#content div#title-bottom.service,
div#content div#title-bottom.after-service {
	margin-bottom: 104px;
} */
/* div#content div#title-bottom.jewelry-type {
	margin-bottom: 54px;
} */
/* div#content div#title-bottom.service p.button-down,
div#content div#title-bottom.after-service p.button-down,
div#content div#title-bottom.jewelry-type p.button-down {
	bottom: -54px;
} */
div#content div#title-bottom.qa p.icon,
div#content div#title-bottom.service p.icon,
div#content div#title-bottom.after-service p.icon {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
div#content div#title-bottom.service p.icon,
div#content div#title-bottom.after-service p.icon {
	margin-bottom: 40px;
}
div#content div#title-bottom.qa p.icon img,
div#content div#title-bottom.service p.icon img,
div#content div#title-bottom.after-service p.icon img {
	width: auto;
	height: 135px;
}
div#content div#title-bottom p.description {
	position: relative;
	text-align: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1rem;
	line-height: 2.25rem;
}



div#content div.form-search p.button-form {
	display: none;
}
div#content div.form-search form {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
div#content div.form-search form div.component {
	text-align: left;
	margin-right: 15px;
}
div#content div.form-search form.number div.component {
	width: 200px;
}
div#content div.form-watch form.custom div.component,
div#content div.form-bridal form.custom div.component {
	width: calc(calc(100% - 175px) * 0.2);
}
div#content div.form-jewelry form.custom div.component {
	width: calc(calc(100% - 160px) * 0.25);
}
div#content div.form-search form div.component p.label {
	font-size: 0.8125rem;
	line-height: 1rem;
	margin-bottom: 10px;
}
div#content div.form-search form div.component input[type=text],
div#content div.form-search form div.action input[type=submit],
div#content div.form-search form div.component select {
	display: block;
}
div#content div.form-search form div.component input[type=text] {
	width: 100%;
	height: 40px;
	line-height: calc(40px - 2px);
	border: 1px solid #d1d1d1;
	background-color: transparent;
}
div#content div.form-search form div.action input[type=submit] {
	width: 100px;
	height: 40px;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 40px;
	padding: 0px;
	border-radius: 120px;
}
div#content div.form-search form div.action input[type=submit]:hover {
	background-color: #a0a0a0;
}
div#content div.form-search form div.component select {
	width: 100%;
	height: 40px;
	line-height: calc(40px - 2px);
	border: 1px solid #d1d1d1;
	background-color: transparent;
	transition: 0.25s background-color ease;
}
div#content section#result div.form-search {
	border-top: 1px solid #ebebeb;
	margin-top: 80px;
	padding-top: 60px;
}

/* slide
-------------------------------------------------------------------------------- */

div#content div.slide {
	position: relative;
	padding-bottom: 46px;
}
div#content div.slide div.container {
	overflow: hidden;
	opacity: 0;
	transition: 1.25s opacity 0.25s ease;
}
div#content div.slide.active div.container {
	opacity: 1;
}
div#content div.slide div.inner-container {
	display: flex;
	flex-wrap: wrap;
	width: 99999px;
}
div#content div.slide div.container article p.image {
	position: relative;
	background-color: #ffffff;
}
div#content div.slide div.pager {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 0px;
}
div#content div.slide div.pager p.button {
	position: absolute;
	width: 40px;
	height: 40px;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 25px;
}
div#content div.slide div.pager p.button-prev {
	left: -60px;
	background-image: url(../images/arrow-pager-prev-02.svg);
}
div#content div.slide div.pager p.button-next {
	right: -60px;
	background-image: url(../images/arrow-pager-next-02.svg);
}
div#content div.slide div.navi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: absolute;
	width: 100%;
	/* min-height: 6px; */
	left: 0px;
	bottom: 0px;
}
div#content div.slide div.navi p.button {
	/* box-sizing: border-box; */
	/* width: 6px;
	height: 6px;
	margin: 0px 5px;
	cursor: pointer;
	border: 1px solid #7f7f7f;
	border-radius: 50%;
	transition: 0.25s background-color ease; */
	position: relative;
	width: 50px;
	height: 10px;
	border: none;
	cursor: pointer;
	margin: 0px;
	background-color: transparent;
	border-radius: 0px;
}
/* div#content div.slide div.navi p.button:hover,
div#content div.slide div.navi p.button.active {
	background-color: #7f7f7f;
} */
div#content div.slide div.navi p.button::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	top: calc(50% - 1px);
	border-bottom: 2px solid #ebebeb;
	content: "";
	transition: 0.25s border-color ease;
}
div#content div.slide div.navi p.button:hover::before,
div#content div.slide div.navi p.button.active::before {
	border-color: #a0a0a0;
}
div#content div.slide-campaign {
	width: 760px;
	margin: auto;
}
div#content div.slide-campaign div.container {
	overflow: hidden;
	box-shadow: 0px 2.5px 5px rgba(0, 0, 0, 0.075);
}
div#content div.slide-campaign div.container article {
	width: 760px;
	margin-right: 0px;
}
div#content div.slide-campaign div.container article p.image {
	aspect-ratio: 1000 / 460;
}
div#content div.slide-campaign div.container article p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#content div.slide-campaign div.pager {
	display: none;
}
/* div#content div.slide-campaign div.pager p.button {
	position: absolute;
	width: 60px;
	height: 60px;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 41px;
}
div#content div.slide-campaign div.pager p.button-prev {
	left: -100px;
	background-image: url(../images/arrow-pager-prev-03.svg);
}
div#content div.slide-campaign div.pager p.button-next {
	right: -100px;
	background-image: url(../images/arrow-pager-next-03.svg);
} */
div#content div.slide-campaign div.navi p.button {
	position: relative;
	width: 50px;
	height: 10px;
	border: none;
	cursor: pointer;
	margin: 0px;
	background-color: transparent;
	border-radius: 0px;
}
div#content div.slide-campaign div.navi p.button:hover,
div#content div.slide-campaign div.navi p.button.active {
	background-color: transparent;
}
div#content div.slide-campaign div.navi p.button::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	top: calc(50% - 1px);
	border-bottom: 2px solid #ebebeb;
	content: "";
	transition: 0.25s border-color ease;
}
div#content div.slide-campaign div.navi p.button:hover::before,
div#content div.slide-campaign div.navi p.button.active::before {
	border-color: #a0a0a0;
}
div#content div.slide-product div.navi p.button {
	width: 6px;
	height: 6px;
	border: 1px solid #707070;
	margin: 0px 5px;
	border-radius: 50%;
	transition: 0.25s background-color ease;
}
div#content div.slide-product div.navi p.button:hover,
div#content div.slide-product div.navi p.button.active {
	background-color: #707070;
}
div#content div.slide-product div.navi p.button::before {
	display: none;
}

/* banner
-------------------------------------------------------------------------------- */

div#content div.container-banner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	width: 800px;
	margin: auto;
	padding: 100px 0px;
}
div#content nav#navi-article + div.container-banner,
div#content section#staff + div.container-banner {
	padding-top: 0px;
}
div#content div.container-banner div.banner {
	box-sizing: border-box;
	width: 100%;
	background-color: #f7f3ef;
}
div#content div.container-banner div.banner:not(:last-child) {
	margin-bottom: 20px;
}
div#content div.container-banner.bridal div.banner-propose-plan {
	background-color: #dec3cc;
}
div#content div.container-banner.bridal div.banner-bridal-advisor {
	background-color: #f7f2f4;
}
div#content div.container-banner.jewelry div.banner-reform {
	background-color: #cec5bb;
}
div#content div.container-banner div.banner a {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	color: #252526;
}
div#content div.container-banner div.banner-reverse a {
	flex-direction: row-reverse;
}
div#content div.container-banner div.banner p.image {
	position: relative;
	width: 450px;
}
div#content div.container-banner div.banner-alternate p.image {
	width: 520px;
}
div#content div.container-banner div.banner-swap p.image img:nth-child(2) {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
	opacity: 0;
	transition: 0.125s opacity ease-in;
}
div#content div.container-banner div.banner-swap p.image:hover img:nth-child(2) {
	opacity: 1;
}
div#content div.container-banner.bridal div.banner-bridal-advisor p.image {
	box-sizing: border-box;
	width: 480px;
	overflow: hidden;
	border: 20px solid #f7f2f4;
	border-left: none;
}
div#content div.container-banner.bridal div.banner-bridal-advisor p.image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.25s transform ease;
}
div#content div.container-banner.bridal div.banner-bridal-advisor p.image:hover img {
	transform: scale(1.05);
}
div#content div.container-banner div.banner div.text {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: calc(100% - 450px);
	text-align: center;
}
div#content div.container-banner div.banner-alternate div.text {
	width: calc(100% - 520px);
}
div#content div.container-banner.bridal div.banner-propose-plan div.text {
	box-sizing: border-box;
	color: #ffffff;
	padding-top: 5px;
}
div#content div.container-banner.bridal div.banner-bridal-advisor div.text {
	width: calc(100% - 480px);
}
div#content div.container-banner div.banner div.text h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
}
div#content div.container-banner.bridal div.banner div.text h2 {
	font-family: "Open Sans", sans-serif;
	font-size: 1.625rem;
	font-weight: 400;
	letter-spacing: 0em;
}
div#content div.container-banner div.banner div.text p.sub {
	font-size: 0.75rem;
	margin-bottom: 40px;
}
div#content div.container-banner.bridal div.banner-half {
	width: calc(50% - 10px);
	border: none;
}
div#content div.container-banner.bridal div.banner-half p.image {
	width: auto;
}
div#content div.container-banner.bridal div.banner-half div.text {
	box-sizing: border-box;
	position: absolute;
	width: 100%;
	height: 100px;
	left: 0px;
	bottom: 0px;
	padding-top: 5px;
	background-color: rgba(247, 242, 244, 0.875);
}
div#content div.container-banner.bridal div.banner-half div.text h2 {
	font-size: 1.625rem;
}
div#content div.container-banner.bridal div.banner-half div.text p.sub {
	margin-bottom: 0px;
}

/* pager, navi-article
-------------------------------------------------------------------------------- */

div#content div#pager {
	display: flex;
	flex-wrap: wrap;
	font-size: 0.8125rem;
	line-height: 1rem;
	margin-top: 100px;
}
div#content div#pager span,
div#content div#pager a.page-numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 25px;
	height: 25px;
	border: 1px solid transparent;
	margin: 0px 5px;
	border-radius: 50%;
	transition: 0.25s color ease, 0.25s border-color ease;
}
div#content div#pager a.page-numbers {
	color: #d1d1d1;
}
div#content div#pager span.current,
div#content div#pager a.page-numbers:hover {
	color: #707070;
	border-color: #7f7f7f;
}
div#content div#pager a.page-numbers.prev,
div#content div#pager a.page-numbers.next {
	width: auto;
	color: #707070;
	border-color: transparent;
	border-radius: 0px;
	transition: 0.25s color ease;
}
div#content div#pager a.page-numbers.prev:hover,
div#content div#pager a.page-numbers.next:hover {
	color: #a0a0a0;
}
div#content div#pager a.page-numbers.prev {
	margin: 0px 35px 0px 0px;
	/* padding-left: 20px;
	background-image: url(../images/arrow-pager-prev-01.svg);
	background-position: left center; */
}
div#content div#pager a.page-numbers.next {
	margin: 0px 0px 0px 35px;
	/* padding-right: 20px;
	background-image: url(../images/arrow-pager-next-01.svg);
	background-position: right center; */
}
div#content nav#navi-article {
	width: 250px;
	margin-top: 100px;
	/* margin: 0px auto 100px auto; */
}
div#content nav#navi-article ul {
	position: relative;
	min-height: 30px;
}
div#content nav#navi-article ul li {
	font-size: 0.8125rem;
}
div#content nav#navi-article ul li a {
	transition: 0.25s color ease;
}
div#content nav#navi-article ul li a:hover {
	color: #a0a0a0;
}
div#content nav#navi-article ul li.prev,
div#content nav#navi-article ul li.next {
	position: absolute;
	top: 0px;
}
div#content nav#navi-article ul li.prev a,
div#content nav#navi-article ul li.next a {
	display: block;
}
div#content nav#navi-article ul li.prev {
	left: 0px;
}
div#content nav#navi-article ul li.list {
	text-align: center;
	font-size: 0.8125rem;
}
div#content nav#navi-article ul li.list a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.25em;
}
div#content nav#navi-article ul li.next {
	right: 0px;
}

/* profile
-------------------------------------------------------------------------------- */

div#content div.profile {
	position: relative;
}
div#content div.profile::before {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: calc(50% - 50vw);
	bottom: 0px;
	background-color: #efece4;
	content: "";
}
div#content div.profile div.inner-profile {
	box-sizing: border-box;
	position: relative;
	margin: auto;
}
div#content  div.profile p.image {
	position: absolute;
	left: 0px;
	overflow: hidden;
	border-radius: 50%;
}
div#content div.profile div.text {
	display: flex;
	flex-wrap: wrap;
}
div#content div.profile div.inner-profile {
	width: 800px;
	padding: 40px 0px 40px 200px;
}
div#content  div.profile-header p.image {
	width: 170px;
	height: 170px;
	top: -40px;
}
div#content div.profile-header div.text {
	align-items: center;
	box-sizing: border-box;
	position: relative;
}
div#content div.profile div.text div.name {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
}
div#content div.profile div.text div.name p.label {
	font-size: 0.8125rem;
}
div#content div.profile div.text div.name h1 {
	font-size: 1.625rem;
}
div#content div.profile-header div.text::before {
	position: absolute;
	width: 0px;
	height: 100% ;
	left: 260px;
	top: 0px;
	border-right: 1px solid #9a9085;
	content: "";
}
div#content div.profile-header div.text div.name {
	width: 240px;
	margin-right: 60px;
}
div#content div.profile-header div.text p.description {
	width: calc(100% - 300px);
	font-size: 0.8125rem;
	line-height: 1.5rem;
}
div#content  div.profile-footer {
	margin-bottom: 100px;
}
div#content  div.profile-footer p.image {
	width: 180px;
	height: 180px;
	top: -70px;
}
div#content div.profile-footer div.text {
	align-items: flex-end;
}
div#content div.profile-footer div.text  p.list {
	font-size: 0.8125rem;
	margin: 0px 0px 0px auto;
}

/* home
-------------------------------------------------------------------------------- */

div#content div#home-campaign {
	position: relative;
	padding-bottom: 40px;
	/* background: linear-gradient(to bottom, #ffffff 0%, #cccccc 100%); */
}
/* div#content div#home-campaign p.button-down {
	bottom: 60px;
} */
div#content div#home-campaign div.slide-campaign {
	width: auto;
	padding-bottom: 45px;
}
div#content div#home-campaign div.slide-campaign div.container {
	/* padding: 10px 0px 20px 0px; */
	box-shadow: none;
}
div#content div#home-campaign div.slide-campaign div.container article {
	/* width: 1000px;
	margin-right: 50px; */
	width: 100vw;
}
div#content div#home-campaign div.slide-campaign div.container article p.image {
	/* max-height: 460px;
	overflow: hidden; */
	transition: 0.25s all ease-in-out;
}
/* div#content div#home-campaign div.slide-campaign div.container article.active p.image {
	box-shadow: 0px 2.5px 5px rgba(0, 0, 0, 0.25);
	transform: scale(1.05);
} */
/* div#content div#home-campaign div.slide-campaign div.container article p.image::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: rgba(0, 0, 0, 0.5);
	content: "";
	opacity: 1;
	pointer-events: none;
	transition: 0.25s opacity ease;
}
div#content div#home-campaign div.slide-campaign div.container article.active p.image::before {
	opacity: 0;
} */
div#content div#home-campaign div.slide div.navi {
	min-height: auto;
}

/* div#content div#home-campaign div.slide div.navi p.button {
	position: relative;
	width: 50px;
	height: 10px;
	border: none;
	cursor: pointer;
	margin: 0px;
	background-color: transparent;
	border-radius: 0px;
}
div#content div#home-campaign div.slide div.navi p.button::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	top: calc(50% - 1px);
	border-bottom: 2px solid #ebebeb;
	content: "";
	transition: 0.25s border-color ease;
}
div#content div#home-campaign div.slide div.navi p.button:hover::before,
div#content div#home-campaign div.slide div.navi p.button.active::before {
	border-color: #a0a0a0;
} */
div#content div#category div.inner-category {
	width: 980px;
	margin: auto;
	padding: 40px 0px;
}
div#content div#category div.list div.row:not(:last-child) {
	margin-bottom: 10px;
}
div#content div#category div.list div.row a {
	display: block;
	position: relative;
}
div#content div#category div.list div.row p.image {
	border-radius: 10px;
}
div#content div#category div.list div.row div.text {
	position: absolute;
	width: 160px;
	right: 100px;
	top: calc(50% - 60px);
	z-index: 1;
	text-align: center;
	color: #252526;
}
div#content div#category div.list div.row div.text h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.875rem;
}
div#content div#category div.list div.row div.text p.sub {
	font-size: 0.8125rem;
	margin-bottom: 30px;
}
div#content div#category div.list div.row div.text p.button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 90px;
	height: 30px;
	font-size: 0.6875rem;
	line-height: 1rem;
	color: #707070;
	border: 1px solid #a0a0a0;
	margin: 0px auto;
	padding-bottom: 2px;
	border-radius: 15px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
div#content div#category div.list div.row a:hover div.text p.button {
	color: #ffffff;
	background-color: #a0a0a0;
}
/* div#content div#category div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
}
div#content div#category div.list div.row {
	width: calc(33.33% - 20px);
	overflow: hidden;
	color: #ffffff;
	margin-right: 20px;
}
div#content div#category div.list div.row-reverse {
	color: #252526;
}
div#content div#category div.list div.row a {
	display: block;
	position: relative;
	color: #ffffff;
	padding-bottom: 100%;
}
div#content div#category div.list div.row-reverse a {
	color: #252526;
}
div#content div#category div.list div.row-reverse a:hover {
	color: #ffffff;
}
div#content div#category div.list div.row p.image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: 0.25s transform ease;
} */
/* div#content div#category div.list div.row a:hover p.image {
	transform: scale(1.0375);
}
div#content div#category div.list div.row-watch p.image {
	background-image: url(../images/category-image-01.jpg);
}
div#content div#category div.list div.row-bridal p.image {
	background-image: url(../images/category-image-02.jpg);
}
div#content div#category div.list div.row-jewelry p.image {
	background-image: url(../images/category-image-03.jpg);
}
div#content div#category div.list div.row p.image::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: rgba(0, 0, 0, 0.5);
	content: "";
	opacity: 0;
	transition: 0.25s opacity ease;
} */
/* div#content div#category div.list div.row a:hover p.image::before {
	opacity: 1;
}
div#content div#category div.list div.row div.text {
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: 30px;
	text-align: center;
}
div#content div#category div.list div.row div.text h2 {
	position: relative;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
	transition: 0.25s transform ease;
}
div#content div#category div.list div.row a:hover div.text h2 {
	transform: translateY(-15px);
}
div#content div#category div.list div.row div.text h2::before,
div#content div#category div.list div.row div.text h2::after {
	position: absolute;
	height: 0px;
	border-bottom: 1px solid #ffffff;
	content: "";
} */
/* div#content div#category div.list div.row-reverse div.text h2::before,
div#content div#category div.list div.row-reverse div.text h2::after {
	border-bottom-color: #252526;
}
div#content div#category div.list div.row-reverse a:hover div.text h2::before,
div#content div#category div.list div.row-reverse a:hover div.text h2::after {
	border-bottom-color: #ffffff;
}
div#content div#category div.list div.row div.text h2::before {
	width: 35px;
	left: calc(50% + 80px);
	top: calc(50% + 2px);
	transition: 0.25s width ease;
}
div#content div#category div.list div.row a:hover div.text h2::before {
	width: 60px;
}
div#content div#category div.list div.row div.text h2::after {
	width: 10px;
	left: calc(50% + 106px);
	top: calc(50% - 2px);
	transition: 0.25s left ease;
	transform: rotate(45deg);
}
div#content div#category div.list div.row a:hover div.text h2::after {
	left: calc(50% + 131px);
}
div#content div#category div.list div.row div.text p.sub {
	font-size: 0.8125rem;
} */
div#content div#banner-rolex {
	margin-top: 60px;
}
/* div#content div#banner-rolex iframe {
	background-color: #197149 !important;
} */
div#content section#home-information div.inner-section,
div#content section#home-news div.inner-section,
div#content section#home-column div.inner-section,
body.home div#content section#video div.inner-section {
	padding-bottom: 0px;
}
div#content section#home-information div.inner-section {
	width: 700px;
}
div#content section#home-information div.list article {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px solid #d1d1d1;
	padding: 20px;
}
div#content section#home-information div.list article:first-child {
	border-top: 1px solid #d1d1d1;
}
div#content section#home-information div.list article p.created {
	width: 100px;
	font-size: 0.8125rem;
}
div#content section#home-information div.list article h3 {
	width: calc(100% - 200px);
	font-size: 0.9375rem;
	margin-right: 20px;
}
div#content section#home-information div.list article p.read {
	width: 80px;
	font-size: 0.6875rem;
}
div#content section#home-information div.list article p.read a {
	display: block;
	text-align: right;
	/* background: url(../images/arrow-more-01.svg) no-repeat right center;
	background-size: auto 10px; */
}
div#content section#home-news div.list-category {
	display: flex;
	flex-wrap: wrap;
	margin-right: -60px;
}
div#content section#home-news div.list-category div.row-category {
	width: calc(33.33% - 60px);
	margin-right: 60px;
}
div#content section#home-news div.list-category div.row-category h3.headline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	width: 100px;
	height: 35px;
	border: 1px solid #252526;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 0.8125rem;
	margin: 0px auto 45px auto;
	transition: 0.25s background-color ease;
}
div#content section#home-news div.list-category div.row-category:hover h3.headline {
	color: #ffffff;
	background-color: #252526;
}
div#content section#home-news div.list-category div.row-category h3.headline::before,
div#content section#home-news div.list-category div.row-category h3.headline::after {
	position: absolute;
	background-color: #ffffff;
	content: "";
	transition: 0.25s background-color ease;
}
div#content section#home-news div.list-category div.row-category h3.headline::before {
	box-sizing: border-box;
	width: 10px;
	height: 10px;
	left: calc(50% - 5px);
	bottom: -5px;
	border-right: 1px solid #252526;
	border-bottom: 1px solid #252526;
	transform: rotate(45deg);
}
div#content section#home-news div.list-category div.row-category h3.headline::after {
	width: 16px;
	height: 8px;
	left: calc(50% - 8px);
	bottom: 0px;
}
div#content section#home-news div.list-category div.row-category:hover h3.headline::before,
div#content section#home-news div.list-category div.row-category:hover h3.headline::after {
	background-color: #252526;
}
div#content section#home-news div.list-news article h3 {
	font-size: 0.8125rem;
}
/* div#content section#instagram {
	background-color: #f7f7f7;
} */
div#content section#video div.inner-section {
	width: 1060px;
}
div#content section#instagram div.inner-section {
	width: 1060px;
}
div#content section#instagram header h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
}
div#content section#instagram header h2 i.icon {
	display: inline-block;
	font-size: 1.75rem;
	margin-right: 10px;
	transform: translateY(3px);
}
div#content section#instagram div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0px -10px -20px -10px;
}
div#content section#instagram div.list:not(:last-child) {
	margin-bottom: 40px;
}
div#content section#instagram div.list div.row {
	width: calc(33.33% - 30px);
	margin: 0px 15px 30px 15px;
}
div#content section#instagram div.list div.row h3 {
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.025em;
	margin: 0px -10px 10px -10px;
}
div#content section#instagram div.list div.row h3 a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
div#content section#instagram div.list div.row h3 span.image {
	width: 50px;
	height: 50px;
	overflow: hidden;
	border: 1px solid #ebebeb;
	border-radius: 50%;
	margin-right: 10px;
}
div#content section#instagram div.list div.row ul {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-right: -5px;
}
div#content section#instagram div.list div.row ul li {
	width: calc(33.33% - 5px);
	margin: 0px 5px 5px 0px;
}
div#content section#instagram div.list div.row ul li a {
	display: block;
	position: relative;
	padding-bottom: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: 0.25s opacity ease;
}
div#content section#instagram div.list div.row ul li a:hover {
	opacity: 0.625;
}
div#content div.instagram-wrapper {
	margin: 0px -2.5px;
}

/* watch, bridal, jewelry
-------------------------------------------------------------------------------- */

div#content section#category-main div.inner-section {
	padding-top: 0px;
}
div#content section#category-main div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
body.bridal div#content section#category-main div.list div.row {
	width: 300px;
}
body.jewelry div#content section#category-main div.list div.row {
	width: 270px;
}
div#content section#category-main div.list div.row:not(:last-child) {
	margin-right: 20px;
}
div#content section#category-main div.list div.row a {
	display: block;
	position: relative;
}
div#content section#category-main div.list div.row p.image {
	border-radius: 10px;
	transition: 0.25s filter ease;
}
body.bridal div#content section#category-main div.list div.row a:hover p.image {
	filter: brightness(1.05);
}
body.jewelry div#content section#category-main div.list div.row a:hover p.image {
	filter: brightness(0.75);
}
div#content section#category-main div.list div.row div.text {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 35px;
	text-align: center;
}
body.bridal div#content section#category-main div.list div.row div.text {
	color: #9a8269;
}
body.jewelry div#content section#category-main div.list div.row div.text {
	color: #ffffff;
}
div#content section#category-main div.list div.row div.text h3 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
}
div#content section#category-main div.list div.row div.text p.sub {
	font-size: 0.8125rem;
	font-weight: 500;
}
div#content section#bridal-menu div.inner-section {
	width: 1060px;
}
div#content section#bridal-menu div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	opacity: 0;
	transition: 1.25s opacity ease-in-out, 1.25s transform ease;
	transform: translateY(40px);
}
div#content section#bridal-menu div.list div.row.active {
	opacity: 1;
	transform: translateY(0px);
}
div#content section#bridal-menu div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
div#content section#bridal-menu div.list div.row:nth-child(2n) {
	flex-direction: row-reverse;
}
div#content section#bridal-menu div.list div.row p.image {
	width: 665px;
}
div#content section#bridal-menu div.list div.row div.text {
	width: calc(100% - 665px);
	padding-left: 80px;
}
div#content section#bridal-menu div.list div.row div.text :where(p.sub, h2) {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	color: #9a8269;
}
div#content section#bridal-menu div.list div.row div.text p.sub {
	font-size: 1rem;
	margin-bottom: 10px;
}
div#content section#bridal-menu div.list div.row div.text h2 {
	font-size: 1.75rem;
	line-height: 2.5rem;
	margin-bottom: 20px;
}
div#content section#bridal-menu div.list div.row div.text h3 {
	font-size: 1rem;
	line-height: 1.625rem;
	margin-bottom: 15px;
}
div#content section#bridal-menu div.list div.row div.text p.description {
	font-size: 0.8125rem;
	line-height: 1.375rem;
}
div#content section#bridal-menu div.list div.row div.text p.button-more {
	justify-content: flex-start;
	margin-top: 30px;
}
div#content div.section-wrapper {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	width: 1060px;
	margin: 0px auto;
}
div#content div.section-wrapper section#video div.inner-section,
div#content div.section-wrapper section#instagram div.inner-section {
	width: auto;
}
div#content div.section-wrapper section#video {
	width: calc(100% - 420px);
}
div#content div.section-wrapper section#instagram {
	width: 340px;
}
div#content div.section-wrapper section#instagram div.list {
	display: block;
	margin: 0px;
}
div#content div.section-wrapper section#instagram div.list div.row {
	width: auto;
	margin: 0px;
}
div#content div#banner-reform {
	width: 700px;
	margin: 0px auto;
}
div#content div#banner-reform a {
	display: block;
	position: relative;
}
div#content div#banner-reform div.text {
	position: absolute;
	width: 200px;
	right: 40px;
	top: calc(50% - 40px);
	text-align: center;
	color: #ffffff;
}
div#content div#banner-reform div.text h3 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
}
div#content div#banner-reform div.text p.sub {
	font-size: 0.8125rem;
	font-weight: 500;
	margin-bottom: 30px;
}
div#content div#banner-reform div.text p.button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-size: 0.6875rem;
	line-height: 1rem;
	color: #ffffff;
	border: 1px solid #ffffff;
	width: 90px;
	height: 30px;
	margin: 0px auto;
	padding-bottom: 2px;
	border-radius: 15px;
	transition: 0.25s all ease;
}
div#content div#banner-reform a:hover div.text p.button {
	color: #a0a0a0;
	background-color: #ffffff;
}
/* div#content section#type {
	background-color: #f7f7f7;
}
div#content section#type div.inner-section {
	width: 900px;
}
div#content section#type div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
}
div#content section#type div.list div.row {
	box-sizing: border-box;
	position: relative;
	width: calc(33.33% - 20px);
	margin: 0px 20px 20px 0px;
	padding: 20px;
	background-color: #ffffff;
	box-shadow: 2.5px 2.5px 5px rgba(0, 0, 0, 0.075);
}
div#content section#type.bridal div.list div.row {
	padding: 0px;
}
div#content section#type.bridal div.list div.row {
	padding-top: 0px;
}
div#content section#type div.list div.row a {
	display: block;
	color: #252526;
}
div#content section#type div.list div.row div.image-text {
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
}
div#content section#type.bridal div.list div.row div.image-text {
	margin-bottom: 0px;
}
div#content section#type.bridal div.list div.row div.image-text p.image {
	height: 270px;
	transition: 0.25s transform ease;
}
div#content section#type.bridal div.list div.row a:hover div.image-text p.image {
	transform: scale(1.05);
}
div#content section#type.bridal div.list div.row div.image-text p.image img {
	object-fit: cover;
	width: 120%;
	height: 120%;
	transform: translateY(-50px);
}
div#content section#type div.list div.row div.image-text div.text {
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: 20px;
	text-align: center;
}
div#content section#type.bridal div.list div.row div.image-text div.text {
	bottom: 65px;
}
div#content section#type.bridal div.list div.row div.image-text div.text p.alternate {
	display: none;
}
div#content section#type.jewelry div.list div.row div.image-text p.image-small {
	display: none;
}
div#content section#type.jewelry div.list div.row div.image-text div.text {
	color: #ffffff;
}
div#content section#type.bridal div.list div.row div.image-text div.text h3 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.125rem;
}
div#content section#type.bridal div.list div.row p.button-look {
	position: absolute;
	bottom: 20px;
	left: calc(50% - 75px);
}
div#content section#type.jewelry div.list div.row div.image-text div.text h3 {
	font-family: "EB Garamond", serif;
	font-size: 2.25rem;
	font-style: italic;
	line-height: 2.25rem;
}
div#content section#type.jewelry div.list div.row div.image-text div.text p.sub {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 0.8125rem;
	line-height: 1.375rem;
} */
div#content section#brand {
	/* background-color: #ebebeb; */
	background: linear-gradient(135deg, #e0e0e0 0%, #fcfcfc 50%, #e0e0e0 100%);
}
body.bridal div#content section#brand {
	background: linear-gradient(135deg, #f4f8ff 0%, #edf6f8 50%, #ebf3ff 100%);
}
body.jewelry div#content section#brand {
	background: linear-gradient(135deg, #dddbd8 0%, #f2f2f2 50%, #ccc2b7 100%);
}
div#content section#type-information div.inner-section,
div#content section#brand div.inner-section,
div#content section#series div.inner-section,
div#content section#line-up div.inner-section,
div#content section#line-up-series div.inner-section,
div#content section#result div.inner-section,
div#content section#column-slide div.inner-section,
div#content section#news-instagram div.inner-section {
	width: 980px;
}
div#content section#type-information div.inner-section {
	text-align: center;
	padding-bottom: 0px;
}
div#content section#type-information h2,
div#content section#type-information div.description p {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1rem;
	line-height: 2.25rem;
}
div#content section#type-information h2 {
	font-size: 1.5rem;
	margin-bottom: 20px;
}
/* div#content section#type-information div.description p:not(:last-child) {
	margin-bottom: 20px;
}
div#content section#type-information div.description p.no-margin-large:not(:last-child) {
	margin-bottom: 0px;
} */
div#content section#shop div.inner-section {
	width: 660px;
}
div#content section#shop div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -40px;
}
div#content section#shop div.list div.row {
	box-sizing: border-box;
	width: calc(50% - 40px);
	margin-right: 40px;
	padding: 20px 20px 40px 20px;
	background-color: #f7f7f7;
}
div#content section#shop div.list div.row p.image {
	margin-bottom: 10px;
}
div#content section#shop div.list div.row h3 {
	font-size: 0.9375rem;
	font-weight: 500;
	margin-bottom: 5px;
}
div#content section#shop div.list div.row p.address,
div#content section#shop div.list div.row p.tel {
	line-height: 1.75rem;
}
div#content section#shop div.list div.row p.address {
	margin-bottom: 5px;
}
div#content section#shop div.list div.row p.button {
	margin-top: 20px;
}
div#content section#shop div.list div.row p.button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	width: 200px;
	height: 40px;
	font-size: 0.75rem;
	font-weight: 500;
	color: #252526;
	border: 1px solid #252526;
	transition: 0.25s color ease;
}
div#content section#shop div.list div.row p.button:hover {
	color: #ffffff;
}
div#content section#shop div.list div.row p.button::before {
	position: absolute;
	width: 0%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #252526;
	content: "";
	transition: 0.25s width ease;
}
div#content section#shop div.list div.row p.button:hover::before {
	width: 100%;
}
div#content section#shop div.list div.row p.button::after {
	position: absolute;
	width: 10px;
	height: 10px;
	right: 10px;
	top: calc(50% - 5px);
	background: url(../images/arrow-more-01.svg) no-repeat center;
	background-size: auto 10px;
	content: "";
}
div#content section#shop div.list div.row p.button:hover::after {
	background-image: url(../images/arrow-more-01-white.svg);
}
div#content section#shop div.list div.row p.button:hover a {
	color: #ffffff;
}
div#content section#shop-alternate div.inner-section {
	width: 980px;
}
div#content section#shop-alternate div.list div.row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-color: #f7f7f7;
}
div#content section#shop-alternate div.list div.row div.text {
	box-sizing: border-box;
	width: 460px;
	padding: 0px 60px;
}
div#content section#shop-alternate div.list div.row div.text h3 {
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 10px;
}
div#content section#shop-alternate div.list div.row div.text p.address,
div#content section#shop-alternate div.list div.row div.text p.tel {
	line-height: 1.75rem;
}
div#content section#shop-alternate div.list div.row div.text p.address {
	margin-bottom: 5px;
}
div#content section#shop-alternate div.list div.row div.text p.button {
	margin-top: 30px;
}
div#content section#shop-alternate div.list div.row div.text p.button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	width: 200px;
	height: 40px;
	font-size: 0.75rem;
	font-weight: 500;
	color: #252526;
	border: 1px solid #252526;
	transition: 0.25s color ease;
}
div#content section#shop-alternate div.list div.row div.text p.button:hover {
	color: #ffffff;
}
div#content section#shop-alternate div.list div.row div.text p.button::before {
	position: absolute;
	width: 0%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #252526;
	content: "";
	transition: 0.25s width ease;
}
div#content section#shop-alternate div.list div.row div.text p.button:hover::before {
	width: 100%;
}
div#content section#shop-alternate div.list div.row div.text p.button::after {
	position: absolute;
	width: 10px;
	height: 10px;
	right: 10px;
	top: calc(50% - 5px);
	background: url(../images/arrow-more-01.svg) no-repeat center;
	background-size: auto 10px;
	content: "";
}
div#content section#shop-alternate div.list div.row div.text p.button:hover::after {
	background-image: url(../images/arrow-more-01-white.svg);
}
div#content section#shop-alternate div.list div.row div.text p.button:hover a {
	color: #ffffff;
}
div#content section#shop-alternate div.list div.row div.map {
	width: calc(100% - 460px);
	height: 400px;
}
div#content section#shop-alternate div.list div.row div.map iframe {
	width: 100%;
	height: 100%;
}
div#content section#shop-news {
	background-color: #f7f7f7;
}
div#content section#brand ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -15px -15px 0px;
}
div#content section#brand ul li {
	width: calc(16.66% - 15px);
	margin: 0px 15px 15px 0px;
	opacity: 0;
	box-shadow: 2.5px 2.5px 5px rgba(0, 0, 0, 0.025);
}
div.active div#content section#brand ul li {
	opacity: 1;
}
div#content section#brand ul li.disable {
	display: none;
}
div#content section#brand ul li.separete {
	display: none;
	/* width: calc(100% - 10px);
	margin-bottom: 20px; */
}
div#content section#brand ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 80px;
	background-color: #ffffff;
}
div#content section#brand ul li a::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	pointer-events: none;
	background-color: rgba(0, 0, 0, 0.0375);
	content: "";
	opacity: 0;
	transition: 0.25s opacity ease;
}
div#content section#brand ul li a:hover::before {
	opacity: 1;
}
div#content section#brand ul li span.logo img {
	width: auto;
	height: calc(64px * 0.875);
}
div#content section#brand ul li.gerstner span.logo img {
	max-height: 50px;
}
div#content section#brand ul li span.text {
	display: none;
}
/* div#content section#brand.bridal li.niwaka,
div#content section#brand.bridal li.tasaki,
div#content section#brand.bridal li.boucheron,
div#content section#brand.bridal li.fred {
	width: calc(50% - 10px);
} */
/* div#content section#brand.jewelry li.gucci,
div#content section#brand.jewelry li.boucheron,
div#content section#brand.jewelry li.fred {
	width: calc(33.33% - 10px);
} */
div#content section#series {
	background: linear-gradient(to bottom, #f7f7f7 0%, #a0a0a0 100%);
}
div#content section#series ul {
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;
}
div#content section#series ul li {
	width: calc(33.33% - 10px);
	margin: 0px 10px 10px 0px;
	opacity: 0;
}
div.active div#content section#series ul li {
	opacity: 1;
}
div#content section#series ul li.disable {
	display: none;
}
div#content section#series ul li a {
	display: block;
	position: relative;
	color: #252526;
	padding: 5px;
	background-color: #ffffff;
}
div#content section#series ul li a::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	pointer-events: none;
	background-color: rgba(0, 0, 0, 0.075);
	content: "";
	opacity: 0;
	transition: 0.25s opacity ease;
}
div#content section#series ul li a:hover::before {
	opacity: 1;
}
div#content section#series ul li div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	align-items: center;
}
div#content section#series ul li div.image-text p.image {
	width: 150px;
	height: 150px;
}
div#content section#series ul li div.image-text p.image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
div#content section#series ul li div.text {
	width: calc(100% - 155px);
	margin-right: 5px;
	text-align: center;
}
div#content section#series ul li div.text p.logo {
	margin-bottom: 10px;
}
div#content section#series ul li div.text p.logo img {
	width: auto;
	height: 34px;
	margin: auto;
}
div#content section#series ul li div.text h3 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.125rem;
	line-height: 1.5rem;
	margin-bottom: 5px;
}
div#content section#series ul li div.text p.sub {
	font-size: 0.75rem;
	line-height: 1.25rem;
}
div#content section#product-slide div.inner-section {
	width: 1060px;
}
div#content section#product-slide header {
	margin-bottom: 60px;
}
div#content section#product-slide header h2 {
	font-size: 1.125rem;
}
div#content section#brand-information div.inner-section,
div#content section#seriese-information div.inner-section {
	width: 800px;
}
div#content section#brand-information div.inner-section {
	padding-top: 0px;
}
div#content section#brand-information div.content,
div#content section#seriese-information div.content {
	text-align: center;
}
div#content section#brand-information p.description,
div#content section#seriese-information p.description,
div#content section#brand-information p.note {
	margin-bottom: 60px;
}
div#content section#brand-information p.description,
div#content section#seriese-information p.description {
	line-height: 2.25rem;
}
div#content section#brand-information p.note,
div#content section#seriese-information p.note {
	border-top: 1px solid #d1d1d1;
	padding-top: 20px;
}
div#content section#brand-information.cartier h2 {
	font-size: 2.25rem;
}
div#content section#brand-information div.guarantee {
	margin-top: 60px;
	padding: 20px;
	background-color: #f7f7f7;
}
div#content section#brand-information div.guarantee h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 0.9375rem;
}
div#content section#brand-information div.guarantee p {
	font-size: 0.8125rem;
}
div#content div#title-series {
	box-sizing: border-box;
	width: calc(100% - 160px);
	border: 1px solid #a0a0a0;
	margin: 40px auto 0px auto;
}
div#content div#title-series div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: center;
}
div#content div#title-series p.image {
	aspect-ratio: 600 / 240;
	width: 50%;
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
div.active div#content div#title-series p.image {
	opacity: 1;
}
div#content div#title-series p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#content div#title-series p.image-small {
	display: none;
}
div#content div#title-series div.text {
	width: 50%;
	text-align: center;
}
div#content div#title-series p.logo {
	margin-bottom: 10px;
}
div#content div#title-series p.logo img {
	width: auto;
	height: 64px;
	margin: auto;
}
div#content div#title-series h1 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.75rem;
	margin-bottom: 10px;
}
div#content div#title-series p.sub {
	font-size: 0.75rem;
	line-height: 1.25rem;
}
div#content section#line-up header {
	margin-bottom: 80px;
}
div#content section#line-up div.block {
	margin-top: -40px;
	padding-top: 40px;
}
div#content section#line-up div.block:not(:last-child) {
	margin-bottom: 100px;
}
div#content section#line-up div.block div.header {
	text-align: center;
	margin-bottom: 40px;
}
div#content section#line-up div.block div.header h3 {
	position: relative;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
	padding-bottom: 20px;
}
div#content section#line-up div.block div.header h3::before {
	position: absolute;
	width: 40px;
	height: 0px;
	left: calc(50% - 20px);
	bottom: 0px;
	border-bottom: 1px solid #7f7f7f;
	content: "";
}
div#content section#result header {
	position: relative;
	border-bottom: 1px solid #d1d1d1;
	padding-bottom: 20px;
}
div#content section#result header h2 {
  font-family: source-han-sans-japanese, "Yu Gothic", YuGothic, sans-serif;
	font-size: 0.9375rem;
}
div#content section#result header p.button-params {
	position: absolute;
	width: 16px;
	height: 16px;
	right: 0px;
	top: 7px;
	cursor: pointer;
	background: url(../images/icon-params.svg) no-repeat center;
	background-size: auto 100%;
}
div#content section#result div.keyword {
	display: flex;
	flex-wrap: wrap;
	font-size: 0.8125rem;
	margin-bottom: 100px;
}
div#content section#result div.keyword p.label {
	margin-right: 10px;
}
div#content section#result div.keyword ul {
	display: flex;
	flex-wrap: wrap;
}
div#content section#result div.keyword ul li {
	padding: 0px 20px;
	background-color: #f7f7f7;
}
div#content section#result div.keyword ul li:not(:last-child) {
	margin-right: 10px;
}
div#content section#result div.brand {
	text-align: center;
	margin-bottom: 100px;
}
div#content section#result div.brand h3 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.75rem;
}
div#content section#result div.brand p.sub {
	font-size: 0.8125rem;
}
div#content section#result div.list-product article div.text p.brand,
div#content section#result div.list-product article div.text p.series {
	margin-bottom: 5px;
}
div#content section#result div.list-product article div.text p.brand {
	display: block;
	font-size: 0.9375rem;
	font-weight: 500;
}
div#content section#column-slide {
	background-color: #f7f7f7;
}
div#content section#news-instagram div.content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
div#content section#news-instagram div.news {
	width: 490px;
}
div#content section#news-instagram div.news div.list-news article h3 {
	font-size: 0.8125rem;
}
div#content section#news-instagram div.news div.header,
div#content section#news-instagram div.instagram h2 {
	text-align: center;
}
div#content section#news-instagram div.news div.header {
	margin-bottom: 40px;
}
div#content section#news-instagram div.news div.header h2,
div#content section#news-instagram div.instagram h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
}
div#content section#news-instagram div.news div.header p.sub {
	font-size: 0.75rem;
}
div#content section#news-instagram div.instagram {
	width: calc(100% - 570px);
}
div#content section#news-instagram div.instagram h2 {
	margin-bottom: 30px;
}
div#content section#news-instagram div.instagram h2 i.icon {
	display: inline-block;
	font-size: 1.75rem;
	margin-right: 10px;
	transform: translateY(3px);
}
div#content section#news-instagram div.instagram div.frame {
	padding: 20px 40px;
	background-color: #f7f7f7;
	border-radius: 10px;
}
div#content section#news-instagram div.instagram h3 {
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.025em;
	margin-bottom: 20px;
}
div#content section#news-instagram div.instagram h3 a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
div#content section#news-instagram div.instagram h3 span.image {
	width: 50px;
	height: 50px;
	overflow: hidden;
	border-radius: 50%;
	margin-right: 10px;
}
div#content section#news-instagram div.instagram ul {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-right: -5px;
}
div#content section#news-instagram div.instagram ul li {
	width: calc(33.33% - 5px);
	margin: 0px 5px 5px 0px;
}
div#content section#news-instagram div.instagram ul li a {
	display: block;
	position: relative;
	padding-bottom: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: 0.25s opacity ease;
}
div#content section#news-instagram div.instagram ul li a:hover {
	opacity: 0.625;
}
div#content section#qa div.inner-section {
	width: 700px;
	padding-top: 60px;
}
div#content section#qa div.block {
	padding-top: 40px;
}
div#content section#qa div.block:not(:last-child) {
	margin-bottom: 60px;
}
div#content section#qa div.block div.header {
	margin-bottom: 40px;
}
div#content section#qa div.block div.header h2 {
	text-align: center;
	font-size: 1.25rem;
}
div#content section#qa div.block div.list div.row:not(:last-child) {
	margin-bottom: 10px;
}
div#content section#qa div.block div.list div.row h3 {
	position: relative;
	text-align: left;
	font-size: 0.9375rem;
	cursor: pointer;
	padding: 20px 50px 20px 80px;
	background-color: #f7f7f7;
}
div#content section#qa div.block div.list div.row h3::before,
div#content section#qa div.block div.list div.row div.body div.inner-body::before {
	position: absolute;
	left: 40px;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 2rem;
}
div#content section#qa div.block div.list div.row h3::before {
	top: calc(50% - 1rem);
	content: "Q";
}
div#content section#qa div.block div.list div.row h3 span {
	position: absolute;
	width: 15px;
	height: 15px;
	right: 20px;
	top: calc(50% - 7.5px);
}
div#content section#qa div.block div.list div.row h3 span::before,
div#content section#qa div.block div.list div.row h3 span::after {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	top: calc(50% - 0.5px);
	border-bottom: 1px solid #252526;
	content: "";
}
div#content section#qa div.block div.list div.row h3 span::after {
	opacity: 1;
	transition: 0.25s opacity ease;
	transform: rotate(90deg);
}
div#content section#qa div.block div.list div.row.open h3 span::after {
	opacity: 0;
}
div#content section#qa div.block div.list div.row div.body {
	display: none;
	color: #4b4b4b;
}
div#content section#qa div.block div.list div.row div.body div.inner-body {
	position: relative;
	padding: 40px 20px 50px 80px;
}
div#content section#qa div.block div.list div.row div.body div.inner-body::before {
	top: 40px;
	color: #bf2a24;
	content: "A";
}
div#content section#qa div.block div.list div.row div.body hr {
	width: 50px;
}
div#content section#qa div.block div.list div.row div.body ul.brand {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
div#content section#qa div.block div.list div.row div.body ul.brand li {
	width: 220px;
	margin: 0px 60px 10px 0px;
}
div#content section#qa div.block div.list div.row div.body ul.brand li.niwaka,
div#content section#qa div.block div.list div.row div.body ul.brand li.tasaki,
div#content section#qa div.block div.list div.row div.body ul.brand li.jupiter-blantelie,
div#content section#qa div.block div.list div.row div.body ul.brand li.coodi {
	margin-bottom: 30px;
}
div#content section#qa div.block div.list div.row div.body ul.brand li a {
	display: block;
	padding-right: 10px;
	background: url(../images/arrow-more-01.svg) no-repeat right center;
	background-size: auto 10px;
}
div#content section#qa div.block div.list div.row div.body div.container-button {
	justify-content: flex-start;
}
div#content section#qa div.block div.list div.row div.body div.container-button.padding-left {
	padding-left: 240px;
}
div#content nav#navi-sub {
	width: 980px;
	margin: 0px auto 100px auto;
}
div#content nav#navi-sub.brand {
	width: 800px;
}
div#content nav#navi-sub ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
div#content nav#navi-sub ul li {
	text-align: center;
	line-height: 1.25rem;
}
div#content nav#navi-sub.three ul li {
	width: 33.33%;
}
div#content nav#navi-sub.four ul li {
	width: 25%;
}
div#content nav#navi-sub ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 40px;
	border-right: 1px solid #a0a0a0;
}
div#content nav#navi-sub ul li:first-child a {
	border-left: 1px solid #a0a0a0;
}
div#content div.slide-product div.container article {
	width: 200px;
	margin-right: 20px;
}
div#content div.list-product {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -30px -30px 0px;
}
div#content div.list-product article {
	width: calc(25% - 30px);
	margin: 0px 30px 30px 0px;
}
div#content div.slide-product article a,
div#content div.list-product article a {
	position: relative;
	color: #252526;
}
div#content div.list-product article a {
	display: block;
	padding-bottom: 20px;
	background-color: #ffffff;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0);
	transition: 0.25s box-shadow ease;
}
div#content div.list-product article a:hover {
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.075);
}
div#content div.slide-product article p.new,
div#content div.list-product article p.new {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 45px;
	height: 45px;
	left: 10px;
	top: 10px;
	z-index: 1;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #ffffff;
	background-color: #c00018;
	border-radius: 50%;
}
div#content div.slide-product article p.image,
div#content div.list-product article p.image {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 92.59%;
}
div#content div.slide-product article p.image span,
div#content div.list-product article p.image span {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#content div.slide-product article p.image img,
div#content div.list-product article p.image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
div#content div.slide-product article div.text,
div#content div.list-product article div.text {
	text-align: center;
	line-height: 1.25rem;
	transition: 0.25s color ease;
}
div#content div.slide-product article div.text:hover,
div#content div.list-product article div.text:hover {
	color: #a0a0a0;
}
div#content div.slide-product article div.text p.brand,
div#content div.slide-product article div.text p.series,
div#content div.slide-product article div.text h3,
div#content div.slide-product article div.text p.price,
div#content div.list-product article div.text p.brand,
div#content div.list-product article div.text p.series,
div#content div.list-product article div.text h3,
div#content div.list-product article div.text p.price {
	font-size: 0.8125rem;
}
div#content div.slide-product article div.text p.brand,
div#content div.slide-product article div.text p.series {
	margin-bottom: 5px;
}
div#content div.slide-product article div.text p.brand,
div#content div.list-product article div.text p.brand {
	display: none;
}
body.bridal div#content div.list-product article div.text p.brand,
body.jewelry div#content div.list-product article div.text p.brand {
	display: block;
	display: block;
	font-size: 0.9375rem;
	font-weight: 500;
	margin-bottom: 5px;
}
div#content div.slide-product article div.text p.price,
div#content div.list-product article div.text p.price {
	padding-top: 10px;
}
div#content p.brand-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	padding: 40px 0px;
}
div#content p.brand-top a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.25em;
}
div#content section#bridal-contents {
	background-color: #f7fbff;
}
div#content section#bridal-contents div.inner-section {
	max-width: 1230px;
}
div#content section#bridal-contents div.list div.inner-list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;
}
div#content section#bridal-contents div.list-large div.inner-list {
	justify-content: center;
}
div#content section#bridal-contents div.list div.row {
	width: calc(25% - 10px);
	text-align: center;
	margin-right: 10px;
}
div#content section#bridal-contents div.list div.row p.image {
	margin-bottom: 10px;
}
div#content section#bridal-contents div.list div.row p.image img {
	transition: 0.375s transform ease;
}
div#content section#bridal-contents div.list div.row p.image a:hover img {
	transform: scale(1.0375);
}
div#content section#bridal-contents div.list div.row h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 2.75rem;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 0.9375rem;
	line-height: 1.375rem;
	color: #9a8269;
}
div#content section#bridal-contents div.list div.row p.button-more {
	margin-top: 20px;
}
div#content section#bridal-contents div.slide {
	display: none;
}

/* watch, bridal, jewelry - product
-------------------------------------------------------------------------------- */

div#content article.product {
	width: 1060px;
	margin: 0px auto 100px auto;
}
div#content article.product div.column {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
div#content article.product div.column div.left {
	width: 540px;
}
div#content article.product div.column div.right {
	width: 440px;
	padding-top: 60px;
}
div#content article.product div.brand {
	margin-bottom: 20px;
}
div#content article.product div.brand h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.75rem;
}
div#content article.product div.brand p.sub {
		font-size: 0.8125rem;
}
div#content article.product div.brand-small {
	display: none;
}
div#content article.product div#image {
	position: relative;
	margin-bottom: 60px;
	padding-bottom: 92.59%;
	opacity: 0;
	transition: 1.25s opacity ease;
}
div.active div#content article.product div#image {
	opacity: 1;
}
div#content article.product div#image p.row {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #ffffff;
}
div#content article.product div#image p.row img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
div#content article.product div.navi {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -10px 60px 0px;
	opacity: 0;
	transition: 1.25s opacity ease;
}
div.active div#content article.product div.navi {
	opacity: 1;
}
div#content article.product div.navi p.row {
	width: calc(20% - 10px);
	cursor: pointer;
	margin-right: 10px;
}
div#content article.product div.navi p.row span {
	display: block;
	position: relative;
	padding-bottom: 92.59%;
}
div#content article.product div.navi p.row img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
div#content article.product div.summary {
	border-top: 1px solid #d1d1d1;
	border-bottom: 1px solid #d1d1d1;
	margin-bottom: 20px;
	padding: 20px 0px;
}
div#content article.product div.summary h1 {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 2.25rem;
	letter-spacing: 0.075em;
	margin-bottom: 10px;
}
div#content article.product-bridal div.summary h1,
div#content article.product-jewelry div.summary h1 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-weight: 300;
}
div#content article.product div.summary p.number span.label,
div#content article.product div.summary p.price span.label {
	display: inline-block;
	font-size: 0.8125rem;
	margin-right: 10px;
}
div#content article.product div.summary p.price span.label i {
	font-size: 0.6875rem;
}
div#content article.product div.summary p.price span.body {
	font-size: 1.25rem;
	font-weight: 700;
}
div#content article.product div.description {
	margin-bottom: 40px;
}
div#content article.product div.description h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.125rem;
	margin-bottom: 10px;
}
div#content article.product div.description h3,
div#content article.product div.spec h3 {
	font-size: 0.9375rem;
	font-weight: 500;
	margin-bottom: 10px;
}
div#content article.product-jewelry div.spec {
	margin-bottom: 60px;
}
div#content article.product div.spec div.list div.row {
	display: flex;
	flex-wrap: wrap;
	font-size: 0.8125rem;
	border-bottom: 1px solid #ebebeb;
	padding: 15px 0px;
}
div#content article.product-watch div.spec div.list div.row:first-child {
	border-top: 1px solid #ebebeb;
}
div#content article.product div.spec div.list div.row p.label {
	width: 120px;
	font-weight: 500;
}
div#content article.product div.spec div.list div.row p.label span {
	font-size: 0.6875rem;
	font-weight: 300;
}
div#content article.product div.spec div.list div.row div.body {
	width: calc(100% - 120px);
}
div#content article.product div.spec div.list div.row-material ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -20px -10px 0px;
	padding-top: 5px;
}
div#content article.product div.spec div.list div.row-material ul li {
	position: relative;
	width: 100%;
	margin: 0px 10px 10px 0px;
}
div#content article.product div.spec div.list div.row-material ul li.material-1,
div#content article.product div.spec div.list div.row-material ul li.material-2,
div#content article.product div.spec div.list div.row-material ul li.material-3,
div#content article.product div.spec div.list div.row-material ul li.material-4,
div#content article.product div.spec div.list div.row-material ul li.material-5,
div#content article.product div.spec div.list div.row-material ul li.material-6 {
	width: 50px;
}
div#content article.product div.spec div.list div.row-material ul li.material-4.tasaki {
	width: 130px;
}
div#content article.product div.spec div.list div.row-material ul li span {
	display: block;
}
div#content article.product div.spec div.list div.row-material ul li span.icon {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 25px;
	height: 25px;
	border: 1px solid #d1d1d1;
	border-radius: 50%;
}
div#content article.product div.spec div.list div.row-material ul li.material-1 span.icon {
	background-color: #dcdcdc;
}
div#content article.product div.spec div.list div.row-material ul li.material-2 span.icon {
	background-color: #dcdcdc;
}
div#content article.product div.spec div.list div.row-material ul li.material-3 span.icon,
div#content article.product div.spec div.list div.row-material ul li.material-14 span.icon {
	background-color: #dddaaf;
}
div#content article.product div.spec div.list div.row-material ul li.material-4 span.icon,
div#content article.product div.spec div.list div.row-material ul li.material-15 span.icon {
	background-color: #e8dad2;
}
div#content article.product div.spec div.list div.row-material ul li.material-5 span.icon,
div#content article.product div.spec div.list div.row-material ul li.material-16 span.icon {
	background-color: #dcdcdc;
}
div#content article.product div.spec div.list div.row-material ul li.material-6 span.icon {
	background-color: #dcdcdc;
}
div#content article.product div.spec div.list div.row-material ul li.material-7 span.icon,
div#content article.product div.spec div.list div.row-material ul li.material-8 span.icon,
div#content article.product div.spec div.list div.row-material ul li.material-9 span.icon,
div#content article.product div.spec div.list div.row-material ul li.material-10 span.icon,
div#content article.product div.spec div.list div.row-material ul li.material-11 span.icon,
div#content article.product div.spec div.list div.row-material ul li.material-12 span.icon,
div#content article.product div.spec div.list div.row-material ul li.material-13 span.icon {
	background: linear-gradient(to right, #dcdcdc 0%, #dcdcdc 50%, #dddaaf 50%, #dddaaf 100%);
}
div#content article.product div.spec div.list div.row-material ul li span.label {
	font-size: 0.8125rem;
	line-height: 1.5rem;
}
div#content article.product div.spec div.list div.row-price p.number {
	position: relative;
	padding-left: 15px;
}
div#content article.product div.spec div.list div.row-price p.number:not(:first-child) {
	margin-top: 10px;
}
div#content article.product div.spec div.list div.row-price p.number::before {
	position: absolute;
	width: 8px;
	height: 8px;
	left: 0px;
	top: 12px;
	background-color: #252526;
	content: "";
	border-radius: 50%;
}
div#content article.product div.spec div.list div.row-price p.material-price {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 0px 40px 0px 15px;
}
div#content article.product div.spec div.list div.row-price p.material-price span {
	display: block;
}
div#content article.product div.spec div.list div.row-price p.material-price span.material {
	width: calc(100% - 110px);
	font-size: 0.8125rem;
	line-height: 1.5rem;
	transform: translateY(1px);
}
div#content article.product div.spec div.list div.row-price p.material-price span.price {
	width: 110px;
	text-align: right;
	font-size: 1.125rem;
}
div#content article.product div.spec div.list div.row-price p.material-price span.price i {
	display: inline-block;
	width: 0.6875rem;
	vertical-align: 2px;
	font-size: 0.6875rem;
}
div#content article.product div.container-button {
	display: block;
}
div#content article.product div.container-button p.button:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
div#content article.product div.column div.right div.container-button p.button {
	display: block;
}
div#content article.product div.container-button-small {
	display: none;
}

/* watch - service
-------------------------------------------------------------------------------- */

div#content section#service {
	position: relative;
}
div#content section#service::before {
	position: absolute;
	width: 100%;
	height: calc(100% - 800px);
	background-color: #f7f7f7;
	content: "";
}
div#content section#service div.inner-section {
	position: relative;
	width: 1120px;
	text-align: center;
}
div#content section#service h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.375rem;
	line-height: 2.25rem;
	margin-bottom: 60px;
}
div#content section#service div.description {
	margin-bottom: 100px;
}
div#content section#service div.description p {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1rem;
	line-height: 2.25rem;
}
div#content section#service div.description p:not(:last-child) {
	margin-bottom: 20px;
}
div#content section#service nav#navi-service {
	position: relative;
	height: 820px;
	background: url(../images/watch-service-image-01.jpg) no-repeat center;
	background-size: cover;
}
div#content section#service nav#navi-service ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: absolute;
	width: 800px;
	left: calc(50% - 400px);
	bottom: 80px;
}
div#content section#service nav#navi-service ul li {
	width: calc(50% - 10px);
	text-align: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.125rem;
	margin-bottom: 20px;
	box-shadow: 2.5px 2.5px 5px rgba(0, 0, 0, 0.075);
}
div#content section#service nav#navi-service ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 110px;
	background-color: #ffffff;
}
div#content section#service nav#navi-service ul li a:hover {
	color: #ffffff;
}
div#content section#service nav#navi-service ul li a::before {
	position: absolute;
	width: 0%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #4b4b4b;
	content: "";
	transition: 0.25s width ease;
}
div#content section#service nav#navi-service ul li a:hover::before {
	width: 100%;
}
div#content section#service nav#navi-service ul li a::after {
	position: absolute;
	width: 10px;
	height: 10px;
	right: 20px;
	top: calc(50% - 5px);
	background: url(../images/arrow-more-01.svg) no-repeat center;
	background-size: auto 10px;
	content: "";
}
div#content section#service nav#navi-service ul li a:hover::after {
	right: 20px;
	background-image: url(../images/arrow-more-01-white.svg);
}
div#content section#service nav#navi-service ul li span {
	position: relative;
}
div#content section#service nav#navi-service ul li i {
	font-size: 0.8125rem;
}

/* bridal
-------------------------------------------------------------------------------- */

div#content section#couple-bridal-advisor div.inner-section {
	width: 980px;
}
div#content section#couple-bridal-advisor div.content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
div#content section#couple-bridal-advisor div.couple,
div#content section#couple-bridal-advisor div.bridal-advisor {
	box-sizing: border-box;
	background-color: #f7f2f4;
}
div#content section#couple-bridal-advisor div.couple {
	width: 550px;
	padding: 20px 40px;
}
div#content section#couple-bridal-advisor div.couple div.header {
	position: relative;
	text-align: center;
	padding: 20px 0px;
}
div#content section#couple-bridal-advisor div.couple div.header::before,
div#content section#couple-bridal-advisor div.couple div.header::after {
	position: absolute;
	pointer-events: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	content: "";
}
div#content section#couple-bridal-advisor div.couple div.header::before {
	width: calc(123px * 0.75);
	height: calc(133px * 0.75);
	left: calc(50% - 160px);
	top: calc(50% - 60px);
	background-image: url(../images/couple-illust-01.png);
}
div#content section#couple-bridal-advisor div.couple div.header::after {
	width: calc(87px * 0.75);
	height: calc(68px * 0.75);
	left: calc(50% + 80px);
	top: calc(50% - 10px);
	background-image: url(../images/couple-illust-02.png);
}
div#content section#couple-bridal-advisor div.couple div.header h2,
div#content section#couple-bridal-advisor div.bridal-advisor h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
}
div#content section#couple-bridal-advisor div.couple div.header p.sub,
div#content section#couple-bridal-advisor div.bridal-advisor p.sub {
		font-size: 0.75rem;
}
div#content section#couple-bridal-advisor div.couple p.more {
	margin-top: 20px;
}
div#content section#couple-bridal-advisor div.bridal-advisor {
	width: calc(100% - 590px);
	text-align: center;
	padding: 20px 20px 40px 20px;
}
div#content section#couple-bridal-advisor div.bridal-advisor a {
	color: #252526;
}
div#content section#couple-bridal-advisor div.bridal-advisor p.image {
	margin-bottom: 20px;
}
div#content section#couple-bridal-advisor div.bridal-advisor p.sub {
	margin-bottom: 40px;
}

/* bridal - bridal-watch
-------------------------------------------------------------------------------- */

div#content section#line-up-bridal-watch div.inner-section {
	width: 800px;
}
div#content section#line-up-bridal-watch nav#navi-line-up-bridal-watch {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-bottom: 100px;
}
div#content section#line-up-bridal-watch nav#navi-line-up-bridal-watch p.label {
	font-size: 0.8125rem;
	margin-right: 10px;
}
div#content section#line-up-bridal-watch nav#navi-line-up-bridal-watch ul {
	display: flex;
	flex-wrap: wrap;
}
div#content section#line-up-bridal-watch nav#navi-line-up-bridal-watch ul li {
	font-size: 0.8125rem;
}
div#content section#line-up-bridal-watch nav#navi-line-up-bridal-watch ul li:not(:last-child) {
	margin-right: 10px;
}
div#content section#line-up-bridal-watch nav#navi-line-up-bridal-watch ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 140px;
	height: 35px;
	color: #252526;
	border: 1px solid #efece4;
	transition: 0.25s background-color ease;
}
div#content section#line-up-bridal-watch nav#navi-line-up-bridal-watch ul li a:hover {
	background-color: #efece4;
}
div#content section#line-up-bridal-watch div.block:not(:last-child) {
	margin-bottom: 100px;
}
div#content section#line-up-bridal-watch div.block div.header {
	text-align: center;
	border-bottom: 1px solid #d1d1d1;
	margin-bottom: 40px;
	padding-bottom: 10px;
}
div#content section#line-up-bridal-watch div.block div.header h3 {
	font-size: 0.9375rem;
	font-weight: 500;
}
div#content section#line-up-bridal-watch div.block div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 0px -60px 60px 0px;
}
div#content section#line-up-bridal-watch div.block div.list div.row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	width: calc(50% - 60px);
	margin-right: 60px;
}
div#content section#line-up-bridal-watch div.block div.list div.row p.image {
	width: 150px;
	margin-right: 40px;
}
div#content section#line-up-bridal-watch div.block div.list div.row div.text {
	width: calc(100% - 190px);
}
div#content section#line-up-bridal-watch div.block div.list div.row div.text p.logo {
	margin-bottom: 10px;
}
div#content section#line-up-bridal-watch div.block div.list div.row div.text p.logo img {
	width: auto;
	height: 48px;
}
div#content section#line-up-bridal-watch div.block div.list div.row div.text p.gender {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 20px;
	font-size: 0.8125rem;
	line-height: 1rem;
	margin-bottom: 10px;
	background-color: #ebebeb;
}
div#content section#line-up-bridal-watch div.block div.list div.row div.text h4 {
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.25rem;
	margin-bottom: 10px;
}
div#content section#line-up-bridal-watch div.block div.list div.row div.text p.number span.label,
div#content section#line-up-bridal-watch div.block div.list div.row div.text p.price span.label {
	display: inline-block;
	font-size: 0.8125rem;
	margin-right: 10px;
}
div#content section#line-up-bridal-watch div.block div.list div.row div.text p.price span.label i {
	font-size: 0.6875rem;
}
div#content section#line-up-bridal-watch div.block div.list div.row div.text p.number span.body {
	font-size: 0.8125rem;
}
div#content section#line-up-bridal-watch div.block div.list div.row div.text p.price span.body {
	font-size: 1.125rem;
	font-weight: 700;
}
div#content div#bridal-advisor-description {
	position: relative;
	padding: 100px 0px;
}
div#content div#bridal-advisor-description::before {
	position: absolute;
	width: 52px;
	height: 69px;
	left: calc(50% + 220px);
	top: calc(50% + 20px);
	background: url(../images/bridal-bridal-advisor-illust-01.png) no-repeat center;
	background-size: auto 100%;
	content: "";
}
div#content div#bridal-advisor-description p {
	text-align: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1rem;
	line-height: 2.25rem;
}
div#content div#bridal-advisor-description p:not(:last-child) {
	margin-bottom: 20px;
}

/* bridal - diamond
-------------------------------------------------------------------------------- */

/* div#content section#diamond h2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 40px;
}
div#content section#diamond h2 img {
	width: auto;
	height: 65px;
}
div#content section#diamond div#summary {
	position: relative;
	color: #ffffff;
	background: linear-gradient(to bottom, #7dafd6 0%, #c4daed 100%);
}
div#content section#diamond div#summary div.inner-summary {
	width: 980px;
	margin: auto;
	padding: 100px 0px;
}
div#content section#diamond div#summary div.headline-body {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
div#content section#diamond div#summary div.headline-body h3 {
	width: 240px;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.375rem;
	line-height: 2.25rem;
	border-bottom: 1px solid #ffffff;
	padding-bottom: 5px;
}
div#content section#diamond div#summary div.headline-body h3 span {
	font-size: 2.25rem;
}
div#content section#diamond div#summary div.headline-body div.body {
	width: 640px;
}
div#content section#diamond div#summary div.headline-body div.body div.description {
	margin-bottom: 80px;
}
div#content section#diamond div#summary div.headline-body div.body div.description p {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1rem;
	line-height: 2.25rem;
}
div#content section#diamond div#summary div.headline-body div.body div.description p:not(:last-child) {
	margin-bottom: 20px;
}
div#content section#diamond div#summary div.headline-body div.body nav#navi-diamond {
	width: 590px;
}
div#content section#diamond div#summary div.headline-body div.body nav#navi-diamond ul {
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;
}
div#content section#diamond div#summary div.headline-body div.body nav#navi-diamond ul li {
	width: calc(25% - 10px);
	text-align: center;
	margin-right: 10px;
}
div#content section#diamond div#summary div.headline-body div.body nav#navi-diamond ul li a {
	display: block;
	position: relative;
	color: #252526;
	padding: 20px 10px 50px 10px;
	background-color: #ffffff;
	transition: 0.25s background-color ease;
}
div#content section#diamond div#summary div.headline-body div.body nav#navi-diamond ul li a:hover {
	background-color: #f7f7f7;
}
div#content section#diamond div#summary div.headline-body div.body nav#navi-diamond ul li a::before {
	display: block;
	position: absolute;
	width: 12px;
	height: 12px;
	left: calc(50% - 6px);
	bottom: 20px;
	background: url(../images/arrow-down-02.svg) no-repeat center;
	background-size: auto 100%;
	content: "";
}
div#content section#diamond div#summary div.headline-body div.body nav#navi-diamond ul li span {
	display: block;
}
div#content section#diamond div#summary div.headline-body div.body nav#navi-diamond ul li span.main {
	font-family: "EB Garamond", serif;
	font-size: 1.625rem;
	font-style: italic;
	color: #73a6ce;
}
div#content section#diamond div#summary div.headline-body div.body nav#navi-diamond ul li span.sub {
	font-size: 0.75rem;
}
div#content section#diamond div#summary p.image {
	position: absolute;
	width: 750px;
	height: 550px;
	right: calc(50% + 230px);
	top: 440px;
	opacity: 0;
	transition: 1.25s opacity 0.5s ease-in, 1.25s transform 0.5s ease;
	transform: translateX(-40px);
}
div#content section#diamond div#summary p.image.active {
	opacity: 0.375;
	transform: translateX(0px);
}
div#content section#diamond div#detail div.inner-detail {
	width: 800px;
	margin: auto;
	padding-top: 100px;
}
div#content section#diamond div#detail div.block:not(:last-child) {
	margin-bottom: 100px;
}
div#content section#diamond div#detail div.block h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 55px;
	background-color: #d8e6f2;
}
div#content section#diamond div#detail div.block h3 span {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
div#content section#diamond div#detail div.block h3 i.main {
	font-family: "EB Garamond", serif;
	font-size: 2rem;
	font-style: italic;
	color: #73a6ce;
	margin-right: 20px;
}
div#content section#diamond div#detail div.block h3 i.sub {
	font-size: 0.8125rem;
}
div#content section#diamond div#detail div.block div.body div.inner-body {
	padding: 40px 20px 0px 20px;
}
div#content section#diamond div#detail div.block div.body div.description p:not(:last-child) {
	margin-bottom: 20px;
}
div#content section#diamond div#detail div#block-01 table,
div#content section#diamond div#detail div#block-02 table,
div#content section#diamond div#detail div#block-03 table {
	width: 100%;
}
div#content section#diamond div#detail div.block table th,
div#content section#diamond div#detail div.block table td {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 0.8125rem;
	line-height: 1rem;
	padding: 5px 0px;
}
div#content section#diamond div#detail div#block-01 table th,
div#content section#diamond div#detail div#block-01 table td {
	width: 10%;
}
div#content section#diamond div#detail div#block-01 table th:not(:last-child),
div#content section#diamond div#detail div#block-01 table td:not(:last-child),
div#content section#diamond div#detail div#block-02 table th:not(:last-child),
div#content section#diamond div#detail div#block-02 table td:not(:last-child) {
	border-right: 1px solid #252526;
}
div#content section#diamond div#detail div#block-01 table th,
div#content section#diamond div#detail div#block-02 table th {
	text-align: center;
	border-bottom: 1px solid #252526;
}
div#content section#diamond div#detail div#block-01 table td {
	text-align: center;
}
div#content section#diamond div#detail div#block-01 table td img,
div#content section#diamond div#detail div#block-02 table td img {
	width: auto;
	height: 52px;
}
div#content section#diamond div#detail div#block-01 table td img {
	margin: auto;
}
div#content section#diamond div#detail div#block-02 table th,
div#content section#diamond div#detail div#block-02 table td {
	width: 20%;
}
div#content section#diamond div#detail div#block-02 table th span:not(:last-child),
div#content section#diamond div#detail div#block-04 table th span:not(:last-child) {
	margin-right: 20px;
}
div#content section#diamond div#detail div#block-02 table td {
	padding: 0px;
}
div#content section#diamond div#detail div#block-02 table td span {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
div#content section#diamond div#detail div#block-03 table th,
div#content section#diamond div#detail div#block-03 table td,
div#content section#diamond div#detail div#block-04 table th,
div#content section#diamond div#detail div#block-04 table td {
	border: 1px solid #252526;
	padding: 20px;
}
div#content section#diamond div#detail div#block-03 table th,
div#content section#diamond div#detail div#block-04 table th {
	width: 120px;
	text-align: center;
}
div#content section#diamond div#detail div#block-03 table th.high,
div#content section#diamond div#detail div#block-04 table th.high {
	background-color: #d6e4f0;
}
div#content section#diamond div#detail div#block-04 table {
	width: 540px;
}
div#content section#diamond div#detail div#block-03 p.image {
	width: 500px;
	margin: auto;
} */
div#content section.bridal-contents div.inner-section {
	width: 1120px;
	padding-bottom: 140px;
}
div#content section.bridal-contents div.block:not(:last-child) {
	margin-bottom: 100px;
}
div#content section.bridal-contents div.block-summary {
	text-align: center;
	padding-top: 20px;
}
div#content section.bridal-contents div.block-summary h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 2rem;
	line-height: 2.75rem;
	color: #9a8269;
	margin-bottom: 50px;
}
div#content section#diamond div.block-detail > p.image {
	margin-bottom: 70px;
}
div#content section#diamond div.block-detail h2 {
	text-align: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
	line-height: 2.25rem;
	color: #9a8269;
	margin-bottom: 100px;
}
div#content section#diamond div.block-detail div.list {
	margin-bottom: 100px;
}
div#content section#diamond div.block-detail div.list div.row {
	width: calc(100% - 220px);
	padding: 40px;
	background-color: #fafaf8;
	border-radius: 10px;
}
div#content section#diamond div.block-detail div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
div#content section#diamond div.block-detail div.list div.row:nth-last-child(2n) {
	margin-left: auto;
}
div#content section#diamond div.block-detail div.list div.row h3.small {
	display: none;
}
div#content section#diamond div.block-detail div.list div.row div.image-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
div#content section#diamond div.block-detail div.list div.row div.image-text p.image {
	width: 365px;
}
div#content section#diamond div.block-detail div.list div.row div.image-text div.text {
	width: calc(100% - 405px);
}
div#content section#diamond div.block-detail div.list div.row div.image-text div.text h3 {
	position: relative;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.25rem;
	line-height: 2rem;
	color: #9a8269;
	margin-bottom: 30px;
	padding-left: 16px;
}
div#content section#diamond div.block-detail div.list div.row div.image-text div.text h3::before {
	position: absolute;
	width: 0px;
	height: calc(100% - 10px);
	left: 0px;
	top: 7px;
	border-right: 4px solid #9a8269;
	content: "";
}
div#content section#diamond div.block-detail div.list div.row div.image-text div.text p.description {
	line-height: 1.75rem;
}
div#content section#diamond div.block-detail div.image {
	display: flex;
	flex-wrap: wrap;
	margin: 0px calc(50% - 50vw);
}
div#content section#diamond div.block-detail div.image p.row {
	width: 50%;
}
div#content section#diamond div.block-detail div.image p.row img {
	width: 100%;
}

/* bridal - pearl
-------------------------------------------------------------------------------- */

/* div#content section#pearl div#detail,
div#content section#pearl div#ceremonial {
	background: linear-gradient(to bottom, #fffee3 0%, #ffffff 100%);
}
div#content section#pearl div#detail div.inner-detail,
div#content section#pearl div#ceremonial div.inner-ceremonial {
	width: 900px;
	margin: auto;
	padding: 100px 0px;
}
div#content section#pearl div#detail nav#navi-sub {
	width: auto;
	margin-bottom: 160px;
}
div#content section#pearl div#detail div.header,
div#content section#pearl div#ceremonial div.header {
	margin-bottom: 160px;
}
div#content section#pearl div#detail div.header h2,
div#content section#pearl div#ceremonial div.header h2 {
	width: 240px;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.375rem;
	line-height: 2.25rem;
	border-bottom: 1px solid #252526;
	margin-bottom: 20px;
	padding-bottom: 5px;
}
div#content section#pearl div#detail div.header p.description,
div#content section#pearl div#ceremonial div.header p.description {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1rem;
	line-height: 2.25rem;
	padding: 0px 40px;
}
div#content section#pearl div#detail h3 {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	color: #9a9085;
	margin-bottom: 20px;
}
div#content section#pearl div#detail h3 span.main {
	font-family: "EB Garamond", serif;
	font-size: 2.25rem;
	font-style: italic;
	line-height: 2.5rem;
	margin-right: 20px;
}
div#content section#pearl div#detail h3 span.sub {
	font-size: 0.8125rem;
}
div#content section#pearl div#detail div.quality,
div#content section#pearl div#detail div.choice {
	margin-bottom: 100px;
}
div#content section#pearl div#detail div.quality h3 {
	justify-content: center;
	margin-bottom: 40px;
}
div#content section#pearl div#detail div.quality div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -40px 0px;
}
div#content section#pearl div#detail div.quality div.list div.row {
	width: calc(50% - 40px);
	margin: 0px 40px 40px 0px;
}
div#content section#pearl div#detail div.quality div.list div.row h4 {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	border-bottom: 1px solid #d1d1d1;
	margin-bottom: 15px;
	padding-bottom: 5px;
}
div#content section#pearl div#detail div.quality div.list div.row h4 span.sub {
	font-family: "EB Garamond", serif;
	font-size: 1.875rem;
	font-style: italic;
	color: #9a9085;
	margin-right: 20px;
}
div#content section#pearl div#detail div.quality div.list div.row h4 span.main {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.125rem;
	transform: translateY(-3px);
}
div#content section#pearl div#detail div.quality div.list div.row p.description {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 0.8125rem;
	line-height: 1.5rem;
}
div#content section#pearl div#detail div.choice div.column {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
div#content section#pearl div#detail div.choice div.column div.left {
	box-sizing: border-box;
	width: calc(100% - 420px);
	padding-left: 20px;
}
div#content section#pearl div#detail div.choice div.column div.left h3 {
	margin-left: -20px;
}
div#content section#pearl div#detail div.choice div.column div.left div.frame {
	box-sizing: border-box;
	width: calc(100% - 40px);
	border: 1px solid #252526;
	padding: 40px;
}
div#content section#pearl div#detail div.choice div.column div.left div.frame div.list {
	margin-bottom: 20px;
	padding: 0px 20px;
}
div#content section#pearl div#detail div.choice div.column div.left div.frame div.list div.row {
	display: flex;
	flex-wrap: wrap;
	font-family: TsukuMinPr6-M, "Yu Mincho", YuMincho, serif;
	padding: 10px 0px;
}
div#content section#pearl div#detail div.choice div.column div.left div.frame div.list div.row:first-child {
	padding-top: 0px;
}
div#content section#pearl div#detail div.choice div.column div.left div.frame div.list div.row:not(:last-child) {
	border-bottom: 1px solid #d1d1d1;
}
div#content section#pearl div#detail div.choice div.column div.left div.frame div.list div.row p.label {
	box-sizing: border-box;
	width: 150px;
	font-size: 1.125rem;
	padding-left: 5px;
}
div#content section#pearl div#detail div.choice div.column div.left div.frame div.list div.row p.body {
	box-sizing: border-box;
	width: calc(100% - 150px);
	text-align: right;
	font-size: 1.5rem;
	padding-right: 5px;
}
div#content section#pearl div#detail div.choice div.column div.right {
	width: 380px;
}
div#content section#pearl div#detail div.care-keep {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
div#content section#pearl div#detail div.care-keep div.care,
div#content section#pearl div#detail div.care-keep div.keep {
	box-sizing: border-box;
	width: calc(50% - 80px);
	padding-left: 20px;
}
div#content section#pearl div#detail div.care-keep div.care h3,
div#content section#pearl div#detail div.care-keep div.keep h3 {
	margin-left: -20px;
}
div#content section#pearl div#ceremonial div.header {
	transform: translateX(300px);
}
div#content section#pearl div#ceremonial div.list {
	margin-bottom: 160px;
}
div#content section#pearl div#ceremonial div.list div.row {
	position: relative;
	text-align: center;
}
div#content section#pearl div#ceremonial div.list div.row-01,
div#content section#pearl div#ceremonial div.list div.row-03 {
	padding-left: 47.5%;
}
div#content section#pearl div#ceremonial div.list div.row-01 {
	margin-bottom: 260px;
}
div#content section#pearl div#ceremonial div.list div.row-02 {
	margin-bottom: 180px;
	padding-right: 47.5%;
}
div#content section#pearl div#ceremonial div.list div.row p.number,
div#content section#pearl div#ceremonial div.list div.row h3,
div#content section#pearl div#ceremonial div.list div.row h4 {
	color: #9a9085;
}
div#content section#pearl div#ceremonial div.list div.row p.number {
	position: relative;
	font-family: "EB Garamond", serif;
	font-size: 2.5rem;
	font-style: italic;
	line-height: 2.75rem;
	margin-bottom: 20px;
}
div#content section#pearl div#ceremonial div.list div.row p.number::before {
	position: absolute;
	width: 20px;
	height: 0px;
	left: calc(50% - 10px);
	bottom: -10px;
	border-bottom: 1px solid #9a9085;
	content: "";
}
div#content section#pearl div#ceremonial div.list div.row h3,
div#content section#pearl div#ceremonial div.list div.row h4 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	margin-bottom: 40px;
}
div#content section#pearl div#ceremonial div.list div.row h3 {
	font-size: 1.375rem;
	line-height: 2.25rem;
}
div#content section#pearl div#ceremonial div.list div.row h4 {
	font-size: 1.125rem;
}
div#content section#pearl div#ceremonial div.list div.row div.description p:not(:last-child) {
	margin-bottom: 20px;
}
div#content section#pearl div#ceremonial div.list div.row p.image {
	position: absolute;
	overflow: hidden;
	border-radius: 50%;
}
div#content section#pearl div#ceremonial div.list div.row-01 p.image-01 {
	width: 428px;
	height: 428px;
	left: -60px;
	top: -100px;
}
div#content section#pearl div#ceremonial div.list div.row-01 p.image-02 {
	width: 293px;
	height: 293px;
	left: 120px;
	top: 340px;
}
div#content section#pearl div#ceremonial div.list div.row-02 p.image {
	width: 456px;
	height: 456px;
	right: -40px;
	top: -140px;
}
div#content section#pearl div#ceremonial div.list div.row-03 p.image {
	width: 440px;
	height: 440px;
	left: 0px;
	top: 20px;
}
div#content section#pearl div#ceremonial div.container-banner div.banner {
	border: 1px solid #dbd3ca;
	background-color: #ffffff;
}
div#content section#pearl div#ceremonial div.container-banner div.banner div.text h2 {
	color: #9a9085;
	margin-bottom: 40px;
}
div#content section#pearl div#ceremonial div.container-banner div.banner div.text p.button-look {
	width: 180px;
	color: #9a9085;
	border-color: #dbd3ca;
}
div#content section#pearl div#ceremonial div.container-banner div.banner div.text p.button-look:hover {
	color: #ffffff;
}
div#page section#pearl div#ceremonial p.button-look::before {
	background-color: #dbd3ca;
}
div#page section#pearl div#ceremonial p.button-look::after {
	background-image: url(../images/arrow-more-01-iki-pearl.svg);
}
div#page section#pearl div#ceremonial p.button-look:hover::after {
	background-image: url(../images/arrow-more-01-white.svg);
}
div#content section#pearl div#ceremonial div.container-banner {
	padding: 0px;
} */
div#content section#pearl div.block-summary > p.description {
	margin-bottom: 100px;
}
div#content section#pearl div.block-summary div.image-text {
	position: relative;
	margin: 0px -120px;
}
div#content section#pearl div.block-summary div.image-text p.image-01 {
	width: calc(50% + 80px);
}
div#content section#pearl div.block-summary div.image-text div.text {
	position: absolute;
	left: calc(50% + 10px);
	top: 70px;
	z-index: 1;
	text-align: justify;
	line-height: 1.75rem;
}
div#content section#pearl div.block-summary div.image-text p.image-02 {
	width: calc(50% - 140px);
	margin: -200px 0px 0px auto;
}
div#content section#pearl div.block-detail h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
	line-height: 2.25rem;
	color: #9a8269;
	margin: -40px 0px 20px 0px;
	padding-left: 40px;
}
div#content section#pearl div.block-detail > p.description {
	margin-bottom: 60px;
	padding-left: 40px;
}
div#content section#pearl div.block-detail div.list {
	margin-bottom: 100px;
}
div#content section#pearl div.block-detail div.list div.row {
	width: calc(100% - 100px);
	padding: 40px;
	background-color: #fafaf8;
	border-radius: 10px;
}
div#content section#pearl div.block-detail div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
div#content section#pearl div.block-detail div.list div.row:nth-last-child(2n) {
	margin-left: auto;
}
div#content section#pearl div.block-detail div.list div.row h3 {
	position: relative;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.25rem;
	line-height: 2rem;
	color: #9a8269;
	margin-bottom: 20px;
	padding-left: 16px;
}
div#content section#pearl div.block-detail div.list div.row h3::before {
	position: absolute;
	width: 0px;
	height: calc(100% - 10px);
	left: 0px;
	top: 7px;
	border-right: 4px solid #9a8269;
	content: "";
}
div#content section#pearl div.block-detail div.list div.row div.image-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
div#content section#pearl div.block-detail div.list div.row div.image-text p.image {
	width: 450px;
}
div#content section#pearl div.block-detail div.list div.row div.image-text div.text {
	width: calc(100% - 490px);
	margin-top: -10px;
}
div#content section#pearl div.block-detail div.list div.row div.image-text div.text p.description {
	line-height: 1.75rem;
}
div#content section#pearl div.block-detail-alternate div.image-text {
	position: relative;
	margin: 0px -120px;
}
div#content section#pearl div.block-detail-alternate div.image-text p.image {
	width: calc(50% + 160px);
}
div#content section#pearl div.block-detail-alternate div.image-text div.text {
	position: absolute;
	left: calc(50% + 10px);
	top: 70px;
	z-index: 1;
	text-align: justify;
}
div#content section#pearl div.block-detail-alternate div.image-text div.text h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.375rem;
	line-height: 2.125rem;
	color: #9a8269;
	margin-bottom: 40px;
}
div#content section#pearl div.block-detail-alternate div.image-text div.text p.description {
	line-height: 1.75rem;
}
div#content section#pearl div.block-detail-alternate div.image-text div.image {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	width: 730px;
	z-index: 1;
	margin: -120px 0px 0px auto;
}
div#content section#pearl div.block-detail-alternate div.image-text div.image p.row {
	width: 50%;
}
div#content section#pearl div.block-detail-alternate div.image-text div.image p.row img {
	width: 100%;
}

/* why-us
-------------------------------------------------------------------------------- */

div#content section#why-us div.block-summary > p.description {
	margin-bottom: 100px;
}
div#content section#why-us div.block-summary div.image-scroll {
	margin: 0px calc(50% - 50vw);
}
div#content section#why-us div.block-summary div.image-scroll div.inner-image-scroll {
	display: flex;
	flex-wrap: wrap;
	width: 9999px;
	animation: why-us 60s linear infinite forwards;
}
@keyframes why-us {
	0% { transform: translateX(0px); }
	100% { transform: translateX(calc(-450px * 4)); }
}
div#content section#why-us div.block-summary div.image-scroll div.image-scroll p.row {
	width: 450px;
}
div#content section#why-us div.block-summary div.image-scroll div.image-scroll p.row img {
	width: 100%;
}
div#content section#why-us div.block-detail div.list div.row:not(:last-child) {
	margin-bottom: 60px;
}
div#content section#why-us div.block-detail div.list div.row div.image-text:has(p.image) {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
div#content section#why-us div.block-detail div.list div.row:nth-child(2n+1) div.image-text {
	flex-direction: row;
}
div#content section#why-us div.block-detail div.list div.row:nth-child(2n) div.image-text {
	flex-direction: row-reverse;
}
div#content section#why-us div.block-detail div.list div.row div.image-text :where(p.image, div.text) {
	width: calc(50% - 80px);
}
div#content section#why-us div.block-detail div.list div.row:nth-child(2) div.image-text p.image {
	margin-top: 60px;
}
div#content section#why-us div.block-detail div.list div.row div.image-text div.text h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.375rem;
	line-height: 2.125rem;
	color: #9a8269;
	margin-bottom: 40px;
}
div#content section#why-us div.block-detail div.list div.row div.image-text div.text p.description {
	line-height: 1.75rem;
}
body.why-us div#content section#video {
	width: 480px;
	margin: -565px auto 0px auto;
	transform: translateX(280px);
}
body.why-us div#content section#video:not(:has(article)) {
	display: none;
}
body.why-us div#content section#video div.inner-section {
	width: auto;
	padding-top: 0px;
}

/* bridal, jewelry - reform
-------------------------------------------------------------------------------- */

div#content section#reform div.inner-section {
	padding-bottom: 0px;
}
div#content section#reform div#summary div.inner-summary {
	text-align: center;
	margin-bottom: 100px;
}
div#content section#reform div#summary p.illust,
div#content section#reform div#summary h2 {
	margin-bottom: 60px;
}
div#content section#reform div#summary p.illust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
div#content section#reform div#summary p.illust img {
	width: auto;
	height: 91px;
}
div#content section#reform div#summary h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.375rem;
	line-height: 2.25rem;
	color: #9a9085;
}
div#content section#reform div#summary p.description {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1rem;
	line-height: 2.25rem;
}
div#content section#reform div.slide-reform {
	width: 750px;
	margin: 0px auto 100px auto;
}
div#content section#reform div.slide-reform div.container article {
	width: 750px;
	text-align: center;
	padding: 80px 0px;
}
div#content section#reform.bridal div.slide-reform div.container article {
	background-color: #f7f2f4;
}
div#content section#reform.jewelry div.slide-reform div.container article {
	background-color: #f8f8fa;
}
div#content section#reform div.slide-reform div.container article h3 {
	position: relative;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.125rem;
	margin-bottom: 80px;
}
div#content section#reform div.slide-reform div.container article h3::before {
	position: absolute;
	width: 50px;
	height: 0px;
	left: calc(50% - 25px);
	bottom: -40px;
	border-bottom: 1px solid #7f7f7f;
	content: "";
}
div#content section#reform div.slide-reform div.container article p.diagram img {
	width: auto;
	height: 280px;
	margin: auto;
}
div#content section#reform div.slide-reform div.container article p.diagram img.small {
	display: none;
}
div#content section#reform div#flow {
	position: relative;
}
div#content section#reform div#flow div.inner-flow {
	padding-bottom: 100px;
}
div#content section#reform.bridal div#flow {
	background-color: #f7f2f4;
}
div#content section#reform.jewelry div#flow {
	background-color: #f8f8fa;
}
div#content section#reform div#flow::before {
	position: absolute;
	width: 100%;
	height: 280px;
	left: 0px;
	top: 0px;
	background-color: #ffffff;
	content: "";
}
div#content section#reform div#flow div.frame {
	box-sizing: border-box;
	position: relative;
	width: 980px;
	margin: 0px auto 100px auto;
	padding: 80px;
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 0px 2.5px 5px rgba(0, 0, 0, 0.075);
}
div#content section#reform div#flow h2 {
	text-align: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
	line-height: 2.5rem;
	margin-bottom: 90px;
}
div#content section#reform div#flow h2 span {
	position: relative;
}
div#content section#reform div#flow h2 span::before {
	position: absolute;
	width: 100%;
	height: 6px;
	left: 0px;
	bottom: -10px;
	background: url(../images/reform-wave.svg) repeat-x left bottom;
	background-size: auto 6px;
	content: "";
}
div#content section#reform div#flow div.list div.row div.illust-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
div#content section#reform div#flow div.list div.row-02 div.illust-text {
	flex-direction: row-reverse;
}
div#content section#reform div#flow div.list div.row-04 div.illust-text {
	display: block;
}
div#content section#reform div#flow div.list div.row div.illust-text p.illust,
div#content section#reform div#flow div.list div.row div.illust-text div.text {
	width: calc(50% - 20px);
}
div#content section#reform div#flow div.list div.row div.illust-text div.text p.number {
	font-family: "EB Garamond", serif;
	font-size: 2.5rem;
	font-style: italic;
	line-height: 2.75rem;
	margin-bottom: 5px;
}
div#content section#reform div#flow div.list div.row div.illust-text div.text h3 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.125rem;
	line-height: 1.625rem;
	border-bottom: 1px solid #d1d1d1;
	margin-bottom: 15px;
	padding-bottom: 15px;
}
div#content section#reform div#flow div.list div.row div.example {
	box-sizing: border-box;
	width: calc(100% - 400px);
	margin: 0px 0px 0px auto;
	padding: 20px 40px 0px 40px;
}
div#content section#reform div#flow div.list div.row div.example p {
	text-indent: -1.625em;
	font-size: 0.8125rem;
	font-weight: 200;
	line-height: 1.375rem;
	padding-left: 1.625em;
}
div#content section#reform div#flow div.list div.row-04 h3 {
	text-align: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.125rem;
	line-height: 1.625rem;
	margin-bottom: 60px;
}
div#content section#reform div#flow div.list div.row-04 h3 span {
	display: inline-block;
	position: relative;
}
div#content section#reform div#flow div.list div.row-04 h3 span::before,
div#content section#reform div#flow div.list div.row-04 h3 span::after {
	position: absolute;
	width: 92px;
	height: 70px;
	top: 0px;
	background: url(../images/reform-ornament.svg) no-repeat center;
	background-size: auto 100%;
	content: "";
}
div#content section#reform div#flow div.list div.row-04 h3 span::before {
	left: -120px;
}
div#content section#reform div#flow div.list div.row-04 h3 span::after {
	right: -120px;
	transform: scale(-1, 1);
}
div#content section#reform div#flow div.list div.row-04 div.illust-text p.illust {
	width: 474px;
	margin: 0px auto 20px auto;
}
div#content section#reform div#flow div.list div.row-04 div.illust-text div.text {
	width: auto;
	text-align: center;
}
div#content section#reform div#flow div.list p.arrow {
	height: 60px;
	overflow: hidden;
	margin: 40px 0px;
}
div#content section#reform div#flow div.list p.arrow span {
	display: block;
	height: 100%;
	background: url(../images/reform-arrow.svg) no-repeat center;
	background-size: auto 60px;
	opacity: 0;
	transition: 0.75s opacity ease-in, 0.5s transform ease;
	transform: translateY(-100%);
}
div#content section#reform div#flow div.list p.arrow.active span {
	opacity: 1;
	transform: translateY(0%);
}
div#content section#reform div#flow p.suffix {
	text-align: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1rem;
	line-height: 2.25rem;
}

/* bridal - propose-plan
-------------------------------------------------------------------------------- */

/* div#content section#propose-plan div.inner-section {
	width: 900px;
}
div#content section#propose-plan div#summary div.inner-summary {
	text-align: center;
	margin-bottom: 60px;
}
div#content section#propose-plan div#summary p.illust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 60px;
}
div#content section#propose-plan div#summary p.illust img {
	width: auto;
	height: 82px;
}
div#content section#propose-plan div#summary div.description p {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1rem;
	line-height: 2.25rem;
}
div#content section#propose-plan div#summary div.description p:not(:last-child) {
	margin-bottom: 20px;
}
div#content section#propose-plan nav#navi-propose-plan {
	margin-bottom: 120px;
}
div#content section#propose-plan nav#navi-propose-plan ul {
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;
}
div#content section#propose-plan nav#navi-propose-plan ul li {
	width: calc(25% - 10px);
	text-align: center;
	margin-right: 10px;
}
div#content section#propose-plan nav#navi-propose-plan ul li a {
	display: block;
	position: relative;
	color: #252526;
	padding: 10px 10px 30px 10px;
}
div#content section#propose-plan nav#navi-propose-plan ul li a::before {
	display: block;
	position: absolute;
	width: 12px;
	height: 12px;
	left: calc(50% - 6px);
	bottom: 10px;
	background: url(../images/arrow-down-02.svg) no-repeat center;
	background-size: auto 100%;
	content: "";
}
div#content section#propose-plan nav#navi-propose-plan ul li:nth-child(1) a,
div#content section#propose-plan nav#navi-propose-plan ul li:nth-child(2) a {
	background-color: #f2e9ba;
}
div#content section#propose-plan nav#navi-propose-plan ul li:nth-child(3) a,
div#content section#propose-plan nav#navi-propose-plan ul li:nth-child(4) a {
	background-color: #f8f4da;
}
div#content section#propose-plan nav#navi-propose-plan ul li span {
	display: block;
}
div#content section#propose-plan nav#navi-propose-plan ul li span.sub {
	font-family: "EB Garamond", serif;
	font-size: 1.625rem;
	font-style: italic;
}
div#content section#propose-plan nav#navi-propose-plan ul li span.main {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
}
div#content section#propose-plan div#flow,
div#content section#propose-plan div#choice {
	padding-top: 40px;
}
div#content section#propose-plan div#flow {
	border-bottom: 1px solid #d1d1d1;
	margin-bottom: 60px;
	padding-bottom: 100px;
}
div#content section#propose-plan div#flow p.number,
div#content section#propose-plan div#choice p.number {
	text-align: center;
	font-family: "EB Garamond", serif;
	font-size: 3.125rem;
	font-style: italic;
	line-height: 3.125rem;
	margin-bottom: 10px;
}
div#content section#propose-plan div#flow h2.alternate,
div#content section#propose-plan div#choice h2.alternate {
	text-align: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.375rem;
	line-height: 2.25rem;
	margin-bottom: 60px;
}
div#content section#propose-plan div#flow p.diagram {
	margin: 0px -20px 80px 0px;
}
div#content section#propose-plan div#flow p.diagram-small {
	display: none;
}
div#content section#propose-plan div#flow div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px 100px 0px;
}
div#content section#propose-plan div#flow div.list div.row {
	width: calc(25% - 40px);
	margin-right: 40px;
}
div#content section#propose-plan div#flow div.list div.row h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 35px;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 0.9375rem;
	line-height: 1.375rem;
	margin-bottom: 20px;
}
div#content section#propose-plan div#flow div.list div.row h3 span {
	display: block;
	position: relative;
}
div#content section#propose-plan div#flow div.list div.row h3 span.sub {
	display: none;
}
div#content section#propose-plan div#flow div.list div.row h3 span.sub img {
	width: auto;
	height: 18px;
}
div#content section#propose-plan div#flow div.list div.row-04 h3 span.main::before {
	display: block;
	position: absolute;
	width: 20px;
	height: 43px;
	right: -30px;
	top: calc(50% - 21.5px);
	background: url(../images/bridal-propose-plan-ornament-01.svg) no-repeat center;
	background-size: auto 100%;
	content: "";
}
div#content section#propose-plan div#flow div.list div.row p.image {
	margin-bottom: 10px;
}
div#content section#propose-plan div#flow div.list div.row p.button {
	text-align: center;
	font-size: 0.8125rem;
	line-height: 1rem;
}
div#content section#propose-plan div#flow div.list div.row p.button a {
	width: 100%;
	height: 45px;
}
div#content section#propose-plan div#flow div.list div.row p.description {
	min-height: 6rem;
	font-size: 0.8125rem;
	line-height: 1.5rem;
	margin-bottom: 10px;
}
div#content section#propose-plan div#flow div.list div.row-05 {
	box-sizing: border-box;
	position: relative;
	width: 300px;
	height: 300px;
	text-align: center;
	margin: -20px 80px 0px auto;
	padding-top: 60px;
	background-color: #f2e9ba;
	border-radius: 50%;
}
div#content section#propose-plan div#flow div.list div.row-05::before {
	position: absolute;
	width: 63px;
	height: 155px;
	right: -40px;
	top: -120px;
	background: url(../images/bridal-propose-plan-arrow-01.svg) no-repeat center;
	background-size: auto 100%;
	content: "";
}
div#content section#propose-plan div#flow div.list div.row-05 h3 {
	display: block;
	position: relative;
	height: auto;
	margin-bottom: 40px;
}
div#content section#propose-plan div#flow div.list div.row-05 h3::before {
	position: absolute;
	width: 50px;
	height: 0px;
	left: calc(50% - 25px);
	bottom: -20px;
	border-bottom: 1px solid #7f7f7f;
	content: "";
}
div#content section#propose-plan div#flow div.list div.row-05 h3 span.sub {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 20px;
}
div#content section#propose-plan div#flow div.quick,
div#content section#propose-plan div#flow div.special {
	width: calc(100% - 80px);
	margin: auto;
}
div#content section#propose-plan div#flow div.quick {
	text-align: center;
	margin-bottom: 40px;
	padding: 60px 40px;
	background-color: #f7f3ef;
}
div#content section#propose-plan div#flow div.quick h3 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.625rem;
	margin-bottom: 50px;
}
div#content section#propose-plan div#flow div.quick h3 span {
	position: relative;
	padding: 0px 20px;
}
div#content section#propose-plan div#flow div.quick h3 i {
	display: inline-block;
	font-size: 2.25rem;
	font-style: italic;
	transform: translateY(3px);
}
div#content section#propose-plan div#flow div.quick h3 span::before {
	position: absolute;
	width: 100%;
	height: 6px;
	left: 0px;
	bottom: -10px;
	background: url(../images/bridal-propose-plan-wave.svg) repeat-x left bottom;
	background-size: auto 6px;
	content: "";
}
div#content section#propose-plan div#flow div.quick h4 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.25rem;
	margin-bottom: 20px;
}
div#content section#propose-plan div#flow div.special {
	padding: 40px;
	background-color: #f7f2f4;
}
div#content section#propose-plan div#flow div.special div.header {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}
div#content section#propose-plan div#flow div.special div.header p.image {
	box-sizing: border-box;
	width: 166px;
	height: 166px;
	overflow: hidden;
	border: 5px solid #ffffff;
	margin-right: 40px;
	border-radius: 50%;
}
div#content section#propose-plan div#flow div.special div.header h3 {
	text-align: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.625rem;
	line-height: 3rem;
}
div#content section#propose-plan div#flow div.special div.header h3 span {
	position: relative;
	display: inline-block;
}
div#content section#propose-plan div#flow div.special div.header h3 span::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	bottom: 5px;
	border-bottom: 1px solid #252526;
	content: "";
}
div#content section#propose-plan div#flow div.special div.image-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
div#content section#propose-plan div#flow div.special div.image-text div.text {
	width: 340px;
}
div#content section#propose-plan div#flow div.special div.image-text p.image {
	width: calc(100% - 380px);
}
div#content section#propose-plan div#flow div.special p.button-small {
	display: none;
}
div#content section#propose-plan div#choice div.list {
	margin-bottom: 160px;
}
div#content section#propose-plan div#choice div.list div.row {
	text-align: center;
}
div#content section#propose-plan div#choice div.list div.row h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}
div#content section#propose-plan div#choice div.list div.row h3 span {
	display: block;
}
div#content section#propose-plan div#choice div.list div.row h3 span.sub {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 65px;
	height: 65px;
	font-family: "EB Garamond", serif;
	font-size: 1.375rem;
	font-style: italic;
	line-height: 2.25rem;
	font-style: italic;
	border: 1px solid #252526;
	margin-right: 20px;
	background-color: #f2e9ba;
	border-radius: 50%;
}
div#content section#propose-plan div#choice div.list div.row h3 span.main {
	position: relative;
	text-align: left;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.125rem;
	line-height: 1.5rem;
	padding: 5px 0px;
}
div#content section#propose-plan div#choice div.list div.row h3 span.main::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	bottom: 0px;
	border-bottom: 1px solid #252526;
	content: "";
}
div#content section#propose-plan div#choice div.list div.row p.description {
	margin-bottom: 60px;
}
div#content section#propose-plan div#choice div.list div.row ul.type {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-right: -20px;
}
div#content section#propose-plan div#choice div.list div.row ul.type li {
	width: calc(25% - 20px);
	margin-right: 20px;
}
div#content section#propose-plan div#choice div.list div.row ul.type li p.image {
	margin-bottom: 10px;
}
div#content section#propose-plan div#choice div.list div.row ul.type li p.caption {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 0.8125rem;
}
div#content section#propose-plan div#choice div.list div.row p.arrow {
	height: 168px;
	background: url(../images/bridal-propose-plan-arrow-02.svg) no-repeat center;
	background-size: auto 88px;
}
div#content section#propose-plan div#choice div.list div.row-02 p.image {
	width: 500px;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0px 2.5px 5px rgba(0, 0, 0, 0.075);
}
div#content section#propose-plan div#choice p.headline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-bottom: 40px;
}
div#content section#propose-plan div#choice p.headline span {
	position: relative;
}
div#content section#propose-plan div#choice p.headline span::before,
div#content section#propose-plan div#choice p.headline span::after {
	position: absolute;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	content: "";
}
div#content section#propose-plan div#choice p.headline span::before {
	left: -60px;
}
div#content section#propose-plan div#choice p.headline span::after {
	right: -60px;
}
div#content section#propose-plan div#choice p.headline span::after {
	transform: scale(-1, 1);
}
div#content section#propose-plan div#choice p.headline-01 span::before,
div#content section#propose-plan div#choice p.headline-01 span::after {
	width: 58px;
	height: 76px;
	top: -5px;
	background-image: url(../images/bridal-propose-plan-ornament-02.svg);
}
div#content section#propose-plan div#choice p.headline-02,
div#content section#propose-plan div#choice p.headline-03 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.125rem;
	line-height: 1.5rem;
}
div#content section#propose-plan div#choice p.headline-02 i {
	font-size: 0.9375rem;
}
div#content section#propose-plan div#choice p.headline-02 span::before,
div#content section#propose-plan div#choice p.headline-02 span::after {
	width: 38px;
	height: 62px;
	top: -5px;
	background-image: url(../images/bridal-propose-plan-ornament-03.svg);
}
div#content section#propose-plan div#choice p.headline-03 span::before,
div#content section#propose-plan div#choice p.headline-03 span::after {
	width: 32px;
	height: 68px;
	top: -15px;
	background-image: url(../images/bridal-propose-plan-ornament-04.svg);
}
div#content section#propose-plan div#choice div.container-banner {
	padding-top: 0px;
	padding-bottom: 0px;
}
div#content section#propose-plan div#choice div.container-banner div.banner-propose-plan {
	display: none;
} */
div#content section#propose-plan div.block div.image-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
div#content section#propose-plan div.block div.image-text div.text h2,
div#content section#propose-plan div.block div.image-text div.text h2 em {
	display: flex;
	flex-wrap: wrap;
}
div#content section#propose-plan div.block-01 div.image-text div.text-small {
	display: none;
}
div#content section#propose-plan div.block div.image-text div.text h2 {
	align-items: center;
	color: #9a8269;
	margin-bottom: 40px;
}
div#content section#propose-plan div.block div.image-text div.text h2 em {
	align-items: flex-start;
	border-bottom: 1px solid #cebaa6;
	padding: 0px 15px 15px 15px;
}
div#content section#propose-plan div.block div.image-text div.text h2 span {
	display: block;
}
div#content section#propose-plan div.block div.image-text div.text h2 span.sub {
	font-size: 0.625rem;
	font-weight: 400;
	line-height: 1rem;
	margin-right: 15px;
	transform: translateY(9px);
}
div#content section#propose-plan div.block div.image-text div.text h2 span.sub i {
	display: inline-block;
	font-size: 0.9375rem;
	margin-left: 3px;
	transform: translateY(1px);
}
div#content section#propose-plan div.block div.image-text div.text h2 span.main {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
}
div#content section#propose-plan div.block div.image-text div.text p.description {
	line-height: 1.75rem;
}
div#content section#propose-plan div:where(.block-01, .block-03) div.image-text p.image {
	width: 645px;
}
div#content section#propose-plan div:where(.block-01, .block-03) div.image-text div.text {
	width: calc(100% - 715px);
	padding-top: 20px;
}
div#content section#propose-plan div.block-02 div.image-text {
	flex-direction: row-reverse;
	margin-bottom: 60px;
}
div#content section#propose-plan div.block-02 div.image-text p.image {
	width: 370px;
}
div#content section#propose-plan div.block-02 div.image-text div.text {
	width: calc(100% - 440px);
	padding-top: 60px;
}
div#content section#propose-plan div.block-02 div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
}
div#content section#propose-plan div.block-02 div.list div.row {
	width: calc(25% - 20px);
	overflow: hidden;
	border: 1px solid #ebebeb;
	margin-right: 20px;
	border-radius: 10px;
}
div#content section#propose-plan div.block-02 div.list div.row p.image img {
	transition: 0.25s transform ease;
}
div#content section#propose-plan div.block-02 div.list div.row a:hover p.image img {
	transform: scale(1.0375);
}
div#content section#propose-plan div.block-02 div.list div.row h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 100px;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	text-align: center;
	font-size: 0.9375rem;
	line-height: 1.375rem;
	color: #9a8269;
	transition: 0.25s color ease;
}
div#content section#propose-plan div.block-02 div.list div.row a:hover h3 {
	color: #cebaa6;
}
div#content section#propose-plan div.block-02 div.list div.row h3::before {
	position: absolute;
	width: 10px;
	height: 10px;
	right: 20px;
	top: calc(50% - 5px);
	border-right: 1px solid #9a8269;
	border-bottom: 1px solid #9a8269;
	content: "";
	transition: 0.25s border-color ease;
	transform: rotate(-45deg);
}
div#content section#propose-plan div.block-02 div.list div.row a:hover h3::before {
	border-color: #cebaa6;
}
div#content section#propose-plan div.block-02 div.list div.row h3 span {
	display: block;
}
div#content section#propose-plan div.block-02 div.list div.row h3 i {
	font-size: 1.125rem;
}
div#content section#propose-plan div.block-03 div.image-text {
	margin-bottom: 140px;
}
div#content section#propose-plan div.block-03 div.image-text div.text p.description {
	margin-bottom: 50px;
}
div#content section#propose-plan div.block-03 div.image-text div.text p.button {
	display: block;
	text-align: center;
}
div#content section#propose-plan div.block-03 div.image-text div.text p.button a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 270px;
	height: 75px;
	color: #9a8269;
	border: 1px solid #cebaa6;
	padding-right: 10px;
	border-radius: 37.5px;
	transition: 0.25s color ease, 0.25s border-color ease, 0.25s background-color ease;
}
div#content section#propose-plan div.block-03 div.image-text div.text p.button a:hover {
	color: #ffffff;
	border-color: #cebaa6;
	background-color: #9a8269;
}
div#content section#propose-plan div.block-03 div.image-text div.text p.button span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
div#content section#propose-plan div.block-03 div.image-text div.text p.button :where(img, svg) {
	width: 58px;
	height: auto;
	margin-right: 5px;
}
div#content section#propose-plan div.block-03 div.image-text div.text p.button img {
	opacity: 0;
}
div#content section#propose-plan div.block-03 div.image-text div.text p.button svg path {
	fill: #9a8269 !important;
	transition: 0.25s fill ease;
}
div#content section#propose-plan div.block-03 div.image-text div.text p.button a:hover svg path {
	fill: #ffffff !important;
}
div#content section#propose-plan div.block-03 div.image-text div.text p.button i {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.125rem;
}
div#content section#propose-plan div.block-03 div.image-scroll {
	margin: 0px calc(50% - 50vw);
}
div#content section#propose-plan div.block-03 div.image-scroll div.inner-image-scroll {
	display: flex;
	flex-wrap: wrap;
	width: 9999px;
	animation: propose-plan 45s linear infinite forwards;
}
@keyframes propose-plan {
	0% { transform: translateX(0px); }
	100% { transform: translateX(calc(-455px * 3)); }
}
div#content section#propose-plan div.block-03 div.image-scroll div.image-scroll p.row {
	width: 455px;
}
div#content section#propose-plan div.block-03 div.image-scroll div.image-scroll p.row img {
	width: 100%;
}

/* bridal - after-service
-------------------------------------------------------------------------------- */

div#content section#after-service div.inner-section {
	padding-top: 0px;
}
div#content section#after-service.bridal div#summary div.inner-summary,
div#content section#after-service.bridal div#platinum div.inner-platinum,
div#content section#after-service.bridal div#guarantee div.inner-guarantee {
	padding: 100px 0px;
}
div#content section#after-service.bridal div#summary,
div#content section#after-service.bridal div#guarantee {
	text-align: center;
	background-color: #f2f1ee;
}
div#content section#after-service.bridal div#summary div.description p,
div#content section#after-service.bridal div#platinum div.description p,
div#content section#after-service.bridal div#guarantee p.description {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1rem;
	line-height: 2.25rem;
}
div#content section#after-service.bridal div#summary div.description p:not(:last-child),
div#content section#after-service.bridal div#platinum div.description p:not(:last-child) {
	margin-bottom: 20px;
}
div#content section#after-service.bridal div#platinum div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: center;
}
div#content section#after-service.bridal div#platinum div.image-text div.image {
	width: 440px;
}
div#content section#after-service.bridal div#platinum div.image-text div.image p.row {
	width: 360px;
	opacity: 0;
	transition: 1.25s opacity ease-in, 1.25s transform ease;
	transform: translateX(20px);
}
div#content section#after-service.bridal div#platinum div.image-text div.image.active p.row {
	opacity: 1;
	transform: translateX(0px);
}
div#content section#after-service.bridal div#platinum div.image-text div.image p.row:nth-child(1) {
	margin: 0px auto 20px 0px;
	transition-delay: 1.25s, 1.25s;
}
div#content section#after-service.bridal div#platinum div.image-text div.image p.row:nth-child(2) {
	margin: 0px 0px 0px auto;
	transition-delay: 1.75s, 1.75s;
}
div#content section#after-service.bridal div#platinum div.image-text div.image p.row img {
	width: 100%;
	height: auto;
}
div#content section#after-service.bridal div#platinum div.image-text div.text {
	width: 500px;
	text-align: center;
}
div#content section#after-service.bridal div#platinum div.image-text div.text h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.25rem;
	color: #9a9085;
	margin-bottom: 40px;
}
div#content section#after-service.bridal div#guarantee p.image-small {
	display: none;
}
div#content section#after-service.bridal div#guarantee p.description {
	margin-bottom: 80px;
}
div#content section#after-service.bridal div#guarantee h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.25rem;
	line-height: 2.25rem;
}
div#content section#after-service.bridal div#guarantee h2 span {
	border-bottom: 1px solid #252526;
}
div#content section#after-service.bridal div#repair div.inner-repair {
	padding-top: 100px;
}
div#content section#after-service.bridal div#repair h3 {
	text-align: center;
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 40px;
}
div#content section#after-service.bridal div#repair div.price {
	width: 640px;
	margin: 0px auto 100px auto;
}
div#content section#after-service.bridal div#repair div.price div.list {
	margin-bottom: 10px;
}
div#content section#after-service.bridal div#repair div.price div.list div.row {
	display: flex;
	flex-wrap: wrap;
}
div#content section#after-service.bridal div#repair div.price div.list div.row:not(:last-child) {
	margin-bottom: 10px;
}
div#content section#after-service.bridal div#repair div.price div.list div.row p.label,
div#content section#after-service.bridal div#repair div.price div.list div.row p.body {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 50%;
	height: 60px;
}
div#content section#after-service.bridal div#repair div.price div.list div.row p.label {
	background-color: #dec3cc;
}
div#content section#after-service.bridal div#repair div.price div.list div.row p.body {
	border: 1px solid #d1d1d1;
	border-left: none;
}
div#content section#after-service.bridal div#repair div.price p.note {
	box-sizing: border-box;
	width: 50%;
	text-align: center;
	margin: 0px 0px 0px auto;
}
div#content section#after-service.bridal div#repair div.menu,
div#content section#after-service.bridal div#repair div.example {
	width: 900px;
	border-bottom: 1px solid #d1d1d1;
	margin: 0px auto 60px auto;
	padding-bottom: 60px;
}
div#content section#after-service.bridal div#repair div.menu h2 {
	text-align: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.25rem;
	line-height: 3rem;
	margin-bottom: 60px;
}
div#content section#after-service.bridal div#repair div.menu h2 span {
	display: inline-block;
}
div#content section#after-service.bridal div#repair div.menu h2 span.emphasis {
	background: url(../images/bridal-after-service-wave.svg) repeat-x left bottom 4px;
	background-size: auto 4px;
}
div#content section#after-service.bridal div#repair div.menu h2 span.strong {
	font-size: 1.875rem;
	margin: 0px 5px;
	padding: 0px 5px;
	background: url(../images/bridal-after-service-background.svg) repeat-x left bottom;
	background-size: auto 30px;
}
div#content section#after-service.bridal div#repair div.menu div.list {
	display: flex;
	flex-wrap: wrap;
}
div#content section#after-service.bridal div#repair div.menu div.list div.row {
	width: 33.33%;
	text-align: center;
}
div#content section#after-service.bridal div#repair div.menu div.list div.row h4 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 50px;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.5rem;
	margin-bottom: 10px;
}
div#content section#after-service.bridal div#repair div.menu div.list div.row p.illust {
	width: 140px;
	height: 140px;
	overflow: hidden;
	margin: 0px auto 10px auto;
	border-radius: 50%;
}
div#content section#after-service.bridal div#repair div.menu div.list div.row p.description {
	font-size: 0.8125rem;
	line-height: 1.375rem;
}
div#content section#after-service.bridal div#repair div.example div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	margin-right: -60px;
}
div#content section#after-service.bridal div#repair div.example div.list div.row {
	box-sizing: border-box;
	position: relative;
	width: calc(25% - 60px);
	min-height: 400px;
	text-align: center;
	border: 3px solid #ebebeb;
	margin-right: 60px;
	padding: 20px 0px;
	border-radius: 5px;
}
div#content section#after-service.bridal div#repair div.example div.list div.row:last-child {
	padding-top: 120px;
}
div#content section#after-service.bridal div#repair div.example div.list div.row:not(:last-child)::before {
	position: absolute;
	width: 55px;
	height: 60px;
	right: -60px;
	top: 170px;
	background: url(../images/bridal-after-service-arrow.svg) no-repeat center;
	background-size: auto 21px;
	content: "";
}
div#content section#after-service.bridal div#repair div.example div.list div.row h4 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 0.9375rem;
	line-height: 1.5rem;
	margin-bottom: 20px;
}
div#content section#after-service.bridal div#repair div.example div.list div.row h4 span {
	font-size: 1.25rem;
}
div#content section#after-service.bridal div#repair div.example div.list div.row:first-child h4 {
	margin-bottom: 80px;
}
div#content section#after-service.bridal div#repair div.example div.list div.row div.list-menu div.row-menu p.illust {
	width: 80px;
	height: 80px;
	overflow: hidden;
	margin: auto;
	border-radius: 50%;
}
div#content section#after-service.bridal div#repair div.example div.list div.row div.list-menu div.row-menu h5 {
	font-size: 0.8125rem;
}
div#content section#after-service.bridal div#repair div.example div.list div.row div.list-menu p.separate {
	height: 50px;
	background: url(../images/bridal-after-service-icon-plus.svg) no-repeat center;
	background-size: auto 10px;
}
div#content section#after-service.bridal div#repair div.example div.list div.row p.headline {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.375rem;
	line-height: 2.25rem;
}
div#content section#after-service.bridal div#repair div.example div.list div.row p.headline span {
	display: inline-block;
	padding: 0px 5px;
	background: url(../images/bridal-after-service-background.svg) repeat-x left bottom;
	background-size: auto 15px;
}
div#content section#after-service.bridal div#repair p.suffix {
	text-align: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1rem;
	line-height: 2.25rem;
}

/* jewelry - after-service
-------------------------------------------------------------------------------- */

div#content section#after-service.jewelry div#care h2,
div#content section#after-service.jewelry div#repair h2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 300px;
	height: 60px;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.125rem;
	color: #ffffff;
	margin: 0px auto 100px auto;
	background-color: #373738;
}
div#content section#after-service.jewelry div#care h2::before,
div#content section#after-service.jewelry div#repair h2::before {
	position: absolute;
	background-color: #ffffff;
	content: "";
	transition: 0.25s background-color ease;
	box-sizing: border-box;
	width: 10px;
	height: 10px;
	left: calc(50% - 5px);
	bottom: -5px;
	background-color: #373738;
	transform: rotate(45deg);
}
div#content section#after-service.jewelry div#care div.inner-care {
	text-align: center;
	padding: 100px 0px;
	background-color: #f8f8fa;
}
div#content section#after-service.jewelry div#care div.list div.row:not(:last-child) {
	margin-bottom: 80px;
}
div#content section#after-service.jewelry div#care div.list div.row h3 {
	width: 300px;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.375rem;
	line-height: 2.25rem;
	border-bottom: 1px solid #d1d1d1;
	margin: 0px auto 40px auto;
	padding-bottom: 20px;
}
div#content section#after-service.jewelry div#repair div.inner-repair {
	width: 900px;
	margin: auto;
	padding-top: 100px;
}
div#content section#after-service.jewelry div#repair div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -40px;
}
div#content section#after-service.jewelry div#repair div.list div.row {
	width: calc(33.33% - 40px);
	border-bottom: 1px solid #d1d1d1;
	margin: 0px 40px 40px 0px;
	padding-bottom: 40px;
}
div#content section#after-service.jewelry div#repair div.list div.row:nth-child(7),
div#content section#after-service.jewelry div#repair div.list div.row:nth-child(8),
div#content section#after-service.jewelry div#repair div.list div.row:nth-child(9) {
	border-bottom: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}
div#content section#after-service.jewelry div#repair div.list div.row h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 50px;
	text-align: center;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.5rem;
	margin-bottom: 10px;
}
div#content section#after-service.jewelry div#repair div.list div.row h3 i {
	font-size: 0.8125rem;
	font-weight: 300;
}
div#content section#after-service.jewelry div#repair div.list div.row p.illust {
	width: 135px;
	height: 135px;
	overflow: hidden;
	margin: 0px auto 10px auto;
	border-radius: 50%;
}
div#content section#after-service.jewelry div#repair div.list div.row p.price {
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.375rem;
	margin-bottom: 20px;
}
div#content section#after-service.jewelry div#repair div.list div.row p.price-free {
	font-size: 1.125rem;
}
div#content section#after-service.jewelry div#repair div.list div.row table.price {
	width: 200px;
	margin: 0px auto 20px auto;
}
div#content section#after-service.jewelry div#repair div.list div.row table.price th,
div#content section#after-service.jewelry div#repair div.list div.row table.price td {
	width: 50%;
	vertical-align: top;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.375rem;
}
div#content section#after-service.jewelry div#repair div.list div.row table.price-01 th,
div#content section#after-service.jewelry div#repair div.list div.row table.price-01 td {
	width: 50%;
}
div#content section#after-service.jewelry div#repair div.list div.row table.price-02 th {
	width: 60%;
}
div#content section#after-service.jewelry div#repair div.list div.row table.price-02 td {
	width: 40%;
}
div#content section#after-service.jewelry div#repair div.list div.row table.price th span {
	display: inline-block;
	font-size: 0.6875rem;
	line-height: 0.75rem;
	transform: translateY(-3px);
}
div#content section#after-service.jewelry div#repair div.list div.row table.price td {
	text-align: right;
}
div#content section#after-service.jewelry div#repair div.list div.row p.description {
	font-size: 0.8125rem;
	line-height: 1.375rem;
}
div#content section#after-service.jewelry div#repair div.list div.row p.description-center {
	text-align: center;
}

/* information
-------------------------------------------------------------------------------- */

div#content section#information div.inner-section {
	width: 700px;
}
div#content section#information div.list article {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	line-height: 1.5rem;
	border-bottom: 1px solid #d1d1d1;
	padding: 25px 20px;
}
div#content section#information div.list article:first-child {
	border-top: 1px solid #d1d1d1;
}
div#content section#information div.list article p.created {
	width: 100px;
	font-size: 0.8125rem;
}
div#content section#information div.list article h3 {
	width: calc(100% - 200px);
	/* font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif; */
	font-size: 0.9375rem;
	margin-right: 20px;
}
div#content section#information div.list article p.read {
	width: 80px;
	text-align: right;
	font-size: 0.6875rem;
}

/* news, couple
-------------------------------------------------------------------------------- */

div#content div.list-news,
div#content div.list-couple {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -20px -20px 0px;
}
div#content div.list-news article,
div#content div.list-couple article {
	border-bottom: 1px solid  #d1d1d1;
	margin: 0px 20px 20px 0px;
	padding-bottom: 10px;
}
div#content div.list-news-two article,
div#content div.list-couple-two article {
	width: calc(50% - 20px);
}
div#content div.list-news-three article,
div#content div.list-couple-three article {
	width: calc(33.33% - 20px);
}
div#content div.list-news article p.image,
div#content div.list-couple article p.image {
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
	padding-bottom: 62.5%;
}
div#content div.list-news article p.image img,
div#content div.list-couple article p.image img {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#content div.list-news article p.created,
div#content div.list-couple article p.created {
	font-size: 0.8125rem;
	line-height: 1rem;
	margin-bottom: 5px;
}
div#content div.list-news article h3,
div#content div.list-couple article h3 {
	text-align: left;
	min-height: 2.5rem;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 0.9375rem;
	line-height: 1.25rem;
}
/* div#content section#news div.inner-section, */
div#content section#couple div.inner-section {
	width: 900px;
}
/* div#content section#news div.inner-section {
	padding-top: 0px;
} */

/* column
-------------------------------------------------------------------------------- */

div#content div.slide-column div.container article {
	width: 314px;
	margin-right: 20px;
}
div#content div.slide-column article p.image,
div#content div.list-column article p.image {
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
	padding-bottom: 62.5%;
}
div#content div.slide-column article p.image {
	box-shadow: 0px 2.5px 5px rgba(0, 0, 0, 0.175);
}
div#content div.slide-column article p.image img,
div#content div.list-column article p.image img {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#content div.slide-column article h3,
div#content div.list-column article h3 {
	text-align: left;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 0.9375rem;
	line-height: 1.5rem;
	margin-bottom: 20px;
}
div#content div.slide-column article div.created-category-term,
div#content div.list-column article div.created-category-term {
	display: flex;
	flex-wrap: wrap;
	color: #7f7f7f;
}
div#content div.slide-column article div.created-category-term p,
div#content div.list-column article div.created-category-term p {
	font-size: 0.8125rem;
	line-height: 1rem;
}
div#content div.slide-column article div.created-category-term p:not(:last-child),
div#content div.list-column article div.created-category-term p:not(:last-child) {
	margin-right: 10px;
}
div#content div.list-column {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -40px 0px;
}
div#content div.list-column article {
	width: calc(50% - 40px);
	border-bottom: 1px solid  #d1d1d1;
	margin: 0px 40px 40px 0px;
	padding-bottom: 10px;
}
/* div#content section#column div.inner-section {
	width: 800px;
} */
div#content section.news-column div.inner-section {
	width: 1160px;
	padding-top: 80px;
}
div#content section.news-column p.label-main {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.125rem;
	margin-bottom: 40px;
}
div#content section.news-column article.common {
	padding-top: 0px;
}
div#content section.news-column article.common div.body p.image-header {
	aspect-ratio: 800 / 470;
	margin-bottom: 50px;
}
div#content section.news-column article.common div.body p.image-header img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
body.single div#content section.news-column header {
	text-align: left;
	margin-bottom: 40px;
}
body.single div#content section.news-column header h1 {
	font-size: 1.75rem;
	line-height: 2.5rem;
	margin: -10px 0px 80px 0px;
}
div#content section.news-column div.column {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
div#content section.news-column div.column div.left {
	width: calc(100% - 360px);
}
div#content section.news-column div.column div.left div.list-common {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -60px 0px;
}
div#content section.news-column div.column div.left div.list-common article {
	width: calc(33.33% - 40px);
	margin: 0px 40px 60px 0px;
}
div#content section.news-column div.column div.right {
	width: 280px;
}
div#content section.news-column div.column div.right div.block:not(:last-child) {
	margin-bottom: 80px;
}
div#content section.news-column div.column div.right div.block p.label {
	line-height: 1rem;
	border-bottom: 1px solid #d1d1d1;
	margin-bottom: 20px;
	padding-bottom: 15px;
}
div#content section.news-column div.column div.right div.block-archive {
	padding: 0px 60px;
}
div#content section.news-column div.column div.right div.block-archive ul li a {
	color: #707070;
	transition: 0.25s color ease;
}
div#content section.news-column div.column div.right div.block-archive ul li a:hover {
	color: #252526;
}
div#content section.news-column div.column div.right div.block-recommend div.list-common article {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	width: auto;
	margin: 0px;
}
div#content section.news-column div.column div.right div.block-recommend:not(:has(div.list-common)) {
	display: none;
}
div#content section.news-column div.column div.right div.block-recommend div.list-common article p.image {
	width: 100px;
	margin-bottom: 0px;
	border-radius: 10px;
}
div#content section.news-column div.column div.right div.block-recommend div.list-common article div.text {
	width: calc(100% - 120px);
}
div#content section.news-column div.column div.right div.block-recommend div.list-common article:not(:last-child) {
	margin-bottom: 20px;
}
div#content section.news-column div.column div.right div.block-category ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -10px -10px 0px;
}
div#content section.news-column div.column div.right div.block-category ul li {
	text-align: center;
	font-size: 0.8125rem;
	line-height: 0.8125rem;
	margin: 0px 10px 10px 0px;
}
div#content section.news-column div.column div.right div.block-category ul li:has(a:empty) {
	display: none;
}
div#content section.news-column div.column div.right div.block-category ul li a {
	display: block;
	min-width: 86.66px;
	color: #707070;
	padding: 5px 10px;
	background-color: #f7f7f7;
	transition: 0.25s background-color ease;
}
div#content section.news-column div.column div.right div.block-category ul li a:hover {
	background-color: #ebebeb;
}
div#content section#column form,
div#content section#couple form {
	margin-bottom: 100px;
}
div#content section#column form div.container-component,
div#content section#couple form div.container-component {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
div#content section#column form div.component,
div#content section#couple form div.component {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 300px;
}
div#content section#column form div.component p.label,
div#content section#couple form div.component p.label {
	width: 90px;
	font-size: 0.8125rem;
}
div#content section#column form div.component select,
div#content section#couple form div.component select {
	width: calc(100% - 90px);
	height: 40px;
	line-height: calc(40px - 2px);
	border: 1px solid #d1d1d1;
	background-color: transparent;
}
/* div#content article.column {
	padding-bottom: 20px;
} */
div#content article.column div.category-term-tag {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	padding-top: 100px;
}
div#content article.column div.category-term-tag p {
	font-size: 0.8125rem;
}
div#content article.column div.category-term-tag p:not(:last-child) {
	margin-right: 10px;
}
div#content section#pick-up-column {
	background-color: #f7f7f7;
}

/* about
-------------------------------------------------------------------------------- */

div#content section#about-concept div.inner-section,
div#content section#about-movie div.inner-section {
	max-width: 1400px;
}
div#content section#about-concept div.list div.row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
div#content section#about-concept div.list div.row:not(:last-child) {
	margin-bottom: 100px;
}
div#content section#about-concept div.list div.row:nth-child(2n) {
	flex-direction: row-reverse;
}
div#content section#about-concept div.list div.row p.image,
div#content section#about-concept div.list div.row div.text h3 span,
div#content section#about-concept div.list div.row div.text div.description {
	opacity: 0;
}
div#content section#about-concept div.list div.row.active p.image,
div#content section#about-concept div.list div.row.active div.text h3 span,
div#content section#about-concept div.list div.row.active div.text div.description {
	opacity: 1;
}
div#content section#about-concept div.list div.row p.image {
	width: calc(50% - 40px);
	transition: 1.5s opacity ease-in;
}
div#content section#about-concept div.list div.row div.text {
	box-sizing: border-box;
	width: calc(50% + 40px);
	padding-top: 80px;
}
div#content section#about-concept div.list div.row:nth-child(2n+1) div.text {
	text-align: left;
	padding-left: 80px;
}
div#content section#about-concept div.list div.row:nth-child(2n) div.text {
	text-align: right;
	padding-right: 80px;
}
div#content section#about-concept div.list div.row div.text h3 {
	position: relative;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 3.125rem;
	line-height: 3.5rem;
	color: #c1bdb8;
	margin-bottom: 40px;
	padding-bottom: 20px;
}
div#content section#about-concept div.list div.row.active div.text h3 span {
	transition: 1.25s opacity 0.75s ease-in;
}
div#content section#about-concept div.list div.row:nth-child(2n+1) div.text h3 {
	margin-left: -40px;
}
div#content section#about-concept div.list div.row:nth-child(2n) div.text h3 {
	margin-right: -40px;
}
div#content section#about-concept div.list div.row div.text h3::before {
	position: absolute;
	width: 0px;
	height: 0px;
	bottom: 0px;
	border-bottom: 1px solid #9a9085;
	content: "";
	transition: 0.75s width 0.5s ease;
}
div#content section#about-concept div.list div.row.active div.text h3::before {
	width: 420px;
}
div#content section#about-concept div.list div.row:nth-child(2n+1) div.text h3::before {
	left: -100px;
}
div#content section#about-concept div.list div.row:nth-child(2n) div.text h3::before {
	right: -100px;
}
div#content section#about-concept div.list div.row div.text div.description {
	transition: 1.25s opacity 1.5s ease-in;
}
div#content section#about-concept div.list div.row div.text div.description p {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1rem;
	line-height: 2.25rem;
}
div#content section#about-concept div.list div.row div.text div.description p:not(:last-child) {
	margin-bottom: 20px;
}
div#content section#about-movie div.banner a {
	display: flex;
	flex-wrap: wrap;
}
div#content section#about-movie div.banner div.video {
	width: calc(100% - 480px);
	overflow: hidden;
}
div#content section#about-movie div.banner div.video video {
	display: block;
	width: 100%;
	height: auto;
}
div#content section#about-movie div.banner div.video p.play {
	display: none;
}
div#content section#about-movie div.banner div.text {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	box-sizing: border-box;
	width: 480px;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	color: #ffffff;
	background-color: #252526;
}
div#content section#about-movie div.banner div.text div.inner-text {
	display: flex;
	flex-wrap: wrap;
	padding: 50px;
}
div#content section#about-movie div.banner div.text h2 {
	font-size: 2rem;
	line-height: 3.125rem;
	margin-bottom: 50px;
}
div#content section#about-movie div.banner div.text p.play {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
div#content section#about-movie div.banner div.text p.play {
	font-size: 1rem;
}
div#content section#about-movie div.banner div.text p.play i {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	width: 60px;
	height: 60px;
	font-size: 1.5rem;
	border: 1px solid #ffffff;
	margin-right: 15px;
	padding-left: 0.2em;
	border-radius: 50%;
	transition: 0.25s color ease, 0.25s background-color ease;
}
div#content section#about-movie div.banner div.text p.play:hover i {
	color: #252526;
	background-color: #ffffff;
}
div#content section#about-company div.inner-section {
	width: 800px;
}
div#content section#about-company div.list-table {
	width: calc(100% - 200px);
	margin: 0px auto 80px auto;
}
div#content section#about-company div.list-table div.row {
	border-bottom-color: #ebebeb;
}
div#content section#about-company div.list-table div.row:first-child {
	border-top: none;
}
div#content section#about-company div.list-table div.row:last-child {
	border-bottom: none;
}
div#content section#about-company div#map-about {
	position: relative;
	height: 400px;
	margin-bottom: 20px;
}
div#content section#about-company div#map-about iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#content section#about-company p.map {
	text-align: center;
	font-size: 0.75rem;
}

/* staff
-------------------------------------------------------------------------------- */

div#content section#staff div.inner-section {
	width: 980px;
}
div#content section#staff div.list-staff {
	display: flex;
	flex-wrap: wrap;
	margin-right: -80px;
}
div#content section#staff div.list-staff div.row {
	width: calc(33.33% - 80px);
	margin: 0px 80px 80px 0px;
}
div#content section#staff div.list-staff div.row div.image-text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 10px;
}
div#content section#staff div.list-staff div.row div.image-text p.image {
	position: relative;
	width: 140px;
	height: 140px;
	overflow: hidden;
	margin-right: 20px;
	border-radius: 50%;
}
div#content section#staff div.list-staff div.row div.image-text p.image img:nth-child(2) {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0;
	transition: 0.125s opacity ease-in;
}
div#content section#staff div.list-staff div.row div.image-text p.image:hover img:nth-child(2) {
	opacity: 1;
}
div#content section#staff div.list-staff div.row div.image-text div.text {
	box-sizing: border-box;
	width: calc(100% - 160px);
}
div#content section#staff div.list-staff div.row div.image-text div.text h3 {
	font-family: TsukuMinPr6-M, "Yu Mincho", YuMincho, serif;
	font-size: 1.25rem;
	line-height: 1.625rem;
	margin-bottom: 10px;
}
div#content section#staff div.list-staff div.row div.image-text div.text h3 span {
	display: block;
}
div#content section#staff div.list-staff div.row div.image-text div.text p.post {
	font-size: 0.6875rem;
	margin-right: -10px;
}
div#content section#staff div.list-staff div.row p.description {
	font-size: 0.8125rem;
	line-height: 1.625rem;
	margin-bottom: 10px;
}
div#content section#staff div.list-staff div.row p.list {
	text-align: right;
	font-size: 0.8125rem;
	color: #9a9085;
}

/* recruit
-------------------------------------------------------------------------------- */

div#content section#recruit-concept div.description p {
	text-align: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1rem;
	line-height: 2.25rem;
}
div#content section#recruit-concept div.description p:not(:last-child) {
	margin-bottom: 20px;
}
div#content section#recruit-guideline {
	background-color: #f7f7f7;
}
div#content section#recruit-guideline div.inner-section {
	width: 700px;
}
div#content section#recruit-guideline div.inner-section:not(:last-child) {
	padding-bottom: 0px;
}
div#content section#recruit-guideline header p.logo {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 25px;
}
div#content section#recruit-guideline header p.logo-tag-heuer img {
	height: 120px;
}
div#content section#recruit-guideline header h2 {
  font-family: source-han-sans-japanese, "Yu Gothic", YuGothic, sans-serif;
	font-size: 1.25rem;
	font-weight: 500;
}
div#content section#recruit-guideline header h2:not(:last-child) {
	margin-bottom: 30px;
}
div#content section#recruit-guideline header p.line,
div#content section#recruit-guideline div.list-table div.row div.body p.line {
	display: flex;
	flex-wrap: wrap;
	font-size: 1.125rem;
	font-weight: 500;
}
div#content section#recruit-guideline header p.line {
	justify-content: center;
}
div#content section#recruit-guideline header p.line a,
div#content section#recruit-guideline div.list-table div.row div.body p.line a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	color: #06c755;
	transition: 0.25s opacity ease;
}
div#content section#recruit-guideline header p.line a:hover,
div#content section#recruit-guideline div.list-table div.row div.body p.line a:hover {
	opacity: 0.625;
}
div#content section#recruit-guideline header p.line i.icon,
div#content section#recruit-guideline div.list-table div.row div.body p.line i.icon {
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 400;
	margin-right: 5px;
	transform: translateY(2px);
}
div#content section#recruit-guideline div.list-table div.row div.body p.line {
	margin-bottom: 10px;
}
div#content section#recruit-guideline div.list-table div.row div.body p.line a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
div#content section#movie div.inner-section {
	width: 800px;
}
div#content section#movie div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px 40px 0px;
}
div#content section#movie div.list div.row {
	width: calc(33.33% - 40px);
	margin: 0px 40px 40px 0px;
}
div#content section#movie div.list div.row div.video-wrapper {
	padding-bottom: 177.77%;
}

/* contact, reserve
-------------------------------------------------------------------------------- */

div#content section.form div.inner-section {
	width: 800px;
	border-top: 1px solid #d1d1d1;
	padding: 60px 50px 100px 50px;
}
div#content section.form div.block div.header {
	margin-bottom: 40px;
}
div#content section.form div.block div.header h2,
div#content section.form div.block p.note {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
}
div#content section.form div.block div.header h2 {
	font-size: 1.125rem;
}
div#content section.form div.block-tel {
	text-align: center;
	margin-bottom: 100px;
}
div#content div.mw_wp_form_preview section.form div.block-tel {
	display: none;
}
div#content section.form div.block-tel div.tel-time-close,
div#content section.form div.block-tel div.tel-time-close p.tel {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
div#content section.form div.block-tel div.tel-time-close {
	margin-bottom: 25px;
}
div#content section.form div.block-tel div.tel-time-close p.label {
	width: 100%;
	margin-bottom: 5px;
}
div#content section.form div.block-tel div.tel-time-close p.label::before {
	display: inline-block;
	width: 13px;
	height: 13px;
	margin-right: 5px;
	background-color: #ebebeb;
	content: "";
	border-radius: 50%;
	transform: translateY(1px);
}
div#content section.form div.block-tel div.tel-time-close p.tel {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	margin-right: 20px;
}
div#content section.form div.block-tel div.tel-time-close p.tel span.label {
	font-feature-settings: normal;
	transform: translateY(3px);
}
div#content section.form div.block-tel div.tel-time-close p.tel span.number {
	font-size: 2rem;
	letter-spacing: 0.075em;
}
div#content section.form div.block-tel div.tel-time-close p.time-close {
	display: inline-block;
	font-size: 0.8125rem;
	transform: translateY(3px);
}
div#content section.form div.block-mail div.header {
	text-align: center;
}
div#content section.form div.block-mail div.header h2 {
	position: relative;
	margin-bottom: 94px;
}
div#content section.form div.block-mail div.header h2 span.button-down {
	bottom: -54px;
}
div#content section.form div.component {
	position: relative;
	margin-bottom: 20px;
}
div#content section.form div.component-last {
	margin-bottom: 60px;
}
div#content section.form div.component p.label {
	font-size: 0.8125rem;
	margin-bottom: 5px;
}
div#content div.mw_wp_form_preview section.form div.component p.label {
	border-bottom: 1px solid #d1d1d1;
}
div#content div.mw_wp_form_preview section.form div.component p.label span.require {
	display: none;
}
div#content section.form div.component div.body {
	min-height: 1.875rem;
}
div#content section.form div.component input[type=text],
div#content section.form div.component input[type=email],
div#content section.form div.component textarea {
	display: block;
	width: 100%;
	max-width: 100%;
}
div#content section.form div.component div.group {
	display: flex;
	flex-wrap: wrap;
}
div#content section.form div.component div.group-date input[name=date-01],
div#content section.form div.component div.group-date input[name=date-02],
div#content section.form div.component div.group-people input[name=people] {
	width: 60px;
}
div#content section.form div.component div.group-date input[name=date-03] {
	width: 100px;
}
div#content section.form div.component div.group-date p.suffix,
div#content section.form div.component div.group-people p.suffix {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 40px;
	height: 50px;
}
div#content div.mw_wp_form_preview section.form div.component div.group-date p.suffix,
div#content div.mw_wp_form_preview section.form div.component div.group-people p.suffix {
	height: auto;
}
div#content section.form div.component div.group-name-furigana {
	margin-right: -10px;
}
div#content section.form div.component div.group-name-furigana input[type=text] {
	width: calc(50% - 10px);
	margin-right: 10px;
}
div#content section.form div.component span.mwform-radio-field {
	margin: 0px 20px 0px 0px;
}
div#content section.form div.component-shop {
	height: 0px;
	overflow: hidden;
}
div#content section.form div.component-shop.visible,
div#content div.mw_wp_form_preview section.form div.component-shop {
	height: auto;
}
div#content section.form div.component-shop div.body span.mwform-radio-field:first-child {
	position: absolute;
	width: 0px;
	left: 0px;
	top: 0px;
	overflow: hidden;
	margin-right: 0px;
}
div#content section.form div.component p.note {
  font-family: source-han-sans-japanese, "Yu Gothic", YuGothic, sans-serif;
	font-size: 0.8125rem;
	line-height: 1.25rem;
	color: #7f7f7f;
	padding: 10px 20px 0px 20px;
}
div#content div.mw_wp_form_preview section.form div.component p.note {
  display: none;
}
div#content section.form div.component span.error {
	position: absolute;
	right: 0px;
	top: 0px;
	font-size: 0.8125rem;
	color: #c00018;
}
div#content section.form div.component div.group span.error ~ span.error {
	display: none;
}
div#content section.form div.agreement {
	position: relative;
	text-align: center;
	font-size: 0.8125rem;
	line-height: 1.375rem;
	margin-bottom: 40px;
}
div#content section.form div.agreement p.description {
	margin-bottom: 10px;
}
div#content div.mw_wp_form_preview section.form div.agreement {
	display: none;
}
div#content section.form div.agreement span.error {
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: -20px;
	font-size: 0.8125rem;
	line-height: 1rem;
	color: #c00018;
}
div#content section.form p.note-tel {
	text-align: center;
	font-size: 0.8125rem;
	line-height: 1.375rem;
	margin-bottom: 40px;
}
div#content div.mw_wp_form_preview section.form p.note-tel {
	display: none;
}
div#content section.form div.action {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
div#content section.form div.action input[type=submit] {
	display: block;
	width: 100%;
}
div#content section.form div.action input[name=submitBack],
div#content section.form div.action input[name=mwform_submitButton-1] {
	width: calc(50%  - 10px);
}
div#content section.form div.action input[name=submitBack] {
	color: #252526;
	background-color: #d1d1d1;
}
div#content section.form div.action input[name=submitBack]:hover {
	background-color: #ebebeb;
}
div#content section.form-alternate div.inner-section {
	border-top: none;
}
div#content section.form-alternate header p.description {
	line-height: 1.75rem;
	margin-bottom: 10px;
}
div#content section.form-alternate header p.sub {
	margin-bottom: 40px;
}
div#content section.form-alternate header p.note:not(:last-child) {
	margin-bottom: 20px;
}
div#content section.form-alternate header p.tel {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	margin-bottom: 60px;
}
div#content section.form-alternate header p.tel span {
	display: block;
}
div#content section.form-alternate header p.tel span.label {
	font-feature-settings: normal;
	transform: translateY(3px);
}
div#content section.form-alternate header p.tel span.number {
	font-size: 2rem;
	letter-spacing: 0.075em;
}

/* sitemap
-------------------------------------------------------------------------------- */

div#content section#sitemap div.inner-section {
	width: 900px;
}
div#content section#sitemap div.column {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -80px 100px 0px;
}
div#content section#sitemap div.column div.row {
	width: calc(33.33% - 80px);
	margin-right: 80px;
}
div#content section#sitemap div.column div.row div.content,
div#content section#sitemap div.column div.row ul {
	padding-left: 20px;
}
div#content section#sitemap div.category:not(:last-child),
div#content section#sitemap div.brand:not(:last-child) {
	margin-bottom: 40px;
}
div#content section#sitemap div.column div.row ul li:not(:last-child) {
	margin-bottom: 5px;
}
div#content section#sitemap h2,
div#content section#sitemap p.headline,
div#content section#sitemap div.category > ul > li,
div#content section#sitemap div.brand > ul > li {
	position: relative;
	padding-left: 20px;
}
div#content section#sitemap h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.25rem;
	border-bottom: 1px solid #252526;
	margin-bottom: 30px;
	padding-bottom: 10px;
}
div#content section#sitemap p.headline {
	font-weight: 500;
	color: #4b4b4b;
}
div#content section#sitemap p.headline:not(:last-child) {
	margin-bottom: 10px;
}
div#content section#sitemap h2::before,
div#content section#sitemap p.headline::before,
div#content section#sitemap div.category > ul > li::before,
div#content section#sitemap div.brand > ul > li::before {
	position: absolute;
	width: 10px;
	height: 10px;
	left: 0px;
	top: 11px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	content: "";
}
div#content section#sitemap h2::before {
	background-image: url(../images/arrow-sitemap-01.svg);
}
div#content section#sitemap p.headline::before {
	background-image: url(../images/arrow-sitemap-02.svg);
}
div#content section#sitemap div.category > ul > li::before,
div#content section#sitemap div.brand > ul > li::before {
	background-image: url(../images/arrow-sitemap-03.svg);
}
div#content section#sitemap div.category p.headline::before,
div#content section#sitemap div.brand p.headline::before,
div#content section#sitemap div.brand > ul > li.series::before {
	transform: rotate(90deg);
}
div#content section#sitemap div.brand ul.nest {
	margin-bottom: 20px;
	padding-top: 5px;
}
div#content section#sitemap div.brand ul.nest li {
	font-size: 0.8125rem;
	color: #7f7f7f;
}
div#content section#sitemap div.misc {
	border-top: 1px solid #252526;
	padding-top: 40px;
}
div#content section#sitemap div.misc p.headline::before {
	background-image: url(../images/arrow-sitemap-01.svg);
}

/* privacy-policy
-------------------------------------------------------------------------------- */

div#content section#privacy-policy div.inner-section {
	width: 800px;
	border-top: 1px solid #d1d1d1;
	padding: 60px 50px 100px 50px;
}
div#content section#privacy-policy h2 {
	text-align: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.125rem;
	margin-bottom: 60px;
}
div#content section#privacy-policy div.block:not(:last-child) {
	margin-bottom: 60px;
}
div#content section#privacy-policy div.block h3 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 0.9375rem;
	margin-bottom: 20px;
}
div#content section#privacy-policy div.block h3 span {
	display: inline-block;
	width: 25px;
}
div#content section#privacy-policy div.block p {
	font-size: 0.8125rem;
	line-height: 1.625rem;
	padding: 0px 25px;
}
div#content section#privacy-policy div.block p.padding-left {
	padding-left: 50px;
}
div#content section#privacy-policy div.block p a.underline {
	color: #9a9085;
}

/* lady-datejust
-------------------------------------------------------------------------------- */

div#content.lady-datejust img.small {
	display: none;
}
div#content.lady-datejust div#title,
div#content.lady-datejust article.common header {
	display: none;
}
div#content.lady-datejust article.common {
	width: auto;
	padding-top: 0px;
}
div#content.lady-datejust div.container {
	width: 1280px;
	margin: auto;
}
div#content.lady-datejust p.image-header:not(:last-child),
div#content.lady-datejust p.image-wide:not(:last-child),
div#content.lady-datejust p.image-narrow:not(:last-child),
div#content.lady-datejust div.image-text:not(:last-child),
div#content.lady-datejust div.segment:not(:last-child) {
	margin-bottom: 80px;
}
div#content.lady-datejust p.image-header img,
div#content.lady-datejust p.image-wide img,
div#content.lady-datejust p.image-narrow img {
	width: 100%;
	height: auto;
}
div#content.lady-datejust div.segment {
	width: 600px;
	margin: auto;
}
div#content.lady-datejust div.segment div.header {
	text-align: center;
	margin-bottom: 20px;
}
div#content.lady-datejust div.segment div.header p.sub {
	font-weight: 700;
}
div#content.lady-datejust div.segment div.header h2,
div#content.lady-datejust div.image-text div.text h3 {
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 2.125rem;
}
div#content.lady-datejust div.segment p.description:not(:last-child) {
	margin-bottom: 20px;
}
div#content.lady-datejust div.segment p.button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
div#content.lady-datejust div.segment p.button a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 160px;
	height: 40px;
	color: #ffffff;
	border: 1px solid #127749;
	background-color: #127749;
	border-radius: 20px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
div#content.lady-datejust div.segment p.button a:hover {
	color: #127749;
	background-color: transparent;
}
div#content.lady-datejust p.image-wide {
	width: 1200px;
	margin: auto;
}
div#content.lady-datejust p.image-narrow {
	width: 800px;
	margin: auto;
}
div#content.lady-datejust p.image-youtube a {
	display: block;
	position: relative;
}
div#content.lady-datejust p.image-youtube i.icon {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: absolute;
	width: 50px;
	height: 50px;
	left: calc(50% - 25px);
	top: calc(50% - 25px);
	font-size: 1.25rem;
	color: #127749;
	padding-left: 5px;
	background-color: #ffffff;
	border-radius: 50%;
	transition: 0.25s color ease, 0.25s background-color ease;
}
div#content.lady-datejust p.image-youtube a:hover i.icon {
	color: #ffffff;
	background-color: #127749;
}
div#content.lady-datejust div.image-text {
	display: flex;
	flex-wrap: wrap;
}
div#content.lady-datejust div.image-text.reverse {
	flex-direction: row-reverse;
}
div#content.lady-datejust div.image-text p.image,
div#content.lady-datejust div.image-text div.text {
	width: 50%;
}
div#content.lady-datejust div.image-text p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#content.lady-datejust div.image-text div.text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	color: #ffffff;
	background-color: #252526;
}
div#content.lady-datejust div.image-text div.text div.inner-text {
	padding: 0px 80px;
}
div#content.lady-datejust div.image-text div.text h3 {
	margin-bottom: 10px;
}
div#content.lady-datejust div.image-text-alternate {
	width: calc(100% - 80px);
	margin: auto;
}
div#content.lady-datejust div.image-text-alternate div.text {
	color: #252526;
	background-color: transparent;
}
div#content.lady-datejust article.common div.category-term-tag {
	width: 800px;
	margin: auto;
}

/* tudorboutique-kanazawa
-------------------------------------------------------------------------------- */

body.tudorboutique-kanazawa div#content section#news-instagram {
	border-bottom: 1px solid #ebebeb;
}
body.tudorboutique-kanazawa div#content section#news-instagram div.content {
	justify-content: center;
}



/* --------------------------------------------------------------------------------
content-bottom
-------------------------------------------------------------------------------- */

div#content-bottom {
	text-align: center;
}
div#content-bottom a {
	transition: 0.25s color ease;
}
div#content-bottom a:hover {
	color: #a0a0a0;
}
div#content-bottom div.misc {
	padding: 80px 0px;
	background-color: #ffffff;
}
div#content-bottom div.misc div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
div#content-bottom div.misc div.list div.row {
	width: 320px;
	text-align: center;
	font-size: 0.8125rem;
	line-height: 1.375rem;
}
div#content-bottom div.misc div.list div.row:not(:last-child) {
	margin-right: 40px;
}
div#content-bottom div.misc div.list div.row p.icon {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 20px;
}
div#content-bottom div.misc div.list div.row p.icon img {
	width: 58px;
}
div#content-bottom div.misc div.list div.row h4 {
	font-size: 0.9375rem;
	font-weight: 500;
	margin-bottom: 20px;
}
div#content-bottom div.misc div.list div.row p {
	color: #707070;
}
div#content-bottom div.misc div.list div.row p.description:not(:last-child) {
	margin-bottom: 20px;
}
div#content-bottom div.misc div.list div.row p.more {
	font-weight: 500;
}
/* div#content-bottom div.banner,
div#content-bottom div.category {
	text-align: center;
}
div#content-bottom div.banner {
	background-color: #f7f7f7;
}
body.home div#content-bottom div.banner {
	background-color: transparent;
}
div#content-bottom div.banner div.inner-banner,
div#content-bottom div.category div.inner-category {
	width: 800px;
	margin: auto;
	padding: 60px 0px;
}
div#content-bottom div.banner div.list,
div#content-bottom div.category div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0px -10px;
}
div#content-bottom div.banner div.list p.row,
div#content-bottom div.category div.list div.row {
	width: calc(50% - 20px);
	margin: 0px 10px;
}
div#content-bottom div.banner div.list p.row img {
	width: 100%;
	height: auto;
	box-shadow: 0px 2.5px 5px rgba(0, 0, 0, 0.075);
	transition: 0.25s transform ease;
}
div#content-bottom div.banner div.list p.row a:hover img {
	transform: scale(1.0375);
}
div#content-bottom div.banner p.category-top {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	padding-top: 40px;
}
div#content-bottom div.banner p.category-top a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.25em;
} */
/* div#content-bottom div.category h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
	margin-bottom: 40px;
}
div#content-bottom div.category div.list div.row {
	overflow: hidden;
	color: #ffffff;
}
div#content-bottom div.category div.list div.row a {
	display: block;
	position: relative;
	color: #ffffff;
	padding-bottom: 40%;
}
div#content-bottom div.category div.list div.row p.image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: 0.25s transform ease;
}
div#content-bottom div.category div.list div.row a:hover p.image {
	transform: scale(1.0375);
}
div#content-bottom div.category div.list div.row-watch p.image {
	background-image: url(../images/category-image-01-alternate.jpg);
}
div#content-bottom div.category div.list div.row-bridal p.image {
	background-image: url(../images/category-image-02-alternate.jpg);
}
div#content-bottom div.category div.list div.row-jewelry p.image {
	background-image: url(../images/category-image-03-alternate.jpg);
} */
/* div#content-bottom div.category div.list div.row p.image::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: rgba(0, 0, 0, 0.5);
	content: "";
	opacity: 0.5;
	transition: 0.25s opacity ease;
}
div#content-bottom div.category div.list div.row a:hover p.image::before {
	opacity: 1;
}
div#content-bottom div.category div.list div.row div.text {
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: 20%;
	text-align: center;
}
div#content-bottom div.category div.list div.row div.text h3 {
	position: relative;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
}
div#content-bottom div.category div.list div.row div.text h3::before,
div#content-bottom div.category div.list div.row div.text h3::after {
	position: absolute;
	height: 0px;
	border-bottom: 1px solid #ffffff;
	content: "";
} */
/* div#content-bottom div.category div.list div.row div.text h3::before {
	width: 35px;
	left: calc(50% + 80px);
	top: calc(50% + 2px);
	transition: 0.25s width ease;
}
div#content-bottom div.category div.list div.row a:hover div.text h3::before {
	width: 60px;
}
div#content-bottom div.category div.list div.row div.text h3::after {
	width: 10px;
	left: calc(50% + 106px);
	top: calc(50% - 2px);
	transition: 0.25s left ease;
	transform: rotate(45deg);
}
div#content-bottom div.category div.list div.row a:hover div.text h3::after {
	left: calc(50% + 131px);
}
div#content-bottom div.category div.list div.row div.text p.sub {
	font-size: 0.8125rem;
} */
div#content-bottom div.contact {
	background-color: #f7f7f7;
}
div#content-bottom div.contact div.inner-contact {
	width: 1060px;
	margin: auto;
	padding: 100px 0px;
}
div#content-bottom div.contact div.header {
	margin-bottom: 40px;
}
div#content-bottom div.contact div.header h2 {
	font-size: 1.25rem;
}
div#content-bottom div.contact div.header p.sub {
	font-size: 0.75rem;
}
div#content-bottom div.contact h3 {
	font-size: 0.875rem;
	margin-bottom: 20px;
}
div#content-bottom div.contact div.tel-time-close,
div#content-bottom div.contact div.tel-time-close p.tel {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
div#content-bottom div.contact div.tel-time-close {
	border-bottom: 1px solid #a0a0a0;
	margin-bottom: 30px;
	padding-bottom: 30px;
}
div#content-bottom div.contact div.tel-time-close p.tel {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	margin-right: 20px;
}
div#content-bottom div.contact div.tel-time-close p.tel span.label {
	font-feature-settings: normal;
	transform: translateY(3px);
}
div#content-bottom div.contact div.tel-time-close p.tel span.number {
	font-size: 2rem;
	letter-spacing: 0.075em;
}
div#content-bottom div.contact div.tel-time-close p.time-close {
	display: inline-block;
	font-size: 0.8125rem;
	transform: translateY(3px);
}
div#content-bottom div.contact div.tel-time-close p.note {
	padding-top: 10px;
}
div#content-bottom div.contact div.tel-time-close div.line {
	width: 100%;
	padding-top: 15px;
}



/* --------------------------------------------------------------------------------
modal
-------------------------------------------------------------------------------- */

div#modal {
	box-sizing: border-box;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
  overflow: auto;
	z-index: 9999;
	pointer-events: none;
	padding: 40px 0px;
	opacity: 0;
	transition: 0.25s opacity ease;
	-webkit-overflow-scrolling: touch;
}
body.admin-bar div#modal {
	padding-top: 72px;
}
div#modal.active {
	pointer-events: auto;
	opacity: 1;
}
div#modal::before {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: rgba(37, 37, 38, 0.875);
	content: "";
}
div#modal div.inner-modal {
	position: relative;
	width: 980px;
	margin: auto;
	background-color: #ffffff;
}
div#modal div.inner-modal p.button-close {
	position: absolute;
	width: 40px;
	height: 40px;
	right: 40px;
	top: 40px;
	z-index: 100;
	cursor: pointer;
}
div#modal div.inner-modal p.button-close::before,
div#modal div.inner-modal p.button-close::after {
	position: absolute;
	width: 40px;
	height: 0px;
	right: 0px;
	top: 50%;
	border-bottom: 1px solid #252526;
	content: "";
}
div#modal div.inner-modal p.button-close::before {
	transform: rotate(45deg);
}
div#modal div.inner-modal p.button-close::after {
	transform: rotate(-45deg);
}
div#modal section {
	display: none;
}
div#modal section.active {
	display: block;
}
div#modal div.footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 40px 0px;
	background-color: #7f7f7f;
}
div#modal div.footer p.button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 30px;
	font-size: 0.8125rem;
	line-height: 1rem;
	cursor: pointer;
	padding: 0px 30px;
	background-color: #ffffff;
	border-radius: 15px;
	transition: 0.25s all ease;
}
div#modal div.footer p.button:hover {
	color: #ffffff;
	background-color: #252526;
}

/* watch - service
-------------------------------------------------------------------------------- */

div#modal section.service div.inner-section {
	padding: 100px 0px;
}
div#modal section.service header {
	text-align: center;
	margin-bottom: 80px;
}
div#modal section.service header h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.625rem;
	line-height: 2.25rem;
	color: #9a9085;
}
div#modal section.service header h2 span {
	font-size: 1.25rem;
}
div#modal section.service div.summary {
	text-align: center;
	margin-bottom: 60px;
}
div#modal section.service div.summary p.description {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
}
div#modal section#service-01 div.inner-section {
	padding: 100px 60px;
}
div#modal section#service-01 div.example,
div#modal section#service-01 div.require {
	box-sizing: border-box;
	margin-bottom: 80px;
}
div#modal section#service-01 div.example {
	padding: 60px;
	background-color: #f7f7f7;
}
div#modal section#service-01 div.example h3,
div#modal section#service-01 div.require h3 {
	text-align: center;
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 40px;
}
div#modal section#service-01 div.example div.product {
	background-color: #ffffff;
	padding: 10px;
}
div#modal section#service-01 div.example div.product div.image-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
div#modal section#service-01 div.example div.product p.image {
	margin-right: 40px;
}
div#modal section#service-01 div.example div.product p.image img {
	width: auto;
	height: 180px;
}
div#modal section#service-01 div.example div.product div.text h4 {
	font-size: 0.8125rem;
	margin-bottom: 10px;
}
div#modal section#service-01 div.example div.product div.text p.price span.label {
	display: inline-block;
	font-size: 0.8125rem;
	margin-right: 10px;
}
div#modal section#service-01 div.example div.product div.text p.price span.label i {
	font-size: 0.6875rem;
}
div#modal section#service-01 div.example div.product div.text p.price span.body {
	font-size: 0.9375rem;
	font-weight: 700;
}
div#modal section#service-01 div.example p.arrow {
	height: 64px;
	background: url(../images/watch-service-arrow.svg) no-repeat center;
	background-size: auto 24px;
}
div#modal section#service-01 div.example div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}
div#modal section#service-01 div.example div.list div.row {
	width: calc(50% - 30px);
	background-color: #ffffff;
}
div#modal section#service-01 div.example div.list div.row h4 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 40px;
	font-size: 0.8125rem;
	font-weight: 700;
	color: #ffffff;
	background-color: #7f7f7f;
}
div#modal section#service-01 div.example div.list div.row div.detail {
	padding: 0px 40px;
}
div#modal section#service-01 div.example div.list div.row div.detail div.price {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0px;
}
div#modal section#service-01 div.example div.list div.row div.detail div.price:not(:last-child) {
	border-bottom: 1px solid #d1d1d1;
}
div#modal section#service-01 div.example div.list div.row div.detail div.price p.label {
	font-size: 0.8125rem;
	font-weight: 700;
}
div#modal section#service-01 div.example div.list div.row div.detail div.price p.label span {
	font-size: 0.6875rem;
	font-weight: 300;
}
div#modal section#service-01 div.example div.list div.row div.detail div.price p.body {
	text-align: right;
	font-weight: 700;
}
div#modal section#service-01 div.example div.list p.separate {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 60px;
	height: 60px;
	left: calc(50% - 30px);
	top: calc(50% - 30px);
	font-size: 0.8125rem;
}
div#modal section#service-01 div.require {
	border-bottom: 1px solid #d1d1d1;
	padding: 0px 60px 80px 60px;
}
div#modal section#service-01 div.require div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 40px;
}
div#modal section#service-01 div.require div.list div.row {
	width: calc(50% - 30px);
}
div#modal section#service-01 div.require div.list div.row h4 {
	position: relative;
	font-size: 0.9375rem;
	border-bottom: 1px solid #d1d1d1;
	margin-bottom: 10px;
	padding: 0px 0px 10px 15px;
}
div#modal section#service-01 div.require div.list div.row h4::before {
	position: absolute;
	width: 10px;
	height: 10px;
	left: 0px;
	top: 11px;
	background-color: #252526;
	border-radius: 50%;
	content: "";
}
div#modal section#service-01 div.require div.list div.row ul li.separate {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}
div#modal section#service-01 div.require div.list div.row ul li.separate span {
	display: block;
	position: relative;
}
div#modal section#service-01 div.require div.list div.row ul li.separate span.main {
	width: 110px;
}
div#modal section#service-01 div.require div.list div.row ul li.separate span.sub {
	width: calc(100% - 130px);
	font-size: 0.8125rem;
	font-weight: 200;
	line-height: 1.5rem;
	padding-top: 3px;
}
div#modal section#service-01 div.require div.list div.row ul li.separate span.sub::before {
	position: absolute;
	width: 25px;
	height: 0px;
	left: -30px;
	top: 15px;
	border-bottom: 1px dotted #252526;
	content: "";
}
div#modal section#service-01 div.require p.note {
	text-align: center;
}
div#modal section#service-01 div.simulation-web-credit {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0px 60px;
}
div#modal section#service-01 div.simulation-web-credit div.simulation,
div#modal section#service-01 div.simulation-web-credit div.web-credit {
	box-sizing: border-box;
	width: calc(50% - 30px);
}
div#modal section#service-01 div.simulation-web-credit h3 {
	position: relative;
	text-align: center;
	font-size: 0.9375rem;
	font-weight: 700;
	margin-bottom: 62px;
}
div#modal section#service-01 div.simulation-web-credit h3::before {
	position: absolute;
	width: 12px;
	height: 12px;
	left: calc(50% - 6.5px);
	bottom: -22px;
	background: url(../images/arrow-down-02.svg) no-repeat center;
	background-size: auto 100%;
	content: "";
}
div#modal section#service-01 div.simulation-web-credit p.icon {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 20px;
}
div#modal section#service-01 div.simulation-web-credit p.icon img {
	width: auto;
	height: 74px;
}
div#modal section#service-01 div.simulation-web-credit p.description {
	font-size: 0.8125rem;
	line-height: 1.5rem;
	margin-bottom: 20px;
}
div#modal section#service-01 div.simulation-web-credit p.banner img {
	width: 100%;
	height: auto;
}
div#modal section#service-02 div.guarantee,
div#modal section#service-04 div.case {
	background-color: #ebebeb;
}
div#modal section#service-02 div.guarantee {
	padding: 60px 240px 100px 240px;
}
div#modal section#service-02 h3 {
	text-align: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.125rem;
	margin-bottom: 40px;
}
div#modal section#service-02 div.list div.row:not(:last-child) {
	margin-bottom: 10px;
}
div#modal section#service-02 div.list div.row h4 {
	position: relative;
	text-align: center;
	font-size: 0.9375rem;
	font-weight: 500;
	cursor: pointer;
	padding: 10px 40px;
	background-color: #ffffff;
}
div#modal section#service-02 div.list div.row h4 span {
	position: absolute;
	width: 15px;
	height: 15px;
	right: 20px;
	top: calc(50% - 7.5px);
}
div#modal section#service-02 div.list div.row h4 span::before,
div#modal section#service-02 div.list div.row h4 span::after {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	top: calc(50% - 0.5px);
	border-bottom: 1px solid #252526;
	content: "";
}
div#modal section#service-02 div.list div.row h4 span::after {
	opacity: 1;
	transition: 0.25s opacity ease;
	transform: rotate(90deg);
}
div#modal section#service-02 div.list div.row.open h4 span::after {
	opacity: 0;
}
div#modal section#service-02 div.list div.row div.body {
	display: none;
	text-align: center;
	font-size: 0.8125rem;
	line-height: 1.375rem;
}
div#modal section#service-02 div.list div.row div.body div.inner-body {
	position: relative;
	padding: 40px 0px 50px 0px;
}
div#modal section#service-02 div.list div.row div.body h5 {
	font-size: 0.9375rem;
	font-weight: 500;
}
div#modal section#service-02 div.list div.row div.body h5:not(:last-child) {
	margin-bottom: 20px;
}
div#modal section#service-02 div.list div.row div.body h5 span {
	font-size: 0.8125rem;
	font-weight: 300;
}
div#modal section#service-03 div.inner-section {
	padding: 100px 60px 40px 60px;
}
div#modal section#service-03 div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;
}
div#modal section#service-03 div.list div.row {
	width: calc(33.33% - 10px);
	text-align: center;
	margin: 0px 10px 40px 0px;
}
div#modal section#service-03 div.list div.row div.headline-illust {
	margin-bottom: 10px;
	padding-top: 10px;
	background-color: #f7f7f7;
}
div#modal section#service-03 div.list div.row div.headline-illust h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 60px;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5rem;
}
div#modal section#service-03 div.list div.row div.headline-illust p.illust img {
	width: 100%;
	height: auto;
}
div#modal section#service-03 div.list div.row p.description {
	font-size: 0.8125rem;
	line-height: 1.375rem;
}
div#modal section#service-04 div.case {
	padding: 60px 120px 100px 120px;
}
div#modal section#service-04 h3 {
	text-align: center;
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 40px;
}
div#modal section#service-04 div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
div#modal section#service-04 div.list div.row {
	width: calc(50% - 30px);
}
div#modal section#service-04 div.list div.row:not(:last-child) {
	margin-bottom: 60px;
}
div#modal section#service-04 div.list div.row p.diagram {
	margin-bottom: 10px;
}
div#modal section#service-04 div.list div.row p.diagram img {
	width: 100%;
	height: auto;
}
div#modal section#service-04 div.list div.row p.description {
	font-size: 0.8125rem;
	line-height: 1.375rem;
}

/* bridal - propose-plan
-------------------------------------------------------------------------------- */

div#modal:has(section.propose-plan) div.inner-modal {
	width: calc(100% - 80px);
	max-width: 1366px;
}
div#modal section.propose-plan div.column {
	display: flex;
	flex-wrap: wrap;
}
div#modal section.propose-plan div.column div.left {
	position: relative;
	width: 670px;
}
div#modal section.propose-plan div.column div.left h3 {
	position: absolute;
	left: 60px;
	top: 60px;
	z-index: 1;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.75rem;
	color: #9a8269;
}
div#modal section.propose-plan div.column div.left h3 span {
	font-size: 2.125rem;
}
div#modal section.propose-plan div.column div.left p.image {
	height: 100%;
}
div#modal section.propose-plan div.column div.left p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#modal section.propose-plan div.column div.right {
	width: calc(100% - 670px);
	padding: 120px 80px 80px 80px;
}
div#modal section.propose-plan div.column div.right div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
div#modal section.propose-plan div.column div.right div.list div.row h4 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	height: 75px;
	color: #9a8269;
	margin-bottom: 20px;
	padding: 15px 10px;
	background-color: #faf5f0;
	border-radius: 10px;
}
div#modal section.propose-plan div.column div.right div.list div.row h4::before {
	position: absolute;
	width: 0px;
	height: calc(100% - 30px);
	left: 85px;
	top: 15px;
	border-right: 1px solid #e0dad4;
	content: "";
}
div#modal section.propose-plan div.column div.right div.list div.row h4 span {
	display: block;
}
div#modal section.propose-plan div.column div.right div.list div.row h4 span.sub {
	width: 70px;
	text-align: center;
	font-size: 0.75rem;
	font-weight: 400;
}
div#modal section.propose-plan div.column div.right div.list div.row h4 span.main {
	width: calc(100% - 70px);
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.125rem;
	line-height: 1.5rem;
	padding-left: 25px;
	transform: translateY(-2px);
}
div#modal section.propose-plan div.column div.right div.list div.row p:where(.description, .period) {
	padding: 0px 10px;
}
div#modal section.propose-plan div.column div.right div.list div.row p.description {
	line-height: 1.5rem;
}
div#modal section.propose-plan div.column div.right div.list div.row p.description:not(:last-child) {
	margin-bottom: 15px;
}
div#modal section.propose-plan div.column div.right div.list div.row p.period {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
div#modal section.propose-plan div.column div.right div.summary {
	border-bottom: 1px solid #ebebeb;
	margin-bottom: 60px;
	padding-bottom: 60px;
}
div#modal section.propose-plan div.column div.right div.summary h3 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.375rem;
	line-height: 2rem;
	color: #9a8269;
	margin-bottom: 40px;
}
div#modal section.propose-plan div.column div.right div.article article {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: auto;
	margin: 0px;
}
div#modal section.propose-plan div.column div.right div.article article p.image {
	aspect-ratio: 1;
	width: 100px;
	margin-bottom: 0px;
	border-radius: 10px;
	overflow: hidden;
}
div#modal section.propose-plan div.column div.right div.article article p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: 0.375s transform ease;
}
div#modal section.propose-plan div.column div.right div.article article p.image a:hover img {
	transform: scale(1.0375);
}
div#content div.list-common article h3 {
	text-align: left;
	font-size: 0.9375rem;
	line-height: 1.5rem;
	margin-bottom: 20px;
}
div#modal section.propose-plan div.column div.right div.article article div.text {
	width: calc(100% - 120px);
}
div#modal section.propose-plan div.column div.right div.article article div.text h3 {
	text-align: left;
	font-size: 0.9375rem;
	line-height: 1.5rem;
	margin-bottom: 20px;
}

/* bridal - pearl
-------------------------------------------------------------------------------- */

/* div#modal section#iki-pearl div.inner-section {
	padding: 100px 160px;
}
div#modal section#iki-pearl header {
	text-align: center;
	margin-bottom: 40px;
}
div#modal section#iki-pearl header h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.625rem;
}
div#modal section#iki-pearl div.summary {
	text-align: center;
	margin-bottom: 60px;
}
div#modal section#iki-pearl div.summary p.image {
	margin-bottom: 80px;
}
div#modal section#iki-pearl div.summary p.description {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1rem;
	line-height: 2.25rem;
}
div#modal section#iki-pearl div.detail div.list div.row {
	border-top: 1px solid #d1d1d1;
	padding: 60px 0px;
}
div#modal section#iki-pearl div.detail div.list div.row h3 {
	text-align: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.25rem;
	color: #9a9085;
	margin-bottom: 20px;
}
div#modal section#iki-pearl div.detail div.list div.row div.image-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
div#modal section#iki-pearl div.detail div.list div.row div.image-text p.image,
div#modal section#iki-pearl div.detail div.list div.row div.image-text div.text {
	width: calc(50% - 20px);
}
div#modal section#iki-pearl div.detail div.list div.row div.point {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}
div#modal section#iki-pearl div.detail div.list div.row div.point h4 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 240px;
	height: 60px;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 0.9375rem;
	background-color: #ede9e5;
}
div#modal section#iki-pearl div.detail div.list div.row div.point h4::before {
	position: absolute;
	background-color: #ffffff;
	content: "";
	transition: 0.25s background-color ease;
	box-sizing: border-box;
	width: 10px;
	height: 10px;
	right: -5px;
	top: calc(50% - 5px);
	background-color: #ede9e5;
	transform: rotate(45deg);
	content: "";
}
div#modal section#iki-pearl div.detail div.list div.row div.point ul {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% - 280px);
}
div#modal section#iki-pearl div.detail div.list div.row div.point ul li {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 33.33%;
	height: 45px;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 0.8125rem;
	border-right: 1px solid #d1d1d1;
}
div#modal section#iki-pearl div.detail div.list div.row div.point ul li:nth-child(3n+1) {
	border-left: 1px solid #d1d1d1;
}
div#modal section#iki-pearl div.detail div.list div.row div.point ul li:nth-child(1),
div#modal section#iki-pearl div.detail div.list div.row div.point ul li:nth-child(2),
div#modal section#iki-pearl div.detail div.list div.row div.point ul li:nth-child(3) {
	border-bottom: 1px solid #d1d1d1;
}
div#modal section#iki-pearl p.button {
	text-align: center;
}
div#modal section#iki-pearl p.button a {
	height: 45px;
} */

/* about
-------------------------------------------------------------------------------- */

body.about div#modal {
	padding: 0px;
}
body.about div#modal div.inner-modal p.button-close {
	position: fixed;
	width: 40px;
	height: 40px;
	z-index: 10;
}
body.about div#modal div.inner-modal p.button-close::before,
body.about div#modal div.inner-modal p.button-close::after {
	width: 40px;
	right: 0px;
	top: 50%;
	border-bottom-color: #ffffff;
}
div#modal section#movie div.inner-section {
	width: auto;
	background-color: transparent;
}
div#modal section#movie div.content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#modal section#movie div.video {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
}
div#modal section#movie div.video iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}

/* privacy-policy
-------------------------------------------------------------------------------- */

div#modal section#partner div.inner-section {
	padding: 100px 140px;
}
div#modal section#partner header {
	text-align: center;
	margin-bottom: 80px;
}
div#modal section#partner header h2 {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.625rem;
	color: #9a9085;
}
div#modal section#partner div.content div.list {
	margin-bottom: 40px;
}
div#modal section#partner div.content div.list div.row {
	display: flex;
	flex-wrap: wrap;
}
div#modal section#partner div.content div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
div#modal section#partner div.content div.list div.row p.company {
	width: 240px;
	font-weight: 500;
}
div#modal section#partner div.content div.list div.row p.shop {
	width: calc(100% - 240px);
	font-size: 0.8125rem;
}



/* --------------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------- */

footer#footer {
	position: relative;
	color: #ffffff;
	padding-bottom: 40px;
	background-color: #252526;
}
footer#footer a {
	transition: 0.25s color ease;
}
footer#footer a:hover {
	color: #ffffff;
}
footer#footer div#trigger-footer {
	position: absolute;
	top: 0px;
}
footer#footer p#button-page-top {
	position: fixed;
	width: 40px;
	height: 40px;
	right: 20px;
	bottom: 20px;
	z-index: 5;
	pointer-events: none;
	opacity: 0;
	transition: 0.25s opacity ease;
}
footer#footer p#button-page-top.active {
	pointer-events: auto;
	opacity: 1;
}
footer#footer.visible p#button-page-top {
	position: absolute;
	top: -60px;
	bottom: auto;
	pointer-events: none;
	opacity: 0;
}
footer#footer p#button-page-top a {
	display: block;
	height: 100%;
	background: #252526 url(../images/arrow-page-top.svg) no-repeat center;
	background-size: auto 9px;
	border-radius: 50%;
	transition: 0.25s background-color ease;
}
footer#footer p#button-page-top a:hover {
	background-color: #7f7f7f;
}
footer#footer nav#navi-footer {
	margin-bottom: 140px;
	background-color: #4b4b4b;
}
footer#footer nav#navi-footer div.inner-navi-footer,
footer#footer div.misc {
	width: 980px;
}
footer#footer nav#navi-footer div.inner-navi-footer {
	width: 800px;
	margin: auto;
	padding: 80px 0px;
}
/* footer#footer nav#navi-footer div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -100px;
} */
/* footer#footer nav#navi-footer div.list div.row {
	width: 25%;
} */
footer#footer nav#navi-footer div.list div.row:not(:last-child) {
	margin-bottom: 50px;
}
footer#footer nav#navi-footer div.list div.row p.headline {
	text-align: center;
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.25rem;
}
footer#footer nav#navi-footer div.list div.row p.headline:not(:last-child) {
	margin-bottom: 10px;
}
footer#footer nav#navi-footer div.list div.row ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0px -10px;
}
footer#footer nav#navi-footer div.list div.row ul li {
	font-weight: 200;
	color: #d1d1d1;
	letter-spacing: 0.075em;
	margin: 0px 10px;
}
footer#footer nav#navi-footer div.list div.row ul li.break {
	width: 100%;
	margin: 0px;
}
footer#footer nav#navi-footer div.list div.row div.banner-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding-top: 20px;
}
footer#footer nav#navi-footer div.list div.row p.banner:not(:last-child),
footer#footer nav#navi-footer div.list div.row p.banner-tudor-kanazawa:not(:last-child) {
	margin-right: 40px;
}
footer#footer nav#navi-footer div.list div.row p.banner a,
footer#footer nav#navi-footer div.list div.row p.banner-tudor-kanazawa a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 90px;
	text-align: center;
	color: #ffffff;
	background-color: #969696;
	border-radius: 5px;
	transition: 0.25s background-color ease;
}
footer#footer nav#navi-footer div.list div.row p.banner a:hover,
footer#footer nav#navi-footer div.list div.row p.banner-tudor-kanazawa a:hover {
	background-color: #808080;
}
footer#footer nav#navi-footer div.list div.row p.banner span,
footer#footer nav#navi-footer div.list div.row p.banner i {
	display: block;
}
footer#footer nav#navi-footer div.list div.row p.banner i:nth-child(1) {
	font-family: TelopMinProN-D, "Yu Mincho", YuMincho, serif;
	font-size: 1.25rem;
}
footer#footer nav#navi-footer div.list div.row p.banner i:nth-child(2) {
	font-size: 0.8125rem;
	line-height: 1.375rem;
}
footer#footer div.information {
	width: 800px;
	text-align: center;
	margin: 0px auto 80px auto;
}
footer#footer div.information p.address-small,
footer#footer div.information p.tel-small {
	display: none;
}
footer#footer div.information p.button,
footer#footer div.information div.address-tel-map p.time-close,
footer#footer div.information h3.small {
	display: none;
}
footer#footer div.information h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 30px;
}
footer#footer div.information h3.small {
	display: none;
}
footer#footer div.information h3 img {
	width: auto;
	height: 70px;
}
footer#footer div.information div.address-tel-map {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	margin-bottom: 20px;
}
footer#footer div.information div.address-tel-map p.address,
footer#footer div.information div.address-tel-map p.tel {
	font-size: 0.8125rem;
}
footer#footer div.information div.address-tel-map p.address {
	margin-right: 10px;
}
footer#footer div.information div.address-tel-map div.line {
	height: 0px;
	overflow: hidden;
}
footer#footer div.information div.address-tel-map p.map {
	position: absolute;
	right: 0px;
	top: 0px;
	font-size: 0.75rem;
	color: #7f7f7f;
}
footer#footer div.information div#map-footer {
	position: relative;
	height: 360px;
}
footer#footer div.information div#map-footer iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
footer#footer div.misc {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	color: #7f7f7f;
	border-bottom: 1px solid #4b4b4b;
	margin: 0px auto 5px auto;
	padding-bottom: 5px;
}
footer#footer div.misc div.links ul,
footer#footer div.misc div.sns ul {
	display: flex;
	flex-wrap: wrap;
}
footer#footer div.misc div.links ul li {
	font-size: 0.8125rem;
	line-height: 0.8125rem;
}
footer#footer div.misc div.links ul li:not(:last-child) {
	position: relative;
	margin-right: 30px;
}
footer#footer div.misc div.links ul li:not(:last-child)::before {
	position: absolute;
	width: 0px;
	height: 12px;
	right: -15px;
	top: calc(50% - 5px);
	border-right: 1px solid #4b4b4b;
	content: "";
}
footer#footer div.misc div.sns {
	padding-bottom: 5px;
}
footer#footer div.misc div.sns ul li {
	font-size: 1.5rem;
	color: #a0a0a0;
}
footer#footer div.misc div.sns ul li:not(:last-child) {
	margin-right: 20px;
}
footer#footer p.copyright {
	text-align: center;
	font-size: 0.625rem;
	color: #7f7f7f;
}
/* footer#footer nav#navi-footer div.list div.row p.banner-tudor-kanazawa {
	margin-top: 40px;
} */
/* footer#footer nav#navi-footer div.list div.row p.banner-tudor-kanazawa a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 180px;
	height: 90px;
	background-color: #969696;
	transition: 0.25s background-color ease;
}
footer#footer nav#navi-footer div.list div.row p.banner-tudor-kanazawa a:hover {
	background-color: #808080;
} */



/* --------------------------------------------------------------------------------
sbi
-------------------------------------------------------------------------------- */

div#sbi_mod_error {
	visibility: hidden;
	height: 0px;
	overflow: hidden;
	margin-top: 0px;
	padding: 0px;
}