@charset "utf-8";

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
共通
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リセットCSS
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
* {
	box-shadow: none;
	outline: none;
	-webkit-tap-highlight-color: rgb(0, 0, 0, 0);
}

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

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, address, cite, em, small, i, img, picture, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, tr, th, td, hr, input, textarea, select, button,
main, article, aside, details, figure, figcaption, header, footer, hgroup, menu, nav, section, time, mark {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	color: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

iframe, cite, main, article, aside, details, figure, figcaption, header, footer, hgroup, menu, nav, section, audio, video {
	display: block;
}

body {
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}

iframe {
	max-width: 100%;
}

a {
	display: inline-block;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	flex: none;
	image-rendering: -webkit-optimize-contrast;
}

svg {
	overflow: hidden;
	max-width: 100%;
	vertical-align: middle;
	flex: none;
}

ol, ul {
	list-style: none;
	list-style-type: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input, textarea, select, button {
	border-radius: 0;
	background: none;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	letter-spacing: inherit;
}

input:not([type="checkbox"]):not([type="radio"]), textarea, button {
	-webkit-appearance: none;
}

input[type="button"],
input[type="submit"],
button {
	cursor: pointer;
}

input[type="file"] {
	font-size: revert;
}

input[type="file"]::-webkit-file-upload-button {
	font-family: inherit;
}

textarea {
	overflow: auto;
	field-sizing: content;
	resize: vertical;
}

time {
	display: inline-block;
}

video {
	max-width: 100%;
	cursor: pointer;
	object-fit: cover;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ベース
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@font-face {
	font-weight: 400;
	font-family: "Yu Gothic";
	src: local("YuGothic-Medium");
}

@font-face {
	font-weight: 500;
	font-family: "Yu Gothic";
	src: local("YuGothic-Medium");
}

@font-face {
	font-weight: 600;
	font-family: "Yu Gothic";
	src: local("YuGothic-Bold");
}

@font-face {
	font-weight: 700;
	font-family: "Yu Gothic";
	src: local("YuGothic-Bold");
}

@font-face {
	font-weight: 400;
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W3");
}

@font-face {
	font-weight: 500;
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W4");
}

@font-face {
	font-weight: 600;
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W5");
}

@font-face {
	font-weight: 700;
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W6");
}

:root {
	--color_main:              #c3a472;
	--color_gray:              #545454;
	--color_gray_dark:         #191919;

	--font_main:               "Yu Gothic", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", "Noto Sans CJK JP", Meiryo, sans-serif;
	--font_serif:              "Shippori Mincho", "Hiragino Mincho ProN", "BIZ UDPMincho", "Noto Serif CJK JP", "MS PMincho", serif;
	--font_en:                 "Antic Didone", "Times New Roman", serif;

	--opacity:                 0.7;
	--content-width:           1200px;
	--padding-inline:          5.4vw;
	--padding-inline_negative: calc(var(--padding-inline) * -1);
	--padding-block:           60px;
	--letter-spacing:          0.05em;
	--transition:              0.3s ease-in-out;
	--transition_img:          0.4s ease-in-out;
	--brightness:              brightness(1.2);
}

@media (min-width: 768px) {
:root {
	--padding-inline:          30px;
	--padding-block:           100px;
}
}

body {
	overflow: hidden scroll;
	font-size: 13px;
	font-family: var(--font_main);
	line-height: 1.8;
	letter-spacing: var(--letter-spacing);
}

article {
	overflow: clip;
}

section,
.section {
	padding-block: var(--padding-block);
}

.inner {
	max-width: calc(var(--content-width) + var(--padding-inline) * 2);
	margin-inline: auto;
	padding-inline: var(--padding-inline);
}

span:not([class]) {
	display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	line-height: 1.5;
}

p:not([class]) + p:not([class]) {
	margin-top: 1.5em;
}

a,
input[type="button"],
input[type="submit"],
button {
	transition: var(--transition);
}

a::before,
a::after,
button::before,
button::after {
	transition: transform var(--transition);
}

table {
	width: 100%;
	line-height: 1.5;
}

th {
	text-align: left;
	vertical-align: top;
}

td {
	text-align: left;
	vertical-align: top;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="search"],
input[type="password"] {
	width: 100%;
}

input[type="file"],
select {
	max-width: 100%;
}

input[type="file"]::-webkit-file-upload-button {
	margin-right: 0.6em;
}

input[type="checkbox"],
input[type="radio"] {
	width: 1em;
	height: 1em;
	margin-right: 0.4em;
}

textarea {
	width: 100%;
}

@media (min-width: 768px) {
a[href^="tel:"] {
	pointer-events: none;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
アニメーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@keyframes fade {
0% {
	opacity: 0;
}

100% {
	opacity: 1;
}
}

@keyframes fade-up {
0% {
	opacity: 0;
	transform: translateY(30px);
}

100% {
	opacity: 1;
	transform: translateY(0);
}
}

@keyframes fade-down {
0% {
	opacity: 0;
	transform: translateY(-30px);
}

100% {
	opacity: 1;
	transform: translateY(0);
}
}

@keyframes fade-right {
0% {
	opacity: 0;
	transform: translateX(30px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-left {
0% {
	opacity: 0;
	transform: translateX(-30px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-zoom-in {
0% {
	opacity: 0;
	transform: scale(0.9);
}

100% {
	opacity: 1;
	transform: scale(1);
}
}

@keyframes fade-zoom-out {
0% {
	opacity: 0;
	transform: scale(1.1);
}

100% {
	opacity: 1;
	transform: scale(1);
}
}

@keyframes show-bottom {
0% {
	-webkit-clip-path: inset(100% 0 0 0);
	clip-path: inset(100% 0 0 0);
}

100% {
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}
}

@keyframes show-left {
0% {
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
}

100% {
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}
}

.animation {
	animation-duration: 0.6s;
	animation-timing-function: ease-in-out;
	animation-delay: 0.3s;
	animation-fill-mode: both;
}

.fade,
.fade-up,
.fade-down,
.fade-right,
.fade-left,
.fade-zoom-in,
.fade-zoom-out {
	opacity: 0;
}

.show-bottom {
	-webkit-clip-path: inset(100% 0 0 0);
	clip-path: inset(100% 0 0 0);
}

.show-left {
	animation-timing-function: cubic-bezier(0.5, 0.1, 0.5, 1);
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
}

body._load .animation.fade {
	animation-name: fade;
}

body._load .animation.fade-up {
	animation-name: fade-up;
}

body._load .animation.fade-down {
	animation-name: fade-down;
}

body._load .animation.fade-right {
	animation-name: fade-right;
}

body._load .animation.fade-left {
	animation-name: fade-left;
}

body._load .animation.fade-zoom-in {
	animation-name: fade-zoom-in;
}

body._load .animation.fade-zoom-out {
	animation-name: fade-zoom-out;
}

body._load .animation.show-bottom {
	animation-name: show-bottom;
}

body._load .animation.show-left {
	animation-name: show-left;
}

.delay05 {
	animation-delay: 0.5s;
}

.delay06 {
	animation-delay: 0.6s;
}

.delay07 {
	animation-delay: 0.7s;
}

.delay09 {
	animation-delay: 0.9s;
}

.delay12 {
	animation-delay: 1.2s;
}

@media (min-width: 768px) {
@keyframes fade-right {
0% {
	opacity: 0;
	transform: translateX(40px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-left {
0% {
	opacity: 0;
	transform: translateX(-40px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
見出し
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.section-header {
	position: relative;
	z-index: 0;
	margin-bottom: 40px;
}

.section-header-img {
	position: absolute;
	inset: 0 auto auto 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 90% 30%
}

.section-header .inner {
	display: flex;
	height: 204px;
	justify-content: center;
	align-items: center;
}

.section-header .heading_en {
	color: #fff;
}

.section-description {
	margin-bottom: 3em;
	text-align: center;
}

.section-description:last-child {
	margin-bottom: 0;
}

.heading_serif {
	margin-bottom: 1.8em;
	font-size: 18px;
	font-family: var(--font_serif);
	line-height: 1.5;
	letter-spacing: normal;
}

.heading_en {
	margin-bottom: 0.8em;
	color: var(--color_main);
	font-size: 48px;
	font-family: var(--font_en);
	line-height: 1.1;
	letter-spacing: normal;
	text-align: center;
}

.color_white .heading_en {
	color: inherit;
}

.heading_en:last-child {
	margin-bottom: 0;
}

@media (min-width: 768px) {
.section-header {
	margin-bottom: 70px;
}

.section-header .inner {
	height: 280px;
}

.section-description {
	margin-bottom: 5em;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リスト
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.dl {
	margin-block: 1em;
	line-height: 1.5;
}

.dl:first-child {
	margin-top: 0;
}

.dl:last-child {
	margin-bottom: 0;
}

.dl > dt {
	margin-bottom: 0.8em;
	font-weight: 700;
}

.dl > dd {
	position: relative;
	margin-bottom: 0.5em;
	padding-left: 1.2em;
}

.dl > dd:last-child {
	margin-bottom: 0;
}

.dl > dd::before {
	position: absolute;
	inset: 0 auto auto 0;
	content: "・";
}

.ol,
.ul {
	margin-block: 1em;
	line-height: 1.5;
}

.ol {
	counter-reset: number;
}

.ol:first-child,
.ul:first-child {
	margin-top: 0;
}

.ol:last-child,
.ul:last-child {
	margin-bottom: 0;
}

.ol > li,
.ul > li {
	position: relative;
	margin-bottom: 0.5em;
	padding-left: 1.2em;
}

.ol > li {
	counter-increment: number;
}

.ol > li:last-child,
.ul > li:last-child {
	margin-bottom: 0;
}

.ol > li::before,
.ul > li::before {
	position: absolute;
	inset: 0 auto auto 0;
}

.ol > li::before {
	content: counter(number) ".";
}

.ul > li::before {
	content: "・";
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
コンポーネント
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.color_white {
	color: #fff;
}

.bold {
	font-weight: 700;
}

.align_center {
	text-align: center;
}

.align_left {
	text-align: left;
}

.align_right {
	text-align: right;
}

.block_center {
	width: fit-content;
	margin-inline: auto;
}

.word_break {
	word-break: break-all;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- アコーディオン
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.accordion-li {
	border-bottom: 1px solid var(--color_gray);
}

.accordion-heading {
	position: relative;
	padding: 1.5em 40px 1.5em 30px;
	cursor: pointer;
	transition: var(--transition);
	user-select: none;
}

.accordion-description {
	position: relative;
	padding: 0 40px 1.5em 30px;
	font-weight: 700;
}

.accordion-heading:hover {
	opacity: var(--opacity);
}

.accordion-heading::before,
.accordion-description::before {
	position: absolute;
	font-size: 26px;
	font-family: var(--font_en);
	line-height: 1;
}

.accordion-heading::before {
	inset: 0.6em auto auto 0;
	content: "Q.";
}

.accordion-description::before {
	inset: 0 auto auto 0;
	color: var(--color_main);
	content: "A.";
}

.accordion-icon {
	position: absolute;
	inset: 1.6em 0.5em auto auto;
	width: 14px;
	height: 14px;
}

.accordion-icon::before,
.accordion-icon::after {
	position: absolute;
	inset: 0;
	height: 0;
	margin: auto;
	border-top: 1px solid;
	content: "";
	transition: transform var(--transition);
}

.accordion-heading:not(._open) .accordion-icon::after {
	transform: rotate(-90deg);
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ローダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.loader {
	display: flex;
	position: fixed;
	inset: 0;
	z-index: 10;
	background: #fff;
	transition: 0.5s ease-in-out;
	justify-content: center;
	align-items: center;
}

.loader._hide {
	visibility: hidden;
	opacity: 0;
}

@keyframes loader {
0% {
	transform: scaleX(0);
}

100% {
	transform: scaleX(1);
}
}

.loader-bar {
	position: relative;
	width: 100%;
	border-top: 1px solid var(--color_main);
	transform: scaleX(0);
	transform-origin: left center;
	animation: loader 3s ease-in-out both;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フッター
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
footer {
	padding-block: 50px 80px;
	background: #000;
	color: #fff;
	letter-spacing: normal;
}

footer .wrapper {
	display: grid;
	row-gap: 30px;
	justify-content: center;
}

.footer-logo:hover {
	opacity: var(--opacity);
}

.footer-menu-li:not(:last-child) {
	margin-bottom: 1.3em;
}

.footer-menu-li a:hover {
	opacity: var(--opacity);
}

.footer-copyright {
	display: block;
	margin-top: 40px;
	font-size: 11px;
}

.footer-contact {
	display: flex;
	position: fixed;
	inset: auto 0 0 auto;
	z-index: 3;
	padding: 1em 2em;
	background: #000;
	column-gap: 0.5em;
	align-items: center;
}

.footer-contact:hover {
	background: var(--color_main);
}

@media (min-width: 768px) {
footer {
	padding-block: 60px;
}

footer .wrapper {
	grid-template-columns: auto auto;
	justify-content: space-between;
}
}

@media (max-width: 767.9px) {
footer {
	text-align: center;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
Swiper
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.swiper {
	--swiper-theme-color: currentColor;
	overflow: visible;
}

.swiper-slide {
	height: auto;
	user-select: none;
}

.swiper-button-prev,
.swiper-button-next {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgb(255, 255, 255, 0.8);
}

.swiper-button-prev {
	left: 0;
}

.swiper-button-next {
	right: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	width: 30%;
	height: 30%;
	border-top: 1px solid;
	border-right: 1px solid;
	content: "";
}

.swiper-button-prev::after {
	transform: translateX(20%) rotate(-135deg);
}

.swiper-button-next::after {
	transform: translateX(-20%) rotate(45deg);
}

.swiper-pagination {
	position: static;
	margin-top: 40px;
}

.swiper-pagination-progressbar {
	height: 3px !important;
	background: var(--color_gray);
}

.swiper-pagination-progressbar-fill {
	height: 3px !important;
	background: var(--color_main) !important;
}

@media (min-width: 768px) {
.swiper-button-prev,
.swiper-button-next {
	width: 48px;
	height: 48px;
}

.swiper-pagination {
	margin-top: 60px;
}
}
