@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&family=Zen+Old+Mincho&display=swap');

/* オリジナルのレイアウト
----------------------------------------*/
html {
	font-size: 1rem;
	font-size: 10px;
}
body {
	color: #231815;
	font-family: "Noto Sans JP", sans-serif;
	background: #FFF;
	font-size: 1.4rem;
	line-height: 1.5;
	height: 100%;
	min-width: 1200px;
	-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: 768px) {
	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: "Oswald", sans-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: 1px 7px 2px;
	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: 5px 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;
	min-width: 1200px;
	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: 1;
}
.header img {
	display: block;
	margin: 0 auto;
}
.header_logo {
	padding: 25px 0 20px 34px;
	pointer-events: auto;
	transition: .3s;
}
.header_logo img {
	width: 52px;
}
.header_logo a {
	display: flex;
	color: #fff;
	font-size: 1.8rem;
	align-items: center;
	transition: opacity .3s;
	column-gap: 20px;
}
.header_inner {
	flex: 1;
	padding-top: 22px;
}
.header_link {
	margin: 0 25px 0 auto;
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
	pointer-events: auto;
	column-gap: 4px;
}
.header_link a {
	color: #ffffff;
	font-size: 1.4rem;
	letter-spacing: 0.3em;
	transition: .4s;
	background: rgba(0,0,0,0.24);
	width: 150px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.header_link_map a::before {
	content: "";
	width: 10px;
	height: 13px;
	background: url("../img/common/icon_map.svg") center no-repeat;
	background-size: contain;
	margin-right: 9px;
}
.header_link_outline a::before {
	content: "";
	width: 13px;
	height: 13px;
	background: url("../img/common/icon_outline.svg") center no-repeat;
	background-size: contain;
	margin-right: 9px;
}
.header_logo a:hover,
.header_link a:hover {
	opacity: .6;
}
.btn_nav {
	display: none;
}
@media only screen and (max-width: 768px) {
	.header {
		min-width: 0;
		height: 70px;
	}
	.header::before {
		height: 70px;
	}
	.header_logo {
		padding: 9px 0 0 15px;
		z-index: 1200;
	}
	.header_logo img {
		max-width: 52px;
		width: calc(52 / 430 * 100vw);
		margin-right: 0;
	}
	.header_logo a {
		font-size: clamp(1rem, calc(18 / 430 * 100vw), 1.8rem);
		column-gap: 8px;
	}
	.header_inner {
		padding: 0;
	}
	.header_link {
		margin: 0 0 0 auto;
		column-gap: 1px;
	}
	.header_link a {
		max-width: 87px;
		width: calc(87 / 430 * 100vw);
		height: 70px;
		font-size: 1.3rem;
		letter-spacing: 0;
		flex-direction: column;
	}
	.header_link_map a::before,
	.header_link_outline a::before {
		margin: 0 0 7px;
	}

	.header_logo a:hover,
	.header_link a:hover,
	.header_btn a:hover {
		opacity: 1;
	}
	.btn_nav {
		-webkit-appearance: none;
		appearance: none;
		display: block;
		width: 55px;
		height: 55px;
		position: fixed;
		top: 0;
		right: 0;
		background-color: transparent;
		z-index: 1000;
		border: 0;
		pointer-events: auto;
	}
	.btn_nav:focus {
		outline: none;
	}
	.btn_nav::after {
		content: 'MENU';
		font-size: 1rem;
		letter-spacing: .1em;
		color: #1C0C00;
		position: absolute;
		left: .15em;
		right: 0;
		bottom: 10px;
		text-align: center;
	}
	.open .btn_nav::after {
		content: 'CLOSE';
	}
	.btn_nav span {
		display: block;
		width: 30px;
		height: 2px;
		background: #1C0C00;
		position: absolute;
		top: 10px;
		left: 13px;
		transition: background-color .3s, transform .3s, top .3s;
	}
	.btn_nav span:nth-child(2) {
		top: 17px;
		width: 30px;
	}
	.btn_nav span:nth-child(3) {
		top: 24px;
	}
	.open .btn_nav span:nth-child(1) {
		transform: rotate(35deg);
		top: 16px;
	}
	.open .btn_nav span:nth-child(2) {
		opacity: 0;
		transform: rotate(45deg);
		top: 16px;
	}
	.open .btn_nav span:nth-child(3) {
		transform: rotate(-35deg);
		top: 16px;
	}
}

/*gnav
----------------------------------------*/
.gnav {
	width: 100%;
	margin: 0;
	pointer-events: auto;
}
.gnav a {
	transition: opacity .3s;
}
.gnav a:hover {
	opacity: .6;
}
.gnav_list {
	display: flex;
	justify-content: center;
	align-items: stretch;
	width: 100%;
	margin: 0 auto;
}
.gnav_list li {
	width: calc(100% / 9);
	/*width: 100%;*/
	/*text-align: center;*/
	/*display: flex;*/
	position: relative;
	/*display: none;*/
	text-align: center;
}
.gnav_list li:nth-last-child(2),
.gnav_list li:last-child {
	display: none;
}
.gnav_list li + li {
	/*margin-left: 25px;*/
}
.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(2)::after,
.gnav_list li:nth-child(4)::after,
.gnav_list li:nth-child(7)::after,
.gnav_list li:nth-child(10)::after,
.gnav_list li:nth-child(12)::after,
.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_list a {
	width: 100%;
	display: block;
	font-size: 1rem;
	letter-spacing: .05em;
	font-weight: bold;
	color: #1C0C00;
	transition: opacity .3s;
	padding: 0 0 10px;
}
.gnav_list a span {
	display: block;
	font-size: 1.4rem;
	font-weight: bold;
	letter-spacing: .05em;
	margin-top: 1px;
	color: #1C0C00;
	line-height: 1.4;
}
.gnav_list a span small {
	display: block;
	font-size: 1rem;
}
.gnav_list a::after {
	content: '';
	display: block;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 50%;
	right: 50%;
	width: 0;
	background: linear-gradient(to right,  rgba(28,12,0,0.3) 0%,rgba(28,12,0,1) 50%,rgba(28,12,0,0.3) 100%);
	transition: width .3s, left .3s, right .3s;
	margin-left: 0;
}
.gnav_list a:hover::after,
.gnav_list li.current a::after {
	width: 100%;
	left: 0;
	right: auto;
}
.gnav_list li a.off {
	opacity: 0.3;
	pointer-events: none;
}
.gnav_list a:hover {
	opacity: .6;
}
.gnav_link {
	display: none;
}
@media only screen and (max-width: 768px) {
	.gnav {
		display: none;
		margin: 0;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 100%;
		padding: 80px 6.4102% 30px;
		overflow: auto;
		background: rgba(255,255,255,0.9);
		z-index: 990;
	}
	.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:nth-last-child(2),
	.gnav_list li:last-child {
		display: block;
	}
	.gnav_list li + li {
		margin-left: 0;
	}
	.gnav_list li + li::before {
		display: none;
	}
	.gnav_list li.new::after {
		top: 5px;
	}
	.gnav_list a {
		padding: 10px 0;
	}
	.gnav_list a span {
		display: inline;
    padding-left: 20px;
	}
	.gnav_list a span small {
		display: none;
	}
	.gnav_list a span::after {
		content: '';
		width: 5px;
		height: 5px;
		border-top: solid 2px #1C0C00;
		border-right: solid 2px #1C0C00;
		position: absolute;
		left: 0;
		top: 5px;
		transform: rotate(45deg);
	}
	.gnav_list a::after {
		display: none;
	}
	.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: 1px solid rgba(255, 255, 255, .15);
	}
	.gnav_link_access a {
		display: block;
		padding: 16px 10px 19px;
	}
	.gnav_link_access a::before {
		content: '';
		display: inline-block;
		width: 12px;
		height: 16px;
		margin-right: 5px;
		vertical-align: -4px;
		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: 15px 0 0;
		letter-spacing: .05em;
	}
	.gnav_tel_number a::before {
		content: '';
		display: inline-block;
		width: 44px;
		height: 26px;
		margin-right: 3px;
		vertical-align: -2px;
		background: url(../img/common/icon_freedial.svg) no-repeat left center / 44px auto;
	}
	.gnav_tel_time {
		font-size: .8rem;
		margin: -3px 0 19px;
		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: 15px 10px;
	}
	.gnav_link_reserve a {
		background: #9D8C49;
	}
}

/*contents
----------------------------------------*/
@media only screen and (max-width: 768px) {
}

/*contact_block
----------------------------------------*/
.contact_block {
  background-color: #000000;
	padding: 0 0 55px;
  text-align: center;
}
body:not(.home) .contact_block {
	padding-top: 40px;
}
body:not(.home) .contact_block > figure {
	display: none;
}
.contact_block h3 {
  width: 264px;
	margin: 0 auto 10px;
}
.contact_block h3 + p {
	color: #ffffff;
  font-size: 2.2rem;
	letter-spacing: 0.2em;
	margin-bottom: 28px;
}
.contact_btn {
	display: flex;
	width: 1000px;
	background: #ffffff;
	border-radius: 10px;
	padding: 30px 0;
	margin: 0 auto;
}
.contact_btn > div {
	width: 50%;
	text-align: center;
}
.contact_btn > div p {
	font-size: 1.8rem;
	letter-spacing: 0.1em;
}
.contact_btn > div p small {
	font-size: 1.4rem;
	letter-spacing: 0;
}
.contact_btn > div:first-of-type a {
	display: block;
	width: 386px;
	margin: 10px auto;
	pointer-events: none;
}
.contact_btn > div:last-of-type {
	border-left: 1px solid #707070;
}
.contact_btn > div:last-of-type p {
	margin-bottom: 10px;
}
.contact_btn > div:last-of-type a {
	display: block;
	width: 352px;
	margin: 0 auto;
	transition: .4s;
}
.contact_btn > div:last-of-type a:hover {
	opacity: .7;
}
@media only screen and (max-width: 768px) {
	.contact_block {
		display: block;
		padding: 0 0 40px;
	}
	body:not(.home) .contact_block {
		padding-top: 30px;
	}
	.contact_block h3 {
		width: auto;
		height: 30px;
		margin: 10px auto;
	}
	.contact_block h3 img {
		height: 30px;
	}
	.contact_block h3 + p {
		font-size: 1.8rem;
		margin-bottom: 15px;
	}
	.contact_btn {
		flex-direction: column;
		width: 90%;
		padding: 30px 0 25px;
	}
	.contact_btn > div {
		width: 100%;
	}
	.contact_btn > div p {
		font-size: 1.6rem;
	}
	.contact_btn > div p small {
		font-size: 1.1rem;
	}
	.contact_btn > div:first-of-type a {
		display: block;
		width: 310px;
		margin: 10px auto 5px;
		pointer-events: auto;
	}
	.contact_btn > div:last-of-type {
		border: none;
		margin-top: 20px
	}
	.contact_btn > div:last-of-type p {
		margin-bottom: 10px;
	}
	.contact_btn > div:last-of-type a {
		width: 310px;
	}
}


/*bnr_block
----------------------------------------*/
.bnr_block {
	background-color: #E4E4E4;
	padding: 25px 0 40px;
}
.bnr_block ul {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	column-gap: 60px;
	width: 1000px;
	margin: 0 auto;
}
.bnr_block ul li:first-of-type {
	width: 566px;
}
.bnr_block ul li:last-of-type {
	width: 350px;
}
.bnr_block ul + ul {
	margin-top: 40px;
}
.bnr_block ul + ul li:first-of-type,
.bnr_block ul + ul li:last-of-type {
	width: 250px;
}
.bnr_block ul li a {
	transition: .4s;
}
.bnr_block ul li a:hover {
	opacity: .7;
}
@media only screen and (max-width: 768px) {
	.bnr_block {
		padding: 15px 0 20px;
	}
	.bnr_block ul {
		flex-direction: column;
		align-items: center;
		row-gap: 20px;
		width: 90%;
		margin: 0 auto;
	}
	.bnr_block ul li:first-of-type {
		width: 100%;
	}
	.bnr_block ul li:last-of-type {
		width: 60%;
	}
	.bnr_block ul + ul {
		margin-top: 20px;
	}
	.bnr_block ul + ul li:first-of-type,
	.bnr_block ul + ul li:last-of-type {
		width: 60%;
	}
}


/* 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: 60px 20px 10px;
	background: #000000;
	color: #ffffff;
}
.note_block ul,
.note_block p {
	max-width: 1020px;
	width: 100%;
	margin: 0 auto;
	font-family: "Noto Sans JP", sans-serif;
}
.note_block li {
	margin-left: 1em;
	text-indent: -1em;
	font-size: 1.1rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
}
.note_block p {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 10px;
	border: none;
	font-size: 1.1rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
}
.note_block p a {
	font-size: 1.2rem;
	padding-bottom: 2px;
	border-bottom: 1px solid #0F0600;
	transition: .4s;
}
.note_block p a img {
	width: 1.1rem;
	vertical-align: -1px
}
.note_block p a:hover {
	opacity: .7;
}

.asterisk {
	margin-left: 1em;
	text-indent: -1em;
	font-size: 1rem;
	line-height: 1.8;
}

@media only screen and (max-width: 768px) {
	.note_block {
		width: auto;
		padding: 20px 5% 15px;
	}
}

.yokoku {
	color: #fff;
	background-color: #000000;
}
.yokoku dl {
	max-width: 1020px;
	width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
}
.yokoku dt {
	font-size: 1.3rem;
	margin-right: 10px;
	border: 1px solid #fff;
	padding: 0 1em;
}
.yokoku dd {
	font-size: 1.1rem;
	line-height: 1.8;
}
@media only screen and (max-width: 768px) {
	.yokoku dl {
		flex-direction: column;
	}
	.yokoku dt {
		margin: 0 0 10px;
		text-align: center;
	}
}


/*footer
----------------------------------------*/
.footer {
	background: #000000;
	color: #ffffff;
	padding: 50px 15px 25px;
}
.footer > a {
	display: block;
	width: 351px;
	margin: 0 auto 70px;
}
.footer a {
	transition: .4s;
}
.footer a:hover {
	opacity: .7;
}
.footer .footer_company {
	width: 1020px;
	margin: 0 auto;
}
.footer .footer_company ul {
	display: flex;
	justify-content: space-between;
}
.footer .footer_company li {
	width: 289px;
	position: relative;
}
.footer .footer_company li:nth-child(1)::before {
	content: "［事業主・売主］";
	font-size: 1.2rem;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-120%);
}
.footer .footer_company li:nth-child(3)::before {
	content: "［販売代理］";
	font-size: 1.2rem;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-120%);
}
.footer .copyright {
	font-size: 1.1rem;
	text-align: center;
	display: block;
	margin: 70px 0 0;
}
@media only screen and (max-width: 768px) {
	.footer {
		padding: 40px 5% 20px;
	}
	.footer > a {
		width: 310px;
		margin: 0 auto 60px;
	}
	.footer .footer_company {
		width: 240px;
	}
	.footer .footer_company ul {
		flex-direction: column;
		row-gap: 20px;
	}
	.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(3) {
		margin-top: 20px;
	}
	.footer .copyright {
		margin: 30px 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-title
----------------------------------------*/

.page-title h2 {
	width: 1000px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #1C0C00;
	font-weight: 600;
	font-size: 1.6rem;
	letter-spacing: .1em;
	margin: 100px auto 0;
	text-shadow: 0 0 10px rgba(255,255,255,1),0 0 10px rgba(255,255,255,1);
}
.page-title span {
	font-size: 4.6rem;
	font-weight: 500;
	padding-right: 50px;
}


@media only screen and (max-width: 768px) {
	.page-title h2 {
		font-size: 1.4rem;
		padding: 0 30px;
		display: block;
		margin: 0 auto;
	}
	.page-title span {
		font-size: 3rem;
		display: block;
	}
}

#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: 20px;
	top: 100px;
}
.fixed_link .fixed_link_inquiry a {
	pointer-events: auto;
	transition: .4s;
}
.fixed_link .fixed_link_inquiry a:hover {
	opacity: 0.7;
}
@media only screen and (max-width: 768px) {
	.fixed_link {
		/*display: none;*/
		width: 58px;
		top: calc(240 / 430 * 100vw);
		right: calc(7 / 430 * 100vw);
	}
}

.bg_photo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: url("../img/common/bg_ttl.png") center no-repeat;
	background-size: cover;
	height: 300px;
}
.ttl_page {
	letter-spacing: 0.3em;
	color: #ffffff;
}
.ttl_page span {
	font-size: 5rem;
	font-weight: 200;
}
.ttl_page small {
	display: block;
	font-size: 1.6rem;
	text-align: center;
}
@media only screen and (max-width: 768px) {
	.bg_photo {
		height: 240px;
	}
	.ttl_page span {
		font-size: 3.6rem;
	}
	.ttl_page small {
		font-size: 1.4rem;
	}
}
