@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400..800&family=Shippori+Mincho:wght@400;500;600;700&family=Zen+Old+Mincho:wght@400;700&display=swap');

/* オリジナルのレイアウト
----------------------------------------*/
html {
	font-size: 62.5%;
	height: 100%;
}
body {
	color: #000000;
	font-family: "Shippori Mincho", serif;
	background: #FFF;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	line-height: 1.5;
	height: 100%;
	/*min-width: 1360px;*/
	-webkit-text-size-adjust: 100%;
}
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	overflow-y: scroll;
}
.wrapper {
	overflow: hidden;
}
body:not(.home) .wrapper {
}
@media only screen and (max-width: 1350px) {
	html {
		font-size: .7407vw;
	}
}
@media only screen and (max-width: 768px) {
	html {
		font-size: calc(10 / 375 * 100vw);
	}
	body {
		min-width: 0;
	}
}
a {
	text-decoration: none;
	color: inherit;
}

img {
	image-rendering: -webkit-optimize-contrast;
}

.none {
  pointer-events: none;
  opacity: 0.4;
}
.menu_item_inner .none {
	opacity: 1;
}
.menu_item_inner .none .view {
	opacity: 0.4;
}


/*表示
----------------------------------------*/
/* PCだけ表示 */
.visible_pc {
	display: block !important;
}
/* SPだけ表示 */
.visible_sp {
	display: none !important;
}

/* PCだけ表示 */
.visible_pc_inline {
	display: inline !important;
}
/* SPだけ表示 */
.visible_sp_inline {
	display: none !important;
}

@media only screen and (max-width: 768px) {
	/* PCだけ表示 */
	.visible_pc {
		display: none !important;
	}
	/* SPだけ表示 */
	.visible_sp {
		display: block !important;
	}

	/* PCだけ表示 */
	.visible_pc_inline {
		display: none !important;
	}
	/* SPだけ表示 */
	.visible_sp_inline {
		display: inline !important;
	}
	/* SPだけ改行 */
	.sp_br {
		display: block;
	}

}

/*font
----------------------------------------*/
.en {
	font-family: "EB Garamond", serif;
}
.mincho {
	font-family: "Zen Old Mincho", serif;
}
sup {
	font-size: .7em;
}

/*figcaption
----------------------------------------*/
figure {
	position: relative;
}
figure figcaption {
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 0.1rem .7rem .2rem;
	color: #ffffff;
	font-size: 1.1rem;
	background: rgba(35, 24, 21, .5);
}
figure figcaption.left {
	right: auto;
	left: 0;
}
figure figcaption.outer {
	text-align: right;
	padding: .5rem 0 0;
	color: #231815; 
	background: none;
	transform: translateY(100%);
}
.cap {
	text-align: right;
	font-size: 1.1rem;
}
@media only screen and (max-width: 768px) {
	figure figcaption.outer,
	.cap {
		font-size: 1rem;
	}
}

/*header
----------------------------------------*/
.header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	z-index: 2000;
	pointer-events: none;
}
.header::before {
	content: '';
	display: block;
	/*background: linear-gradient(to bottom,  rgba(0,0,0,0.4) 0%,rgba(0,0,0,0.3) 70%,rgba(0,0,0,0.2) 100%);*/
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	transition: opacity .3s;
	opacity: 0;
}
.header.bg::before {
	background: linear-gradient(to bottom,  rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.3) 70%,rgba(0,0,0,0.1) 100%);
	opacity: 0.8;
	height: calc(100% + 6.5rem)		
}
.header img {
	display: block;
	margin: 0 auto;
}
.header_logo figure {
	/*width: 7.4rem;*/
	height: 6.6rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	pointer-events: auto;
	transition: .3s;
	/*background: #1C4065;*/
}
.home .header_logo figure {
	filter: drop-shadow(0 0 5px rgba(8,47,144,0.80));
}
.header_logo img {
	width: 5rem;
}
.header_logo span {
	pointer-events: auto;
}
.home .header_logo span {
	filter: drop-shadow(0 0 5px rgba(8,47,144,0.80));
	text-shadow: 0 0 8px rgba(8,47,144,0.80);
}
.header.bg .header_logo figure,
.header.bg .header_logo span {
	filter: none !important;
	text-shadow: none !important;
}
.header_logo a {
	display: flex;
	color: #fff;
	font-size: 2rem;
	letter-spacing: 0;
	align-items: center;
	transition: opacity .3s;
	column-gap: 1rem;
	padding: .5rem 0 .5rem 2rem;
}
/*.header.bg .header_logo {
	width: 10.4rem;
	height: 10rem;
}
.header.bg .header_logo img {
	width: 7rem;
}*/
.header_inner {
	flex: 1;
	/*padding-top: 1.8rem;*/
}
.header_link {
	/*margin: 0 9rem 0 auto;*/
	display: flex;
	justify-content: flex-end;
	align-items: center;
	pointer-events: auto;
	/*column-gap: .1rem;*/
}
.header_link a {
	color: #ffffff;
	font-size: 1.3rem;
	letter-spacing: 0.1em;
	transition: .4s;
	/*text-shadow: 0px 0px 1.6rem rgba(0, 30, 132, 0.79);*/
}
.header_link > div {
	display: flex;
	flex-direction: column;
	row-gap: .8rem;
	margin-right: 2rem;
}
.header_link .header_link_map {
}
.header_link .header_link_outline a,
.header_link .header_link_map a {
	display: flex;
	align-items: center;
	column-gap: .8rem;
}
.header_link .header_link_outline a::before,
.header_link .header_link_map a::before {
	content: "";
	width: 1rem;
	height: .1rem;
	background: #FFFFFF;
}
.header_link .header_link_instagram a {
	width: 11.7rem;
	height: 3.3rem;
	font-size: 1.2rem;
	letter-spacing: 0.06em;
	transition: .4s;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 1rem;
	border: 1px solid rgba(255,255,255,0.5);
}
.header_link .header_link_instagram a::before {
	content: "";
	width: 1.9rem;
	height: 1.9rem;
	background: url("../img/common/icon_instagram.svg") no-repeat left top / contain;
}
.header_link .header_link_reserve a,
.header_link .header_link_inquiry a {
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	width: 14rem;
	height: 7.8rem;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 1rem;
	pointer-events: auto;
	transition: .4s;
}
.header_link .header_link_reserve a {
	background: linear-gradient(to right,#b2a18b 0%, #d7cbbb 100%);
}
.header_link .header_link_reserve a::before {
	content: "";
	width: 2.2rem;
	height: 2.2rem;
	background: url(../img/common/icon_calendar.svg) no-repeat left top / contain;
}
.header_link .header_link_inquiry a {
	background: linear-gradient(to right ,#1c4065 0%, #3f83a7 100%);
}
.header_link .header_link_inquiry a::before {
	content: "";
	width: 1.4rem;
	height: 1.9rem;
	background: url(../img/common/icon_book.svg) no-repeat left top / contain;
}
.header_logo a:hover,
.header_link a:hover {
	opacity: .6;
}
.header_link_reserve a,
.header_link_inquiry a {
	overflow: hidden;
	position: relative;
}
.header_link_reserve a::after,
.header_link_inquiry a::after {
	content: "";
	display: block;
	position: absolute;
	top: -120px;
	left: -40px;
	width: 40px;
	height: 100%;
	background: rgba(255,255,255,.8);
	transition: 0.2s;
	animation: shine 3.4s ease-in-out infinite;
	z-index: 10;
}
.header_link_inquiry a::after {
	animation-delay: 0.15s;
}
@keyframes shine {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  78% {
    transform: scale(0) rotate(45deg);
    opacity: 0.4;
  }
  83% {
    transform: scale(4) rotate(45deg);
    opacity: .8;
  }
  100% {
    transform: scale(52) rotate(45deg);
    opacity: 0;
  }
}
.btn_nav {
	-webkit-appearance: none;
	appearance: none;
	/*display: block;*/
	width: 6rem;
	height: 6rem;
	position: fixed;
	top: .7rem;
	right: 2rem;
	background-color: transparent;
	z-index: 1000;
	border: 0;
	pointer-events: auto;
	cursor: pointer;
	display: none;
}
.btn_nav:focus {
	outline: none;
}
.btn_nav::after {
	content: 'MENU';
	font-size: 1.2rem;
	letter-spacing: .1em;
	color: #ffffff;
	position: absolute;
	left: .15em;
	left: 50%;
	transform: translateX(-40%);
	bottom: 0;
	text-align: center;
}
.open .btn_nav::after {
	content: 'CLOSE';
	/*color: #1C4065;*/
}
.btn_nav span {
	display: block;
	width: 4rem;
	height: .2rem;
	background: #ffffff;
	position: absolute;
	top: 1.7rem;
	left: 1.3rem;
	transition: background-color .3s, transform .3s, top .3s;
}
.btn_nav span:nth-child(2) {
	top: 2.7rem;
	width: 2.6rem;
}
.btn_nav span:nth-child(3) {
	top: 3.7rem;
	width: 3.3rem;
}
.open .btn_nav span:nth-child(1) {
	transform: rotate(35deg);
	/*background: #1C4065;*/
	top: 3rem;
}
.open .btn_nav span:nth-child(2) {
	opacity: 0;
	transform: rotate(45deg);
	top: 3rem;
}
.open .btn_nav span:nth-child(3) {
	transform: rotate(-35deg);
	/*background: #1C4065;*/
	top: 3rem;
	width: 4rem;
}
@media only screen and (max-width: 768px) {
	.header {
		min-width: 0;
		height: 7rem;
	}
	.header::before,
	.header.bg::before {
		height: 7rem;
	}
	.header_logo,
	.header.bg .header_logo {
		z-index: 1200;
	}
	.header_logo a {
		font-size: 1.5rem;
		padding: 0 0 0 1rem;
	}
	.header_logo figure {
		height: 6.4rem;
	}
	.header_logo img {
		width: 4rem;
	}
	.header_inner {
		padding: 0;
		position: fixed;
		bottom: 0;
		width: 100%;
		/*display: none;*/
	}
	.header_inner p {
		width: 50%;
	}
	.header_link {
		margin: 0;
		gap: 0;
	}
	.header_link > div {
		display: none;
	}
	.header_link .header_link_reserve a,
	.header_link .header_link_inquiry a {
		width: 100%;
		height: 5rem;
		letter-spacing: 0.05em;
	}
	.btn_nav {
		display: block;
		top: 0;
	}
}

/*gnav
----------------------------------------*/
.gnav {
	max-width: 1360px;
	width: 100%;
	/*height: 100vh;*/
	pointer-events: auto;
	/*transform: translateX(100%);*/
	transition: .4s;
	position: fixed;
	top: 9.5rem;
	right: 0;
	left: 0;
	/*background: linear-gradient(135deg,rgba(232,244,252,0.90) 0%, rgba(222,255,241,0.90) 100%);*/
	/*padding: 100px 0 0 60px;*/
	z-index: 99;
	margin: 0 auto;
}
.open .gnav {
	transform: translateX(0);
}
.gnav_list {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	column-gap: 1.4rem;
}
.gnav_list li {
	/*width: calc(100% / 10);*/
	position: relative;
	/*text-align: center;*/
}
/*.gnav_list li + li::before {
	content: "";
	display: block;
	width: 1px;
	height: 60%;
	position: absolute;
	top: 50%;
	left: -1rem;
	transform: translateY(-50%);
	background: #FFFFFF;
}*/
.gnav_list a {
	text-align: center;
	display: block;
	font-size: 1.6rem;
	letter-spacing: .1em;
	font-weight: 500;
	color: #FFFFFF;
}
.home .gnav_list a {
	filter: drop-shadow(0 0 5px rgba(8,47,144,0.80));
	text-shadow: 0 0 8px rgba(8,47,144,0.80);
}
.header.bg .gnav_list a {
	filter: none !important;
	text-shadow: none !important;
}
.gnav_list li a.off {
	opacity: 0.3;
	pointer-events: none;
}
.gnav_list a > span {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 3.2rem;
	line-height: 1.4;
	overflow: hidden;
}
.gnav_list a > span > span {
	transition: 0.4s;
	padding: .5rem 0;
}
.gnav_list a > span > span.jp {
	font-size: 1.2rem;
	padding-top: .7rem;
	letter-spacing: 0;
}
.gnav_list a:hover > span > span {
	transform: translateY(-3.2rem);
}
/*.gnav_list li:nth-last-child(3),
.gnav_list li:nth-last-child(2),*/
.gnav_list li.gnav_instagram {
	display: none;
}
.gnav_list li + li {
	/*margin-left: 25px;
	margin-top: 15px;*/
}
/*.gnav_list li + li::before {
	content: "";
	width: 1px;
	height: 24px;
	position: absolute;
	left: 0;
	top: calc(50% - 12px);
	background-color: #1C0C00;
	opacity: 0.4;
}*/
.gnav_list li:nth-child(13)::after {
	/*content: 'NEW';*/
	display: block;
	position: absolute;
	top: -12px;
	right: 5px;
	color: #fff;
	background-color: #A04436;
	font-size: 10px;
	padding: 0.2em .4em;
	line-height: 1;
}
.gnav_link {
	display: none;
}
@media only screen and (max-width: 768px) {
	.gnav {
		height: 100vh;
		padding: 90px 6.4102% 30px;
		transform: translateX(100%);
		background: linear-gradient(to right ,#1c4065 0%, #3f83a7 100%);
		overflow: auto;
		top: 0;
	}
	.gnav a:hover {
		opacity: 1;
	}
	.gnav_list {
		width: 100%;
		display: block;
		margin-right: 0;
	}
	.gnav_list li {
		display: block;
		text-align: center;
	}
	.gnav_list li {
		width: 100%;
		margin-left: 0;
		/*margin-bottom: 5px;*/
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.gnav_list li:last-child span {
		/*flex-direction: column;
		align-items: flex-start;
		row-gap: .2em;
		text-align: left;*/
	}
	.gnav_list li + li {
		margin: .5rem 0 0;
	}
	.gnav_list li + li::before {
		display: none;
	}
	.gnav_list li.new::after {
		top: .5rem;
	}
	.gnav_list a {
		font-size: 1.6rem;
		padding: .4rem 0;
		width: 100%;
	}
	.gnav_list a span {
		height: auto;
		flex-direction: row;
		column-gap: 1rem;
	}
	.gnav_list a > span > span {
		padding: 0;
	}
	.gnav_list a:hover > span > span {
		transform: none;
	}
	.gnav_list a > span > span.jp {
		font-size: 1.2rem;
		padding: 0;
	}
	.gnav_list a span small {
		display: none;
	}
	.gnav_list a::after {
		display: none;
	}
	.gnav_list .gnav_instagram a {
		width: 11.7rem;
		height: 3.3rem;
		font-size: 1.2rem;
		letter-spacing: 0.06em;
		transition: .4s;
		display: flex;
		justify-content: center;
		align-items: center;
		column-gap: 1rem;
		border: .1rem solid rgba(0,0,0,0.5);
		margin: 1rem auto 0;
	}
	.gnav_list .gnav_instagram a::before {
		content: "";
		width: 1.9rem;
		height: 1.9rem;
		background: url("../img/common/icon_instagram_b.svg") no-repeat left top / contain;
	}
	.gnav_list a:hover {
		opacity: 1;
	}
	.gnav_link {
		color: #fff;
		text-align: center;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		flex-wrap: wrap;
	}
	.gnav_link_access {
		width: 100%;
		border-bottom: .1rem solid rgba(255, 255, 255, .15);
	}
	.gnav_link_access a {
		display: block;
		padding: 1.6rem 1rem 1.9rem;
	}
	.gnav_link_access a::before {
		content: '';
		display: inline-block;
		width: 1.2rem;
		height: 1.6rem;
		margin-right: .5rem;
		vertical-align: -0.4rem;
		background: url(../img/common/icon_access.svg) no-repeat left top / 100% auto;
	}
	.gnav_tel {
		width: 100%;
	}
	.gnav_tel_number a {
		display: block;
		font-size: 3.2rem;
		padding: 1.5rem 0 0;
		letter-spacing: .05em;
	}
	.gnav_tel_number a::before {
		content: '';
		display: inline-block;
		width: 4.4rem;
		height: 2.6rem;
		margin-right: .3rem;
		vertical-align: -0.2rem;
		background: url(../img/common/icon_freedial.svg) no-repeat left center / 4.4rem auto;
	}
	.gnav_tel_time {
		font-size: .8rem;
		margin: -0.3rem 0 1.9rem;
		letter-spacing: .1em;
	}
	.gnav_link_inquiry,
	.gnav_link_reserve {
		width: 50%;
	}
	.gnav_link_inquiry a,
	.gnav_link_reserve a {
		display: block;
		background: #641F19;
		font-size: 1.5rem;
		letter-spacing: .08em;
		padding: 1.5rem 1rem;
	}
	.gnav_link_reserve a {
		background: #9D8C49;
	}
}

/*contents
----------------------------------------*/
@media only screen and (max-width: 768px) {
}

/*contact_block
----------------------------------------*/
.contact_block {
	color: #FFFFFF;
  background-color: #1C4065;
	padding: 10.5rem 0 13rem;
  text-align: center;
}
.contact_block h3 {
  font-size: 3rem;
	letter-spacing: 0.1em;
	margin-bottom: 3.5rem;
}
.contact_block h3 + p {
  font-size: 2.2rem;
	margin-bottom: 1.3rem;
}
.contact_block p.tel {
  font-size: 2.8rem;
	letter-spacing: 0.1em;
	line-height: 1.2;
}
.contact_block p.tel a {
  font-size: 3.9rem;
}
.contact_block p.time {
  font-size: 1rem;
	letter-spacing: 0.05em;
	margin: -0.3rem 0 4rem;
}
.contact_block .btn_wrap {
	display: flex;
	justify-content: center;
	gap: 4rem;
}
.contact_block .inquiry a {
	color: #FFFFFF;
	font-size: 1.8rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 34rem;
	height: 6rem;
	border-radius: 3rem;
	background: linear-gradient(to right ,#1c4065 0%, #3f83a7 100%);
	margin: 0 auto;
	position: relative;
	border: .1rem solid rgba(255,255,255,.6);
	transition: .4s;
}
.contact_block .reserve a {
	color: #FFFFFF;
	font-size: 1.8rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 34rem;
	height: 6rem;
	border-radius: 3rem;
	background: linear-gradient(to right,#b2a18b 0%, #d7cbbb 100%);
	margin: 0 auto;
	position: relative;
	border: .1rem solid rgba(255,255,255,.6);
	transition: .4s;
}
.contact_block .reserve a:hover,
.contact_block .inquiry a:hover {
	opacity: .7;
}
.contact_block .inquiry a::before {
	content: "";
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: #93BFD6;
	mix-blend-mode: multiply;
	position: absolute;
	right: 1.4rem;
	top: 2rem;
	transition: .4s;
}
.contact_block .reserve a::before {
	content: "";
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: #E5D9CA;
	mix-blend-mode: multiply;
	position: absolute;
	right: 1.4rem;
	top: 2rem;
	transition: .4s;
}
.contact_block .reserve a::after,
.contact_block .inquiry a::after {
	content: "";
	width: 3.6rem;
	height: .7rem;
	background: url("../img/common/right-arrow.svg") no-repeat right center / contain;
	position: absolute;
	right: 2.1rem;
	top: calc(50% - 0.3rem);
	transition: .4s;
}
.contact_block .reserve a:hover::before,
.contact_block .inquiry a:hover::before {
	right: .9rem;
}
.contact_block .reserve a:hover::after,
.contact_block .inquiry a:hover::after {
	right: 1.6rem;
}
@media only screen and (max-width: 768px) {
	.contact_block {
		padding: 4rem 0;
	}
	.contact_block h3 {
		font-size: 1.8rem;
		margin-bottom: 2rem;
	}
	.contact_block h3 + p {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}
	.contact_block p.tel {
		font-size: 2.2rem;
	}
	.contact_block p.tel a {
		font-size: 3.4rem;
	}
	.contact_block p.time {
		font-size: .9rem;
		letter-spacing: 0;
		margin: -0.3rem 0 2rem;
	}
	.contact_block .btn_wrap {
		flex-direction: column;
		align-items: center;
		gap: 2rem;
	}
	.contact_block .inquiry a,
	.contact_block .reserve a {
		font-size: 1.6rem;
		width: 28rem;
		height: 5rem;
		border-radius: 2.5rem;
	}
	.contact_block .inquiry a::before,
	.contact_block .reserve a::before {
		content: "";
		top: 1.5rem;
	}
}



/* form リセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
	box-sizing: border-box;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

form {
	display: flex;
	justify-content: center;
	line-height: 60px;
	position: relative;
	z-index: 1;
}
input[type="password"] {
	background-color: rgba(255,255,255,1);
	padding: 0 24px;
	width: 320px;
	height: 60px;
	display: block;
	color: #000;
	line-height: 60px;
}
input[type="password"]::placeholder {
	color: #999999;
	font-size: 1.3rem;
	font-family: 'Shippori Mincho B1', serif;
	letter-spacing: 0.1em;
	line-height: 60px;
}
input[type="button"] {
	font-size: 1.4rem;
	letter-spacing: .2em;
	background-color: #8CB8A9;
	color: #fff;
	width: 120px;
	height: 60px;
	text-align: center;
	display: block;
	transition: .4s;
	line-height: 60px;
}
input[type="button"]:hover {
	background-color: #fff;
	color: #8CB8A9;
}
input[type="button"].btn02 {
	background-color: #8CB8A9;
}
input[type="button"].btn02:hover {
	background-color: #fff;
	color: #8CB8A9;
}
.err_txt {
	position: absolute;
	margin-top: 20px;
	font-size: 1.4rem;
	letter-spacing: .1em;
	color: #c00;
	left: 0;
	right: 0;
	z-index: 1;
}
@media only screen and (max-width: 768px) {
	input[type="password"] {
		max-width: 320px;
		width: 68%;
		height: 50px;
		line-height: 50px;
	}
	input[type="password"]::placeholder {
		line-height: 50px;
	}
	input[type="button"] {
		max-width: 134px;
		width: 32%;
		height: 50px;
		line-height: 50px;
	}
}


/*note_block
----------------------------------------*/
.note_block {
	padding: 7rem 0 0;
	background: #FFFFFF;
}
.note_block ul,
.note_block p {
	max-width: 100rem;
	width: 90%;
	margin: 0 auto;
}
.note_block li {
	margin-left: 1em;
	text-indent: -1em;
	font-size: 1rem;
	line-height: 1.8;
	letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
	.note_block {
		width: auto;
		padding: 2rem 0 0;
	}
	.note_block li {
		font-size: .9rem;
	}
}

.yokoku {
	background-color: #FFFFFF;
	padding-top: 4rem;
}
.yokoku dl {
	max-width: 100rem;
	width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
}
.yokoku dt {
	font-size: 1rem;
	margin-right: 1rem;
	border: .1rem solid #000000;
	padding: 0 1em;
}
.yokoku dd {
	font-size: 1rem;
	line-height: 1.8;
}
@media only screen and (max-width: 768px) {
	.yokoku {
		background-color: #FFFFFF;
		padding-top: 1.5rem;
	}
	.yokoku dl {
		flex-direction: column;
	}
	.yokoku dt {
		margin: 0 0 1rem;
		text-align: center;
	}
	.yokoku dd {
		font-size: .9rem;
	}
}


/*footer
----------------------------------------*/
.footer {
	background: #FFFFFF;
	padding: 9rem 0 0;
}
.footer .footer_company {
	width: 100rem;
	margin: 0 auto 3.8rem;
}
.footer .footer_company ul {
	display: flex;
	column-gap: 2.4rem;
}
.footer .footer_company li {
	width: 23.2rem;
}
.footer .footer_company li p {
	font-size: 0.95rem;
	line-height: 1.3;
	margin-top: .8rem;
}
.footer .footer_company li p + p {
	margin-top: .5rem;
}
.footer .footer_company li p + p span {
	display: flex;
	column-gap: .5em;
}
.footer .footer_company li:nth-child(1)::before {
	content: "事業主・売主";
	width: 210%;
	font-size: 1.2rem;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-141%);
	padding-bottom: .5rem;
	border-bottom: .1rem solid rgba(46,52,57,0.60);
}
.footer .footer_company li:nth-child(3)::before {
	content: "販売代理";
	width: 100%;
	font-size: 1.2rem;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-141%);
	padding-bottom: 5px;
	border-bottom: 1px solid rgba(46,52,57,0.60);
}
.footer .footer_company li:nth-child(4)::before {
	content: "販売提携(一般媒介)";
	width: 100%;
	font-size: 1.2rem;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-141%);
	padding-bottom: 5px;
	border-bottom: 1px solid rgba(46,52,57,0.60);
}
.footer .footer_bnr {
	width: 100rem;
	margin: 0 auto;
}
.footer .footer_bnr ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer .footer_bnr li {
	width: 23rem;
}
.footer .footer_bnr li:nth-child(2) {
	width: 22.5rem;
	margin-left: 2rem;
}
.footer .footer_bnr li:nth-child(3) {
	width: 13.2rem;
	margin-left: 2.6rem;
}
.footer a {
	transition: .4s;
}
.footer a:hover {
	opacity: .7;
}
.footer .footer_btn {
	display: none;
}
.footer .copyright {
	color: #FFFFFF;
	font-size: 1.2rem;
	text-align: center;
	display: block;
	background: #1C4065;
	padding: 1.7rem 0;
	margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
	.footer {
		padding: 6rem 0 5rem;
	}
	.footer > a {
		width: 31rem;
		margin: 0 auto 6rem;
	}
	.footer .footer_company {
		width: 26rem;
	}
	.footer .footer_company ul {
		flex-direction: column;
		row-gap: 2rem;
	}
	.footer .footer_company li {
		width: 100%;
	}
	.footer .footer_company li:nth-child(1)::before,
	.footer .footer_company li:nth-child(3)::before {
		font-size: 1.1rem;
	}
	.footer .footer_company li:nth-child(1)::before {
		width: 100%;
	}
	.footer .footer_company li:nth-child(3),
	.footer .footer_company li:nth-child(4) {
		margin-top: 4rem;
	}
	.footer .footer_bnr {
		width: 24rem;
		margin: 0 auto;
	}
	.footer .footer_bnr ul {
		flex-direction: column;
	}
	.footer .footer_bnr li:nth-child(2),
	.footer .footer_bnr li:nth-child(3) {
		margin: 1.5rem auto 0;
	}
	.footer .footer_btn {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 10
	}
	.footer .footer_btn ul {
		display: flex;
	}
	.footer .footer_btn ul li {
		width: 100%;
	}
	.footer .footer_btn a.inquiry {
		width: 100%;
		color: #FFFFFF;
		display: flex;
    justify-content: center;
    align-items: center;
		background: linear-gradient(to right, #1074b2 0%, #10a6b2 100%);
		column-gap: 1rem;
		padding: 1.2rem 0;
	}
	.footer .footer_btn a.inquiry::before {
		content: "";
    width: 1.4rem;
    height: 1.9rem;
    background: url(../img/common/icon_book.svg) no-repeat left top / contain;
	}
	.footer .copyright {
		margin: 3rem 0 0;
	}
}

/*inview
----------------------------------------*/
.inview {
	opacity: 0;
	transform: translateY(100px);
}
.inview02 {
	opacity: 0;
	filter: blur(10px);
}
.inview03 {
	opacity: 0;
	filter: blur(10px);
	animation-fill-mode: forwards;
	animation-duration: 2.6s;
	animation-name: movey04;
}
.inview04 {
	opacity: 0;
	filter: blur(10px);
	animation-fill-mode: forwards;
	animation-duration: 2.2s;
  animation-delay: 1.4s;
	animation-name: movey04;
}
.inview-slide {
	opacity: 0;
	transform: translateX(-100px);
}
.inview-slide02 {
	opacity: 0;
	transform: translateX(100px);
}
.inview.show {
	animation-fill-mode: forwards;
	animation-duration: 1.6s;
	animation-name: movey;
	filter: blur(0);
}
.inview02.show {
	animation-fill-mode: forwards;
	animation-duration: 1.6s;
  animation-delay: 1s;
	animation-name: movey04;
	filter: blur(0);
}
.inview-slide.show {
	animation-fill-mode: forwards;
	animation-duration: 2s;
	animation-name: movey02;
}
.inview-slide02.show {
	animation-fill-mode: forwards;
	animation-duration: 2s;
	animation-name: movey03;
}
@keyframes movey {
	0% {
		opacity: 0;
		transform: translateY(100px);
		filter: blur(5px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}
@keyframes movey04 {
	10% {
		opacity: 0;
		filter: blur(10px);
	}
	100% {
		opacity: 1;
		filter: blur(0);
	}
}
@keyframes movey02 {
	0% {
		opacity: 0;
		transform: translateX(-100px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes movey03 {
	0% {
		opacity: 0;
		transform: translateX(100px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}


#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  /*right: 20px;*/
  right: 0;
  bottom: 0;
  background: #CFC3AA;
  opacity: 1;
	z-index: 999;
	transition: .4s;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -10px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
@media only screen and (max-width: 768px) {
	#page_top{
		display: none !important;
	}
}
.wrapper ~ img,
.wrapper02 ~ img,
.footer ~ img {
	height: 0;
}

.slideInWrap {
	overflow: hidden;
}
.slideIn {
	transform: translateX(-100%);
  overflow: hidden;
  transition: transform 0.8s ease-in-out;
	display: block;
}
.slideIn img {
	transform: translateX(100%);
	transition: transform 0.8s ease-in-out;
}
.slideIn.is-show {
	transform: translateX(0);
}
.slideIn.is-show img {
	transform: translateX(0);
}


.fixed_link {
	position: fixed;
	right: 1rem;
	top: 27rem;
}
.fixed_link .fixed_link_inquiry a {
	display: block;
	width: 8.6rem;
	pointer-events: auto;
	transition: .4s;
}
.fixed_link .fixed_link_inquiry a img {
	transform: translateZ(0); /* または transform: translate3d(0, 0, 0); */
	-webkit-backface-visibility: hidden; /* Safari向けの最適化 */
	will-change: transform; /* レンダリング最適化をブラウザに伝える */
}
/*.fixed_link .fixed_link_inquiry a {
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	color: #ffffff;
	width: 4.7rem;
	height: 14rem;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: .8rem;
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	pointer-events: auto;
	transition: .4s;
	background: linear-gradient(to top ,#1c4065 0%, #3f83a7 100%);
}
.fixed_link .fixed_link_inquiry a::before {
	content: "";
	width: 1.4rem;
	height: 1.9rem;
	background: url("../img/common/icon_book.svg") no-repeat left top / contain;
}*/
.fixed_link .fixed_link_reserve a {
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	color: #ffffff;
	width: 4.7rem;
	height: 14rem;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: .8rem;
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	pointer-events: auto;
	transition: .4s;
	background: linear-gradient(to top ,#b2a18b 0%, #d7cbbb 100%);
	margin-bottom: 10px;
}
.fixed_link .fixed_link_reserve a::before {
	content: "";
	width: 2.2rem;
	height: 2.2rem;
	background: url("../img/common/icon_calendar.svg") no-repeat left top / contain;
}
.fixed_link .fixed_link_inquiry a:hover,
.fixed_link .fixed_link_reserve a:hover {
	opacity: 0.7;
}
@media only screen and (max-width: 768px) {
	.fixed_link {
		right: 0.6rem;
		top: 38rem;
	}
	.fixed_link .fixed_link_inquiry a {
		width: 7.4rem
	}
	/*.fixed_link .fixed_link_inquiry a {
		letter-spacing: 0.05em;
		width: 100%;
		height: 4rem;
		column-gap: 1.2rem;
		-ms-writing-mode: unset;
		writing-mode: unset;
		background: linear-gradient(to right ,#1c4065 0%, #3f83a7 100%);
	}*/
	.fixed_link .fixed_link_reserve a {
		letter-spacing: 0.05em;
		width: 100%;
		height: 4rem;
		column-gap: 1.2rem;
		-ms-writing-mode: unset;
		writing-mode: unset;
		background: linear-gradient(to right,#b2a18b 0%, #d7cbbb 100%);
		margin-bottom: 0;
	}
}

.bg_photo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: url("../img/common/bg_ttl.jpg") center top no-repeat;
	background-size: cover;
	/*height: 27rem;*/
	padding: 16rem 0 8rem;
}
.ttl_page {
	letter-spacing: 0;
	color: #ffffff;
	text-align: center;
}
.ttl_page span {
	font-size: 4rem;
}
.ttl_page small {
	display: block;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
	.bg_photo {
		padding: 8rem 0 4rem;
	}
	.ttl_page span {
		font-size: 2.4rem;
		line-height: 1.4;
	}
	.ttl_page small {
		font-size: 1.2rem;
	}
}


/*slideEffectWrap
----------------------------------------*/
.slideEffectWrap {
	overflow: hidden;
}
.slideEffectRight {
	transform: translateX(-100%);
  overflow: hidden;
  transition: transform 0.8s ease-in-out;
	display: block;
}
.slideEffectRight img {
	transform: translateX(100%);
	filter: blur(5px);
	transition: transform 0.8s ease-in-out,filter 1.4s ease-in-out;
}
.slideEffectRight.is-active {
	transform: translateX(0);
}
.slideEffectRight.is-active img {
	transform: translateX(0);
	filter: blur(0);
}

.slideEffectLeft {
	transform: translateX(100%);
  overflow: hidden;
  transition: transform 0.8s ease-in-out;
	display: block;
}
.slideEffectLeft img {
	transform: translateX(-100%);
	filter: blur(5px);
	transition: transform 0.8s ease-in-out,filter 1.4s ease-in-out;
}
.slideEffectLeft.is-active {
	transform: translateX(0);
}
.slideEffectLeft.is-active img {
	transform: translateX(0);
	filter: blur(0);
}

.slideEffectUp {
	transform: translateY(-100%);
  overflow: hidden;
  transition: transform 1.2s ease-in-out;
	display: block;
}
.slideEffectUp img {
	transform: translateY(100%);
	filter: blur(5px);
	transition: transform 1.2s ease-in-out,filter 2s ease-in-out;
}
.slideEffectUp.is-active {
	transform: translateY(0);
}
.slideEffectUp.is-active img {
	transform: translateY(0);
	filter: blur(0);
}

.slideEffectDown {
	transform: translateY(100%);
  overflow: hidden;
  transition: transform 1.2s ease-in-out;
	display: block;
}
.slideEffectDown img {
	transform: translateY(-100%);
	filter: blur(5px);
	transition: transform 1.2s ease-in-out,filter 2s ease-in-out;
}
.slideEffectDown.is-active {
	transform: translateY(0);
}
.slideEffectDown.is-active img {
	transform: translateY(0);
	filter: blur(0);
}