@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');
@font-face {
	font-family: "Adobe Naskh";
	src: url("../fonts/Adobe Naskh Medium.ttf") format("truetype");
}
@font-face {
	font-family: "Futura";
	src: url("../fonts/Futura Condensed Medium.ttf") format("truetype");
}
@media (min-width: 768px) {
	.sp-only {
		display: none !important;
	}
}
@media screen and (max-width: 767px) {
	.pc-only {
		display: none !important;
	}
}
/*------------------------------------------------------------
	clearfix（float解除）
------------------------------------------------------------*/
.u-clearfix {
	*zoom: 1;
}
.u-clearfix:after {
	display: block;
	clear: both;
	content: "";
}

/*------------------------------------------------------------
    Default
------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
button,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 1em;
}

html {
	font-size: 62.5%;
}

* {
	box-sizing: border-box;
}

body,
table,
input,
textarea,
select,
option,
button,
h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.3;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
}

table,
input,
textarea,
select,
option {
	line-height: 1.6;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

img {
	vertical-align: middle;
	max-width: 100%;
}

iframe {
	width: 100%;
	height: 100%;
	top: 0;
	position: absolute;
}

table {
	width: 100%;
	border-collapse: collapse;
}

a {
	color: #2f2f2f;
	text-decoration: none;
	display: inline-block;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

a:hover,
a:hover img {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha(opacity=80)";
}

.u-bgcover {
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}

.u-df {
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 767px) {
	.u-df {
		flex-direction: column;
	}
}
.u-df .f-left,
.u-df .f-right {
	width: 50%;
}
@media screen and (max-width: 767px) {
	.u-df .f-left,
	.u-df .f-right {
		width: 100%;
	}
}
.u-pd70 {
	padding: 70px 0;
}
@media screen and (max-width: 767px) {
	.u-pd70 {
		padding: 60px 0;
	}
}
@media screen and (max-width: 767px) {
	.ic-hamburger {
		max-width: 46px;
	}
}

.u-bg01 {
	background-color: #FAF7F2;
}
.u-bg02:before, .u-bg02:after {
	content: "";
	width: 100%;
	height: 50%;
	position: absolute;
	background-size: cover !important;
}
.u-bg02:before {
	top: 0;
	background: url(../image/common/section-bg01.jpg) center no-repeat;
}
.u-bg02:after {
	bottom: 0;
	background: url(../image/common/section-bg02.jpg) center no-repeat;
}

/*------------------------------------------------------------
  effect（ページ遷移）
------------------------------------------------------------*/
.u-effect {
	position: relative;
}
.u-effect::after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #faf7f2;
	/* 背景カラー */
	background-image: url(../image/common/h-logo.png);
	background-position: center center;
	background-repeat: no-repeat;
	/* background-size: 225px; */
	z-index: 9998;
	/* 一番手前に */
	pointer-events: none;
	/* 他の要素にアクセス可能にするためにポインターイベントは無効に */
	opacity: 0;
	/* 初期値 : 透過状態 */
	-webkit-transition: opacity 0.6s ease;
	/* アニメーション時間は 0.6秒 */
	transition: opacity 0.6s ease;
}
@media screen and (max-width: 1000px) {
	.u-effect::after {
		background-size: 70%;
	}
}
@media screen and (max-width: 767px) {
	.u-effect::after {
		background-size: 300px;
	}
}

.u-effect.show::after {
	opacity: 1;
}

.u-effect.show article {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

/* --------------------------------------------------
	 7. Slick
-------------------------------------------------- */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track::before,
.slick-track::after {
	content: "";
	display: table;
}

.slick-track::after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}

[dir="rtl"] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

.slick-prev,
.slick-next {
	display: block;
	color: transparent;
	text-decoration: none;
	text-indent: 110%;
	white-space: nowrap;
	font-size: 0;
	width: 47px;
	height: 47px;
	top: 50%;
	transform: translate(0, -50%);
	position: absolute;
	padding: 0;
	line-height: 0;
	border: none;
	outline: none;
	background-color: #707176;
	border-radius: 50%;
	cursor: pointer;
	z-index: 1;
	opacity: 0.8;
	transition: opacity 0.4s;
	background-size: cover !important;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	opacity: 1;
}
.slick-prev {
	background: url(../image/common/arrow-prev.png) center no-repeat;
}
.slick-next {
	background: url(../image/common/arrow-next.png) center no-repeat;
}
@media screen and (max-width: 767px) {
	.slick-prev,
	.slick-next {
		background-size: 70% !important;
	}
}

.slick-dots {
	/* top: 50%; */
	/* right: 35px; */
	z-index: 2;
	/* transform: translate(0, -50%); */
	text-align: center;
	position: absolute;
}
.slick-dots li {
	position: relative;
	/* margin: 10px 0; */
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	.slick-dots {
		right: 20px;
	}
	.slick-dots li {
		margin: 7px 0;
	}
}

.slick-dots li button {
	border: 0;
	background: transparent;
	display: block;
	/* width: 17px; */
	/* height: 17px; */
	outline: none;
	line-height: 0;
	color: transparent;
	cursor: pointer;
	/* border-radius: 50%; */
	/* background-color: rgba(255, 255, 255, 0.59); */
	position: relative;
}
@media screen and (max-width: 767px) {
	.slick-dots li button {
		
	}
}

.slick-dots li button:hover,
.slick-dots li button:focus {
	outline: none;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
	/* background-color: #fff; */
}

.slick-dots li.slick-active button {
	/* background-color: #fff; */
}

/*------------------------------------------------------------
	Layout
------------------------------------------------------------*/
body {
	color: #262626;
	min-width: 768px;
	font-size: 14px;
	line-height: 1.5;
	overflow-x: hidden;
	font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
	body {
		min-width: auto;
	}
}
section, .details {
	overflow: hidden;
	position: relative;
}

.l-main {
	margin: 0 auto;
	max-width: 1230px;
	width: 100%;
}
@media screen and (max-width: 1300px) {
	.l-main {
		width: 92%;
	}
}
.l-container {
	margin: 0 auto;
	max-width: 1200px;
	width: 100%;
}
@media screen and (max-width: 1300px) {
	.l-container {
		width: 86%;
	}
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.c-header__nav {
	position: relative;
}
.c-header .nav-group {
	top: 20px;
	right: 96px;
	z-index: 9999;
	position: fixed;
	display: flex;
	color: #fff;
	font-size: 18px;
	border-radius: 6px;
	padding: 8px 15px 8px 20px;
	background-color: #575757;
	transition: all .5s;
	font-family: "Noto Sans JP", sans-serif;
}
.c-header .nav-group li + li {
	margin-left: 20px;
}
.c-header .nav-group span {
	padding: 1px 6px;
	margin-left: 5px;
	background-color: #000000;
	font-family: "Osaka", sans-serif;
}
.c-header .nav-group img {
	margin-right: 5px;
}
.c-header .nav-group li:nth-child(1) img {
	vertical-align: -1px;
}
.c-header .nav-group li:nth-child(2) img {
	vertical-align: -3px;
}
body.is-fixed .c-header .nav-group {
	background-color: #D9C474;
}
body.is-fixed .c-header .nav-group span {
	background-color: #B49147;
}
@media screen and (max-width: 767px) {
	.c-header .nav-group {
		top: 17px;
		right: 85px;
		font-size: 16px;
		display: none;
	}
	body.is-fixed .c-header .nav-group {
		display: flex;
	}
}


.c-header #nav-toggle.fixed span {
	background: #000;
}
.c-header #nav-toggle.fixed.on span {
	background: #ccc;
}
.c-header #nav-toggle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
	width: 57px;
	height: 57px;
	z-index: 9999;
	position: fixed;
	top: 15px;
	right: 15px;
	background: #fff;
	border-radius: 50%;
}
.c-header #nav-toggle div {
	position: relative;
	width: 30px;
	height: 18px;
}
.c-header #nav-toggle span {
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #000;
	border-radius: 20px;
	-webkit-transition: 0.35s ease-in-out;
	transition: 0.35s ease-in-out;
}
.c-header #nav-toggle p {
	font-size: 10px;
	line-height: 1;
	margin: 7px 0 -7px;
	font-family: "circe", sans-serif;
}
@media screen and (max-width: 767px) {
	.c-header #nav-toggle p {
		font-size: 0.9rem;
		margin: 5px 0 -6px;
	}
}

.c-header #nav-toggle span:nth-child(1) {
	top: 0px;
}

.c-header #nav-toggle span:nth-child(2) {
	top: 8px;
}

.c-header #nav-toggle span:nth-child(3) {
	top: 16px;
}

.c-header #nav-toggle.on span:nth-child(1) {
	top: 8px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.c-header #nav-toggle.on span:nth-child(2) {
	width: 0;
	left: 50%;
}

.c-header #nav-toggle.on span:nth-child(2)::before,
.c-header #nav-toggle.on span:nth-child(2)::after {
	width: 0;
	height: 0;
}

.c-header #nav-toggle.on span:nth-child(3) {
	top: 8px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.c-header .header-menu-inner {
	visibility: hidden;
	position: relative;
	z-index: 100;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.c-header .header-menu-inner.open {
	visibility: visible;
	-webkit-transition: opacity 0.24s ease;
	transition: opacity 0.24s ease;
}

.c-header #header-menu-bg {
	display: block;
	position: fixed;
	z-index: 100;
	width: 100vw;
	height: 100vh;
	background: #faf7f2;
	visibility: hidden;
	opacity: 0;
	cursor: pointer;
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
}

.c-header .header-menu-inner.open #header-menu-bg {
	visibility: visible;
	opacity: 1;
}

.c-header .g-nav-wrapper {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	right: 0;
	z-index: 998;
	width: 100%;
	height: 100vh;
	margin-left: 0;
	background-color: #faf7f2;
	text-align: left;
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow-x: hidden;
	background: url(../image/common/nav-bg.jpg);
}
@media screen and (max-width: 767px) {
	.c-header .g-nav-wrapper {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}
.c-header .header-menu-inner.open .g-nav-wrapper {
	visibility: visible;
	opacity: 1;
}

.c-header .g-nav-logo {
	text-align: center;
	margin: 0 auto;
	max-width: 380px;
}
.c-header .g-nav-inner {
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 395px;
	margin: 8% auto 0;
}
/* .c-header .g-nav + .g-nav {
	margin-left: 6%;
	padding-left: 6%;
	border-left: 1px solid #707070;
} */
.c-header .g-nav > li + li, .c-header .g-nav-sub {
	margin-top: 30%;
}
.c-header .g-nav {
	position: relative;
}
.c-header .g-nav-insta {
	left: 0;
	bottom: 0;
	position: absolute;
}
.c-header .g-nav a {
	color: #A88A40;
	font-size: 20px;
	font-weight: 600;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	font-family: "Noto Sans JP", sans-serif;
}
.c-header .g-nav-sub a {
	color: #0A0A0A;
	font-size: 12px;
}

@media screen and (max-width: 767px) {
	.c-header #nav-toggle {
		width: 50px;
		height: 50px;
	}
	.c-header .g-nav-inner {
		max-width: 304px;
	}
	.c-header .g-nav > li + li, .c-header .g-nav-sub {
		margin-top: 30px;
	}
	.c-header .g-nav-logo {
		max-width: 290px;
	}
	.c-header .g-nav a {
		font-size: 1.6rem;
	}
}
/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.c-footer {
	background-blend-mode: screen;
	background: #ddc980 url(../image/common/footer-bg.png);
}
.c-footer .details {
	position: relative;
	padding: 60px 0 15px;
}
.c-footer__insta {
	display: inline-block;
    top: 60px;
    left: 50%;
    /* right: 0; */
    z-index: 1;
    text-align: center;
    position: absolute;
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
}
.c-footer__inner {
	font-size: 16px;
	display: flex;
	font-weight: 600;
}
.c-footer__link {
	margin-right: 4%;
}
.c-footer__link + .c-footer__link {
	margin-left: 2%;
	padding-left: 4%;
	border-left: 1px solid #707070;
}
.c-footer__link li {
	padding: 3px 0;
}
.c-footer__link li img {
	margin-right: 7px;
}

.c-footer__text {
	margin: -18px 0 0;
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-end;
}
.c-footer__text img {
	max-width: 368px;
}
.c-footer__text p {
	max-width: 350px;
	line-height: 1.9;
	margin-top: -3px;
}
.c-footer__copyright {
	margin-top: 16px;
	text-align: center;
	letter-spacing: 2px;
	font-family: "Futura", sans-serif;
}

@media screen and (max-width: 767px) {
	.c-footer__insta {
		top: 13px;
	}
	.c-footer__inner {
		flex-wrap: wrap;
		font-size: 1.4rem;
		text-align: center;
		justify-content: center;
	}
	.c-footer__link {
		width: 50%;
		margin-right: 0;
		padding: 0 10px;
	}
	.c-footer__link + .c-footer__link {
		margin-left: 4%;
		padding-left: 4%;
		margin:0;
		padding: 0;
		padding: 0 10px;
	}
	.c-footer__text {
		margin: 25px 0 0;
		flex: 100%;
		align-items: center;
	}
	.c-footer__text img {
		max-width: 300px;
	}
}

/* c-mainvisual
------------------------------------------------------------*/
.c-mainvisual {
	position: relative;
}
.c-mainvisual__inner {
	height: 300px;
	background: url(../image/common/mainvisual.jpg);
}
@media screen and (max-width: 767px) {
	.c-mainvisual__inner {
		height: 220px;
	}
}
.c-mainvisual__logo {
	max-width: 440px;
}
.c-mainvisual__text {
	/* top: 44%; */
	top: 50%;
	left: 0;
	right: 0;
	z-index: 1;
	text-align: center;
	margin: 0 auto;
	position: absolute;
	transform: translate(0, -50%);
}
.c-mainvisual__ttl {
	color: #D5C176;
	font-size: 11px;
	/* margin: -28px auto 0; */
	margin: -25px auto 0;
	border-radius: 26px;
	text-align: center;
	padding: 3px 5px 4px;
	max-width: 196px;
	border: 1px solid #D8C378;
}

@media screen and (max-width: 767px) {
	.c-mainvisual__text {
		top: 45%;
	}
	.c-mainvisual__logo {
		max-width: 300px;
	}
	.c-mainvisual__ttl {
		/* margin: -17px auto 0; */
		margin: -14px auto 0;
	}
}

/* c-breadcrumb
------------------------------------------------------------*/
.c-breadcrumb {
	color: #fff;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 8px 3%;
	position: absolute;
	border-top: 1px solid #fff;
}
.c-breadcrumb:after {
	content: "";
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	mix-blend-mode: multiply;
	background-color: #dddddd;
}
.c-breadcrumb ul li {
	z-index: 1;
	position: relative;
	display: inline-block;
}
.c-breadcrumb ul li img {
	vertical-align: -2px;
}
.c-breadcrumb ul li a {
	color: #fff;
}
.c-breadcrumb ul li:after {
	content: "〉";
	margin-left: 10px;
	font-size: 11px;
}
.c-breadcrumb ul li:last-of-type:after {
	content: none;
}
@media screen and (max-width: 767px) {
}

/*------------------------------------------------------------
c-title
------------------------------------------------------------*/
.c-topic {
	position: relative;
	text-align: center;
	margin-top: -26px;
}
.c-topic span {
	z-index: 1;
	color: #fff;
	width: 407px;
	font-size: 18px;
	padding: 14px 0;
	border-radius: 26px;
	font-weight: 600;
	letter-spacing: 1px;
	position: relative;
	display: inline-block;
	background: linear-gradient(to right, #decc82 0%, #bb9a4d 100%);
}
.c-topic:after {
	content: "";
	width: 100%;
	height: 1px;
	top: 50%;
	left: 0;
	position: absolute;
	transform: translate(0, -50%);
	background-color: #decc82;
}
@media screen and (max-width: 767px) {
	.c-topic {
		margin-top: -19px;
	}
	.c-topic span {
		width: 320px !important;
		font-size: 1.5rem;
		padding: 10px 0;
	}
}

.c-topic--large span {
	font-size: 29px;
	font-weight: 500;
	padding: 6px 0 8px;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
	font-family: "Kaisei HarunoUmi", sans-serif;
}
@media screen and (max-width: 767px) {
	.c-topic--large span {
		font-size: 22px;
        padding: 4px 0 6px;
	}
}

.c-title01 {
	color: #cdb165;
	font-size: 40px;
	text-align: center;
	font-weight: 500;
	line-height: 0.8;
	letter-spacing: 4px;
	margin-bottom: 36px;
	font-family: "Adobe Naskh", sans-serif;
}

.c-label {
	text-align: center;
	position: relative;
}
.c-label span {
	color: #AC8E40;
	z-index: 1;
	padding: 11px;
	display: block;
	margin: 0 auto;
	font-size: 21px;
	max-width: 286px;
	font-weight: 600;
	position: relative;
	border-radius: 26px;
	background-color: #fff;
	border: 1px solid #D3B467;
}
.c-label:after {
	content: "";
	width: 100%;
	height: 1px;
	top: 50%;
	left: 0;
	position: absolute;
	transform: translate(0, -50%);
	background-color: #D3B467;
}
@media screen and (max-width: 767px) {
	.c-label span {
		max-width: 260px;
		font-size: 1.9rem;
		padding: 9px;
	}
}

.p-menu .s-combo .c-label, .p-menu .s-commit .c-label, .p-company .s-profile .c-label {
	margin-top: -25px;
}

/*------------------------------------------------------------
c-btn
------------------------------------------------------------*/
.c-btn01 {
	z-index: 1;
	width: 100%;
	color: #ffeea8;
	display: block;
	padding: 10px;
	max-width: 220px;
	font-weight: 600;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: all 0.5s;
	border-radius: 26px;
	background-color: #ac8e40;
}
.c-btn01--small {
	font-size: 12px;
	max-width: 230px;
	padding: 5px 20px;
}
.c-btn01--large {
}
/* .c-btn01:before {
  content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 23px;
    color: #fff;
    background: #81A081;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.c-btn01:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
} */

.c-btn01:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #000;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
a.c-btn01:hover:before {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}
a.c-btn01:hover {
	background-color: #000;
}

@media screen and (max-width: 767px) {
	.c-btn01 {
		margin: 28px auto 0;
	}
}

.btn-float {
	top: 50%;
	right: 0;
	z-index: 10;
	color: #fff;
	position: fixed;
	font-weight: 600;
	text-align: center;
	padding: 10px 15px 15px;
	border-radius: 5px 0 0 5px;
	transform: translate(0, -50%);
	background-color: #B78E1A;
}
.btn-float p {
	font-size: 13px;
	margin-bottom: 10px;
}
.btn-float h3 {
	font-family: "Futura", sans-serif;
}
@media screen and (max-width: 767px) {
	.btn-float {
		zoom: 75%;
	}
}

/*------------------------------------------------------------
c-list
------------------------------------------------------------*/
.c-list01 a {
	display: flex;
	font-size: 18px;
	padding: 10px 0;
	letter-spacing: 1px;
	border-bottom: 1px solid #dbc67e;
}
.c-list01 li:last-child a {
	border-bottom: 0;
}
.c-list01 a span {
	margin-right: 18px;
}
@media screen and (max-width: 767px) {
	.c-list01 a {
		font-size: 1.6rem;
	}
}

/*------------------------------------------------------------
s-common
------------------------------------------------------------*/
.s-common01__item {
	text-align: center;
	overflow: hidden;
	border-radius: 10px;
	border: 10px solid transparent;
	/* background: linear-gradient(#fff 0 0) padding-box, linear-gradient(to right, #DECC82, #CAAD61) border-box; */
	background: linear-gradient(to right, #decc82, #caad61) border-box;
}
.s-common01__item--box {
	min-height: 390px;
}
.s-common01__item.item01 .s-common01__item--box {
	width: calc((1 / 3) * 100%);
}
.s-common01__inner {
	flex-wrap: wrap;
}
.s-common01__item + .s-common01__inner {
	margin-top: 42px;
}
.s-common01__inner .s-common01__item {
	width: calc((100% - 4%) / 2);
}
@media screen and (min-width: 768px) {
	.s-common01__inner .s-common01__item:not(:nth-child(-n+2)) {
		margin-top: 4%;
	}
}
.s-common01__item--box.box01 {
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
	background: url(../image/top/popular-img01.jpg);
}
.s-common01__item--box.box02 {
	background: url(../image/top/popular-img02.jpg);
}
.s-common01__item--box.box03 {
	width: 53%;
	padding: 4% 2%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-color: #fff;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
}
.s-common01__item--ttl {
	margin-top: 27px;
	letter-spacing: 1px;
}
.s-common01__item--desc {
	text-align: left;
	max-width: 245px;
	margin: 16px auto 0;
}
.s-common01__item--price {
	margin-top: 15px;
	letter-spacing: 2px;
}
.s-common01__item--btn {
	margin: 13px auto 0;
}
.s-common01__item.item01 .s-common01__item--ttl {
	font-size: 20px;
}
.s-common01__item.item01 .s-common01__item--price {
	font-size: 24px;
}
.s-common01__item.item01 .s-common01__item--price span {
	font-size: 35px;
}
.s-common01__item.item01 .s-common01__item--btn {
	font-size: 15px;
	max-width: 230px;
}
.s-common01__inner .s-common01__item--ttl {
	font-size: 19px;
}
.s-common01__inner .s-common01__item--price {
	font-size: 23px;
}
.s-common01__inner .s-common01__item--price span {
	font-size: 33px;
}
.s-common01__btn {
	color: #ac8e40;
	margin: 63px auto 0;
	background-color: #fff;
	border: 1px solid #ac8e40;
}

@media screen and (max-width: 767px) {
	.s-common01__item {
		border: 7px solid transparent;
	}
	.s-common01__item--box {
		min-height: 80vw;
	}
	.s-common01__item.item01 .s-common01__item--box {
		width: 100%;
	}
	.s-common01__inner .s-common01__item {
		width: 100%;
	}
	.s-common01__inner .s-common01__item + .s-common01__item {
		margin-top: 42px;
	}
	.s-common01__item--box.box01 {
		border-top-right-radius: 6px;
		border-bottom-left-radius: 0;
	}
	.s-common01__item--box.box03 {
		width: 100%;
		padding: 30px 4%;
		min-height: auto;
		border-bottom-left-radius: 6px;
		border-top-right-radius: 0;
	}
	.s-common01__btn {
		margin: 50px auto 0;
	}
}

/* section-review
------------------------------------------------------------*/
.s-review__slider .slick-track {
	display: flex !important;
}
.s-review__slider .slick-slide {
	height: inherit !important;
}
.s-review__item {
	margin: 0 8px;
	padding: 35px 33px;
	border-radius: 10px;
	background: linear-gradient(to bottom, #decb82 0%, #d6ba76 100%);
}
.s-review__item--ttl {
	padding: 0 20px;
	max-width: 271px;
}
.s-review__item--ttl span {
	color: #fff;
	font-size: 20px;
	padding: 4px 0;
	border-radius: 2px;
	letter-spacing: 1px;
	background-color: #000;
    line-height: 2.1;
    background: linear-gradient(to bottom, #000 100%, transparent 100%);
    box-shadow: 20px 0 0 #000, -20px 0 0 #000;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}
.s-review__item--ttl span + span {
	margin-top: 5px;
}
.s-review__item--txt {
	font-size: 16px;
	line-height: 1.9;
	margin-top: 18px;
}
.s-review__item--btn {
	margin: 22px auto 0;
}


/*------------------------------------------------------------
p-top
------------------------------------------------------------*/
#main-slider {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

#main-slider .slide {
	overflow: hidden;
	position: relative;
	opacity: 1 !important;
}

#main-slider .slide span {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	background: transparent no-repeat center center;
	background-size: cover;
	opacity: 0;
	transform: scale(1.2, 1.2);
	transition: 0s;
}

#main-slider .slide.slick-start span {
	opacity: 1;
	transform: scale(1.2, 1.2);
	transition: ease 0s;
}

#main-slider .slide.slick-active span {
	opacity: 1;
	transform: scale(1.2, 1.2);
	transition: ease 6s;
}

#main-slider .slide.slick-continue span {
	opacity: 0;
	transform: scale(1, 1);
	transition: ease 6s;
}

/* .visual-top,
#main-slider .slide {
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 767px) {
  .visual-top,
  #main-slider .slide {
    height: 90vh;
  }
} */
.visual-top {
	position: relative;
	background: url(../image/top/mainvisual.jpg);
}
.visual-top.is_show .visual-top__text {
	-webkit-filter: blur(0);
	filter: blur(0);
	opacity: 0.999;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.visual-top__text {
	z-index: 1;
	text-align: center;
	padding: 203px 0 493px;

	-webkit-filter: blur(5px);
	filter: blur(5px);
	opacity: 0;
	-webkit-transform: translate3d(0, 50px, 0);
	transform: translate3d(0, 50px, 0);
	-webkit-transition: opacity 1.5s, -webkit-filter 1.5s, -webkit-transform 1.5s;
	transition: opacity 1.5s, -webkit-filter 1.5s, -webkit-transform 1.5s;
	transition: filter 1.5s, opacity 1.5s, transform 1.5s;
	transition: filter 1.5s, opacity 1.5s, transform 1.5s, -webkit-filter 1.5s, -webkit-transform 1.5s;
}
.visual-top__text--ttl {
	color: #fff;
	font-size: 32px;
	letter-spacing: 2px;
	margin-bottom: 13px;
}
.visual-top__text--desc {
	color: #d5c176;
	font-size: 20px;
	padding: 6px;
	max-width: 342px;
	text-align: center;
	font-weight: 600;
	margin: -39px auto 67px;
	border-radius: 26px;
	border: 1px solid #d8c378;
}
@media screen and (max-width: 1300px) and (min-width: 768px) {
	.visual-top__text {
		padding: 16vw 0 38vw;
	}
}
@media screen and (max-width: 767px) {
	.visual-top__text {
		padding: 100px 0 330px;
	}
	.visual-top__text--ttl {
		font-size: 1.8rem;
		margin-bottom: 13px;
	}
	.visual-top__text--logo {
		max-width: 300px;
	}
	.visual-top__text--desc {
		font-size: 1.4rem;
		padding: 4px;
		max-width: 210px;
		margin: -5px auto 50px;
	}
	.visual-top__text--cake {
		max-width: 220px;
	}
}
.visual-top__intro {
	padding: 1px 0 140px;
	position: relative;
	border-bottom: 1px solid #d3b467;
	background: url(../image/top/intro-bg.jpg);
}
.visual-top__inner {
	margin-top: -220px;
}
.visual-top__intro:after {
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	width: 1px;
	height: 104px;
	margin: 0 auto;
	position: absolute;
	background-color: #d3b467;
}
.visual-top__inner .c-topic {
	margin: 0 0 45px;
}
.visual-top__list--item {
	width: calc((100% - 6%) / 3);
	margin: 0 20px;
	text-align: center;
	border-radius: 10px;
	background-color: #decc82;
}
.visual-top__list--item a {
	display: block;
	cursor: pointer;
	padding: 20px 13px 13px;
}
.visual-top__list--label {
	margin: 0 auto;
}
.visual-top__list--desc {
	font-size: 16px;
	margin-top: 10px;
	font-weight: 600;
}
.visual-top__list--ttl {
	margin-top: -20px;
}
.visual-top__list--ttl span {
	color: #fff;
	font-size: 20px;
	border-radius: 2px;
	padding: 5px 20px;
	letter-spacing: 1px;
	display: table;
	margin: 0 auto;
	background-color: #000;
}
.visual-top__list--ttl span + span {
	margin-top: 5px;
}
.visual-top__list--btn {
	color: #f2e0b2;
	margin: 70px auto 0;
	background-color: rgba(93, 75, 27, 0.65);
}
.visual-top__list--img {
	margin-top: 40px;
	padding: 1px 13px 87px;
	border-radius: 0 0 6px 6px;
}
.visual-top__list--item.item01 .visual-top__list--img {
	background: url(../image/top/intro-img01.png);
}
.visual-top__list--item.item02 .visual-top__list--img {
	background: url(../image/top/intro-img02.png);
}
.visual-top__list--item.item03 .visual-top__list--img {
	background: url(../image/top/intro-img03.png);
}
@media screen and (max-width: 1300px) and (min-width: 768px) {
	.visual-top__inner {
		margin-top: -17vw;
	}
}
@media screen and (max-width: 767px) {
	.visual-top__intro {
		padding: 1px 0 90px;
	}
	.visual-top__inner {
	}
	.visual-top__intro:after {
		height: 65px;
	}
	.visual-top__inner .c-topic {
		margin: 0 0 37px;
	}
	.visual-top__list--item {
		width: 100%;
	}
}

.visual-top__list .slick-track {
    display: flex !important;
}
.visual-top__list .slick-slide {
    height: inherit !important;
}

/* c-modal */
#modal-wrapper {
	display: none;
}
.modaal-container {
	max-width: 920px;
	border-radius: 10px;
	width: 100%;
	padding: 0 !important;
	max-width: 920px !important;
	border-radius: 10px !important;
	border: 15px solid transparent;
	/* border-image: linear-gradient(to bottom, #DECC82 0%, #D6B975 100%) 1; */
	background: linear-gradient(to bottom, #decc82, #caad61) border-box !important;
}
.modaal-content-container {
	padding: 3rem 2rem 10rem;
	background-color: #fff;
}
.modaal-container .slick-arrow, .modaal-container .modaal-close {
	top: auto;
	bottom: -25%;
	background: none;
	width: 100%;
	opacity: 1;
	color: #fff;
	padding: 11px;
	font-size: 14px;
	cursor: pointer;
	text-align: center;
	text-indent: 0;
	max-width: 195px;
	border-radius: 26px;
	background-color: rgba(93,75,27,0.65);
	border: 1px solid #D8C378;
	transition: all .5s;
}
.modaal-container .slick-arrow:hover, .modaal-container .modaal-close:hover {
	opacity: 0.8;
}
.modaal-container .slick-prev {
	left: 0;
}
.modaal-container .slick-next, .modaal-container .modaal-close {
	right: 0;
}
.modaal-container .modaal-close {
	position: absolute;
	height: 47px;
	transform: translate(0, -50%);
	background-color: rgba(0,0,0,0.65);
}
.modaal-container .modaal-close:before, .modaal-container .modaal-close:after {
	content:none;
}
.modaal-container .slick-arrow.slick-disabled {
	display: none !important;
}

.c-modal__title {
	color: #fff;
	width: 100%;
	padding: 7px;
	font-size: 26px;
	text-align: center;
	max-width: 645px;
	margin: 0 auto;
	border-radius: 2px;
	letter-spacing: 2px;
	background-color: #000000;
}
.c-modal__label {
	font-size: 17px;
	margin-top: 25px;
	text-align: center;
}
.c-modal__list {
	margin-top: 35px;
}
.c-modal__list--item {
	width: calc((100% - 6%) / 4);
}
.c-modal__list--img {
	height: 30vw;
	max-height: 156px;
	border-radius: 6px;
}
.c-modal__list--ttl {
	font-size: 17px;
	margin-top: 11px;
	text-align: center;
}
.c-modal__list--dot {
	font-size: 13px;
	margin-top: 10px;
}
.c-modal__list--dot li {
	padding-left: 13px;
	position: relative;
}
.c-modal__list--dot li::before {
	content: "・";
	left: 0;
	position: absolute;
}
.c-modal__list--multiply {
	width: 10% !important;
	margin-top: 6%;
	text-align: center;
}
.c-modal__list--multiply img {
	margin: 0 auto;
}
.c-modal__list--img2 {
	width: 37% !important;
    padding-left: 2%;
    margin: -4% 0 0 4%;
    border-left: 1px solid #BFBFBF;
}
#modal3 .c-modal__list--item {
	width: 50%;
	padding: 0 3%;
}
#modal3 .c-modal__list--item:nth-child(2) {
	border-left: 1px solid #BFBFBF;
}
#modal3 .c-modal__list--ttl {
	font-size: 22px;
}
#modal3 .c-modal__list--dot {
	font-size: 16px;
	line-height: 1.7;
	margin-top: 20px;
}
.c-modal__list--note {
	font-size: 20px;
	padding: 7px;
	margin: 33px 4% 0;
	text-align: center;
	border-radius: 26px;
	border: 1px solid #D8C378;
}

.c-modal__nav {
	margin-top: 40px;
}
.c-modal__button {
	width: 100%;
	color: #fff;
	padding: 11px;
	cursor: pointer;
	text-align: center;
	max-width: 195px;
	border-radius: 26px;
	background-color: #968A6B;
	border: 1px solid #D8C378;
}
.c-modal__button:hover, .c-modal__button:focus-visible, .c-modal__button:active {
	color: #F2E0B2;
	background-color: #595959;
}

@media screen and (max-width: 767px) {
	.modaal-container {
		max-width: 92% !important;
		border: 7px solid transparent;
	}
	.modaal-content-container {
		padding: 2.5rem 1.5rem 5rem;
	}
	.c-modal__title {
		font-size: 2.2rem;
	}
	.c-modal__list--item {
		width: 100% !important;
	}
	.c-modal__list--item + .c-modal__list--item  {
		margin: 40px 0 0;
	}
	.c-modal__list--img {
		height: 50vw;
		max-height: 100%;
	}

	.c-modal__list--img2 {
		padding-left: 0;
		border-left: 0;
		text-align: center;
	}
	#modal3 .c-modal__list--item {
		padding: 0;
	}
	#modal3 .c-modal__list--item:nth-child(2) {
		border-left: 0;
		padding-top: 25px;
		border-top: 1px solid #BFBFBF;
	}

	.c-modal__list--note {
		font-size: 1.8rem;
		margin: 38px 0 0;
	}
	
	.c-modal__nav {
		margin-top: 50px;
		flex-direction: row;
	}
	.c-modal__button {
		max-width: 48.5%;
	}
}

/* .p-top section-pickup
------------------------------------------------------------*/
.p-top .s-pickup {
	position: relative;
	border-bottom: 1px solid #d3b467;
}
.p-top .s-pickup:after {
	/* content: ""; */
	left: 0;
	right: 0;
	bottom: 0;
	width: 98px;
	height: 55px;
	margin: 0 auto;
	position: absolute;
	background: url(../image/top/pickup-line.png) center no-repeat;
}
.p-top .s-pickup__slider .slick-track {
	display: flex !important;
}
.p-top .s-pickup__slider .slick-slide {
	height: inherit !important;
}
.p-top .s-pickup__slider .slick-prev {
	left: 16%;
}
.p-top .s-pickup__slider .slick-next {
	right: 16%;
}
.p-top .s-pickup__slider .slick-dots {
	left: 0;
	right: 0;
	bottom: -70px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.p-top .s-pickup__slider .slick-dots li {
	margin: 0 5px;
}
.p-top .s-pickup__slider .slick-dots li button {
	width: 8px;
	height: 44px;
	background-color: #DFC992;
}
.p-top .s-pickup__slider .slick-dots li button:hover,
.p-top .s-pickup__slider .slick-dots li button:focus {
	background-color: #B79D5D;
}
.p-top .s-pickup__slider .slick-dots li.slick-active button {
	background-color: #B79D5D;
	height: 55px;
}

.p-top .s-pickup__item {
	position: relative;
	text-align: center;
}
.p-top .s-pickup__item:after {
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(177, 141, 64, 0.43);
}
.p-top .s-pickup__item--inner {
	margin: 18px;
	display: none;
	padding: 70px 4% 50px;
	transition: all 0.3s;
	background-color: rgba(250, 247, 242, 0.81);
}
.p-top .s-pickup__item.slick-current.slick-active .s-pickup__item--inner {
	display: block;
}
.p-top .s-pickup__item.slick-current.slick-active:after {
	content: none;
}
.p-top .s-pickup__item img {
	margin: 0 auto;
}
.p-top .s-pickup__item--thumb {
	padding-top: 18px;
}
.p-top .s-pickup__item--ttl {
	font-size: 19px;
	margin-top: 2px;
	letter-spacing: 1px;
}
.p-top .s-pickup__item.item01 {
	background: url(../image/top/pickup-img01.jpg);
}
.p-top .s-pickup__item.item02 {
	background: url(../image/top/pickup-img02.jpg);
}
.p-top .s-pickup__item.item03 {
	background: url(../image/top/pickup-img03.jpg);
}

@media screen and (max-width: 767px) {
	.p-top .s-pickup__slider .slick-prev {
		left: 3%;
	}
	.p-top .s-pickup__slider .slick-next {
		right: 3%;
	}
	.p-top .s-pickup__slider .slick-dots li {
		margin: 0 4px;
	}
	.p-top .s-pickup__slider .slick-dots {
		bottom: -60px;
	}
	.p-top .s-pickup__slider .slick-dots li button {
		width: 6px;
		height: 40px;
	}
	.p-top .s-pickup__slider .slick-dots li.slick-active button {
		height: 50px;
	}
	.p-top .s-pickup__item--inner {
		margin: 12px;
		padding: 40px 4% 35px;
	}
	.p-top .s-pickup__item--ttl {
		font-size: 1.7rem;
	}
}

/* .p-top section-popular
------------------------------------------------------------*/
.p-top .s-popular__btn {
	color: #ac8e40;
	margin: 63px auto 0;
	background-color: #fff;
	border: 1px solid #ac8e40;
}

@media screen and (max-width: 767px) {
	.p-top .s-popular__btn {
		margin: 50px auto 0;
	}
}

/* .p-top section-about
------------------------------------------------------------*/
.p-top .s-about__image {
	height: 522px;
	background: url(../image/top/about-image.jpg);
}
.p-top .s-about__detail {
	padding-bottom: 75px;
	background: url(../image/top/about-bg.jpg);
}
.p-top .s-about__item {
	position: relative;
}
.p-top .s-about__item--img {
	z-index: 1;
	border-radius: 10px;
}
.p-top .s-about__item--txt {
	max-width: 445px;
}
.p-top .s-about__item h3 {
	font-size: 29px;
	line-height: 1.5;
	letter-spacing: 1px;
}
.p-top .s-about__item p {
	font-size: 16px;
	line-height: 2;
	letter-spacing: 1px;
}
.p-top .s-about__item p + p {
	margin-top: 38px;
}
.p-top .s-about__item.item02:before {
	content: "";
	top: -98px;
	right: -50px;
	width: 290px;
	height: 240px;
	position: absolute;
	mix-blend-mode: multiply;
	background: url(../image/top/about-icon01.png) center no-repeat;
}
.p-top .s-about__item.item02:after {
	content: "";
	left: -90px;
	bottom: -38px;
	width: 192px;
	height: 210px;
	position: absolute;
	mix-blend-mode: multiply;
	background: url(../image/top/about-icon03.png) center no-repeat;
}
.p-top .s-about__item.item01 .s-about__item--img {
	max-width: 500px;
	min-height: 375px;
	margin-top: -72px !important;
	background: url(../image/top/about-img01.jpg);
}
.p-top .s-about__item.item01 .s-about__item--txt {
	margin: 0 auto 0 6%;
	padding-top: 78px;
}
.p-top .s-about__item.item01 .s-about__item--txt p {
	margin-top: 38px;
}
.p-top .s-about__item.item02 {
	margin-top: 62px;
}
.p-top .s-about__item.item02 .s-about__item--img {
	max-width: 392px;
	min-height: 260px;
	margin: 7% auto 0 4%;
	background: url(../image/top/about-img02.jpg);
}
.p-top .s-about__item.item02 .s-about__item--txt {
	margin: 0 7% 0 auto;
}

.p-top .s-about__item.item03 {
	margin-top: -23px;
}
.p-top .s-about__item.item03:after {
	content: "";
	top: -55px;
	right: -85px;
	width: 237px;
	height: 223px;
	position: absolute;
	mix-blend-mode: multiply;
	background: url(../image/top/about-icon02.png);
}
.p-top .s-about__item.item03 .s-about__item--img {
	padding-right: 6%;
	margin-right: 2%;
}
.p-top .s-about__item.item03 .s-about__item--txt {
	margin: 100px auto 0 0;
}
.p-top .s-about__item.item03 .s-about__item--img ul {
	position: relative;
}
.p-top .s-about__item.item03 .s-about__item--img1 {
	width: 29vw;
	height: 22vw;
	max-width: 410px;
	max-height: 308px;
	margin-left: auto;
	border-radius: 10px;
	background: url(../image/top/about-img03_1.jpg);
}
.p-top .s-about__item.item03 .s-about__item--img2 {
	left: 60px;
	bottom: -119px;
	width: 19vw;
	height: 12.5vw;
	max-width: 270px;
	max-height: 180px;
	border-radius: 10px;
	/* margin: -57px 0 0 57px; */
	position: absolute;
	background: url(../image/top/about-img03_2.jpg);
}
.p-top .s-about__note {
	font-size: 16px;
	text-align: center;
	margin-top: 80px;
}
.p-top .s-about__note p + p {
	margin-top: 10px;
}
.p-top .s-about__logo {
	text-align: center;
	margin-top: 18px;
}
.p-top .s-about__btn {
	margin: 20px auto 0;
}
@media screen and (max-width: 1400px) {
	.p-top .s-about__item.item03 .s-about__item--img2 {
		left: 5vw;
		bottom: -8vw;
	}
}
@media screen and (max-width: 767px) {
	.p-top .s-about__image {
		height: 75vw;
	}
	.p-top .s-about__detail {
		padding-bottom: 70px;
	}
	.p-top .s-about__item + .s-about__item {
		margin-top: 60px !important;
	}
	.p-top .s-about__item:nth-child(even) {
		flex-direction: column-reverse;
	}
	.p-top .s-about__item--img {
		max-width: 100% !important;
		margin: 0 auto !important;
		padding: 0 !important;
	}
	.p-top .s-about__item--txt {
		max-width: 100%;
		margin: 45px auto 0 !important;
		padding-top: 0 !important;
	}
	.p-top .s-about__item h3 {
		font-size: 2.3rem;
	}
	.p-top .s-about__item p + p {
		margin-top: 30px;
	}
	.p-top .s-about__item.item02:before {
		content: "";
		top: -98px;
		right: -50px;
		width: 290px;
		height: 240px;
		position: absolute;
		mix-blend-mode: multiply;
		background: url(../image/top/about-icon01.png) center no-repeat;
	}
	.p-top .s-about__item.item02:after {
		content: "";
		left: -90px;
		bottom: -38px;
		width: 192px;
		height: 210px;
		position: absolute;
		mix-blend-mode: multiply;
		background: url(../image/top/about-icon03.png) center no-repeat;
	}
	.p-top .s-about__item.item01 .s-about__item--img {
		min-height: 70vw;
	}
	.p-top .s-about__item.item01 .s-about__item--txt p {
		margin-top: 30px;
	}
	.p-top .s-about__item.item02 .s-about__item--img {
		min-height: 60vw;
	}
	.p-top .s-about__item.item03:after {
		content: "";
		top: -55px;
		right: -85px;
		width: 237px;
		height: 223px;
		position: absolute;
		mix-blend-mode: multiply;
		background: url(../image/top/about-icon02.png);
	}
	.p-top .s-about__item.item03 .s-about__item--img {
		height: 80vw;
	}
	.p-top .s-about__item.item03 .s-about__item--img1 {
		width: 80%;
		height: 55vw;
		max-width: 100%;
		max-height: 100%;
	}
	.p-top .s-about__item.item03 .s-about__item--img2 {
		left: 0;
		bottom: -25vw;
		width: 60%;
		height: 36vw;
		max-width: 100%;
		max-height: 100%;
	}
	.p-top .s-about__note {
		margin-top: 70px;
	}

	.p-top .s-about__btn {
		margin: 30px auto 0;
	}
}

/* .p-top section-news
------------------------------------------------------------*/
.p-top .s-news__list {
	max-width: 890px;
	margin: 0 auto;
}
.p-top .s-news__btn {
	margin: 50px auto 0;
}

/*------------------------------------------------------------
p-menu
------------------------------------------------------------*/
.p-menu .c-topic span {
	font-size: 38px;
    padding: 12px 0 1px;
    line-height: 1;
	font-weight: 500;
	font-family: "Adobe Naskh", sans-serif;
}
@media screen and (max-width: 767px) {
	.p-menu .c-topic span {
		font-size: 3rem;
		padding: 9px 0 0;
	}
}

.p-menu .s-piece {
	padding: 45px 0;
}

.p-menu .s-combo {
	overflow: visible;
	padding-top: 1px;
}

/* .p-menu section-detail
------------------------------------------------------------*/
.p-menu .s-single .details {
	padding: 50px 0 105px;
}
.p-menu .s-single__img {
	border-radius: 8px;
	overflow: hidden;
}
.p-menu .slide-single .s-single__img {
	height: 478px;
}
.p-menu .slide-nav .slick-track {
	width: 100% !important;
	display: flex;
	flex-wrap: wrap;
}
.p-menu .slide-nav .s-single__img {
	width: calc((100% - 36px) / 4) !important;
	height: 9vw;
	max-height: 130px;
	cursor: pointer;
	margin-top: 12px;
	opacity: .6;
}
@media screen and (min-width: 768px) {
	.p-menu .slide-nav .s-single__img:not(:nth-child(4n)) {
		margin-right: 12px;
	}
}
.p-menu .slide-nav .s-single__img.is-active {
	opacity: 1;
}

.p-menu .s-single__sideright {
	margin-left: 5%;
}
.p-menu .s-single__ttl {
	font-size: 29px;
	letter-spacing: 2px;
}
.p-menu .s-single__price {
	font-size: 17px;
	margin-top: 25px;
	letter-spacing: 2px;
}
.p-menu .s-single__price span {
	font-size: 25px;
}
.p-menu .s-single__weight {
	font-size: 17px;
	margin-top: 13px;
}
.p-menu .s-single__add {
	align-items: center;
	margin-top: 25px;
	border-top: 1px solid #D3B467;
	border-bottom: 1px solid #D3B467;
}
.p-menu .s-single__addleft {
	width: 42%;
	padding: 25px 0;
}
.p-menu .s-single__addright {
	width: 58%;
	padding: 25px 0;
	border-left: 1px solid #D3B467;
}
.p-menu .s-single__add--num {
	color: #BD9D50;
	margin: 0 auto;
	max-width: 182px;
}
.p-menu .s-single__add--num tr:nth-child(2) {
	color: #282D2E;
}
.p-menu .s-single__add--num th {
	padding: 8px;
	font-weight: bold;
	border: 1px solid #BD9D50;
}
.p-menu .s-single__add--btn {
	color: #fff;
	width: 100%;
	padding: 15px;
	display: block;
	font-size: 17px;
	max-width: 236px;
	text-align: center;
	border-radius: 40px;
	background-color: #BD9D50;
	margin: 0 auto;
}
.p-menu .s-single__desc {
	font-size: 17px;
	line-height: 1.7;
	margin-top: 30px;
}

.p-menu .s-single__note {
	margin-top: 30px;
	border-radius: 8px;
	background-color: #FBF5E9;
}
.p-menu .s-single__note h5 {
	font-size: 29px;
	font-family: "Kaisei HarunoUmi", sans-serif;
}
.p-menu .s-single__note p {
	font-size: 17px;
	line-height: 1.7;
	margin-top: 5px;
}
.p-menu .s-single__note--txt {
	width: 78%;
	padding: 20px 0 20px 28px;
}
.p-menu .s-single__note--img {
	width: 33%;
    display: flex;
	align-items: center;
    justify-content: center;
    mix-blend-mode: multiply;
}

.p-menu .s-single__list {
	margin-top: 30px;
	border-top: 1px solid #D3B467;
}
.p-menu .s-single__list dl {
	border-bottom: 1px solid #D3B467;
}
.p-menu .s-single__list dt {
	cursor: pointer;
	font-size: 18px;
	padding: 19px 0;
	position: relative;
}
.p-menu .s-single__list dt:after {
	content: "";
	top: 50%;
	right: 0;
	width: 20px;
	height: 20px;
	position: absolute;
	transform: translate(0, -50%);
	background: url(../image/menu/ic-down.png) center no-repeat;
	background-size: cover;
}
.p-menu .s-single__list dt.active:after {
	transform: translate(0, -50%) rotate(180deg);
}
.p-menu .s-single__list dd {
	display: none;
	font-size: 16px;
	padding-bottom: 19px;
}

@media screen and (max-width: 767px) {
	.s-single .slide-single .s-single__img {
		height: 70vw;
	}
	.p-menu .slide-nav .s-single__img {
		width: calc((100% - 24px) / 3) !important;
		height: 19vw;
		max-height: 146px;
	}
	.p-menu .slide-nav .s-single__img:not(:nth-child(3n)) {
		margin-right: 12px;
	}

	.p-menu .s-single__sideright {
		margin: 55px 0 0;
	}
	.p-menu .s-single__ttl {
		font-size: 2.7rem;
	}

	.p-menu .s-single__addleft {
		width: 100%;
	}
	.p-menu .s-single__addright {
		width: 100%;
		border-left: 0;
		border-top: 1px solid #D3B467;
	}
	
	.p-menu .s-single__add--btn {
		padding: 13px;
		font-size: 1.6rem;
	}
	
	.p-menu .s-single__note--txt {
		width: 100%;
		padding: 20px 20px 10px 20px;
	}
	.p-menu .s-single__note--img {
		width: 100%;
		padding-bottom: 10px;
	}
}

/* .p-menu section-commit
------------------------------------------------------------*/
.p-menu .s-commit {
	position: relative;
	overflow: visible;
	padding-top: 1px;
	background-color: #FAF7F2;
}
.p-menu .s-commit__list {
	z-index: 1;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
}
.p-menu .s-commit__list li {
	width: calc((100% - 10%) / 3);
}
@media screen and (min-width: 768px) {
	.p-menu .s-commit__list li:not(:nth-child(-n+3)) {
		margin-top: 7%;
	}
}
.p-menu .s-commit__list--img {
	height: 50vw;
	max-height: 240px;
	border-radius: 6px;
}
.p-menu .s-commit__list li h3 {
	font-size: 20px;
	text-align: center;
	margin-top: 25px;
}
.p-menu .s-commit__list li p {
	font-size: 16px;
	margin-top: 13px;
}

@media screen and (max-width: 767px) {
	.p-menu .s-commit__list li {
		width: 100%;
		max-width: 100%;
	}
	.p-menu .s-commit__list li:not(:last-child) {
		margin-bottom: 50px;
	}
	.p-menu .s-commit__list--img {
		height: 60vw;
	}
}


/*------------------------------------------------------------
p-policy
------------------------------------------------------------*/
.c-df {
	display: flex;
}

.p-policy p, .p-policy li {
	font-size: 16px;
}
.p-policy .s-policy__list {
	margin-top: 50px;
}
.p-policy .s-policy__list > li + li {
	margin-top: 30px;
}
.p-policy .s-policy__list h3 {
	font-size: 20px;
	margin-bottom: 18px;
}
.p-policy .s-policy__list p + p,
.p-policy .s-policy__list--sub + p,
.p-policy p + .s-policy__list--sub {
	margin-top: 28px;
}
.p-policy .s-policy__list--sub {
	margin-left: 1.2em;
	list-style: lower-alpha;
}
.p-policy .s-policy__list--sub li::marker {
	font-size: 16px;
}
.p-policy .s-policy__list--sub li {
	line-height: 2;
}
@media screen and (max-width: 1300px) {
}
@media screen and (max-width: 767px) {
	.p-policy p, .p-policy li {
		font-size: 1.4rem;
	}
	.p-policy .s-policy__list h3 {
		font-size: 1.8rem;
	}
	.p-policy .s-policy__list--sub li::marker {
		font-size: 1.4rem;
	}
}


/*------------------------------------------------------------
p-transaction
------------------------------------------------------------*/
.p-transaction .c-topic span {
	max-width: 463px;
}
.p-transaction table tr {
	border-top: 1px solid #D3B467;
	border-bottom: 1px solid #D3B467;
}
.p-transaction table th, .p-transaction table td {
	padding: 18px 10px;
}
.p-transaction table th {
	width: 37%;
	max-width: 28%;
	font-size: 19px;
	text-align: left;
	vertical-align: top;
}
.p-transaction table td {
	font-size: 16px;
}
.p-transaction table p + p {
	margin-top: 25px;
}
.p-transaction table ul li {
	position: relative;
	padding-left: 16px;
}
.p-transaction table ul li:after {
	content: "・";
	top: 0;
	left: 0;
	position: absolute;
}
@media screen and (max-width: 767px) {
	.p-transaction table th, .p-transaction table td {
		display: block;
	}
	.p-transaction table th {
		width: 100%;
		max-width: 100%;
		font-size: 1.7rem;
	}
	.p-transaction table td {
		font-size: 1.4rem;
		padding-top: 0;
	}
}


/*------------------------------------------------------------
p-howto
------------------------------------------------------------*/
.p-howto .s-howto ul + ul {
	margin-top: 75px;
}
.p-howto .s-howto h2 {
	font-size: 19px;
	margin-bottom: 20px;
	padding: 0 0 10px 10px;
	border-bottom: 1px solid #D3B467;
}
.p-howto .s-howto dl {
	display: flex;
	font-size: 16px;
	line-height: 1.7;
}
.p-howto .s-howto dl + dl {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px dashed #D3B467;
}
.p-howto .s-howto dt {
	width: 25%;
	padding-left: 3%;
}
.p-howto .s-howto dd {
	width: calc(100% - 25%);
}
.p-howto .s-howto p + p {
	margin-top: 25px;
}
.p-howto .s-howto img + p, .p-howto .s-howto p + img {
	margin-top: 15px;
}
.p-howto .s-howto a {
    font-size: 17px;
    max-width: 260px;
    padding: 14px 0;
	margin: 30px 0 0;
}
@media screen and (max-width: 767px) {
	.p-howto .s-howto ul + ul {
		margin-top: 55px;
	}
	.p-howto .s-howto h2 {
		font-size: 1.7rem;
	}
	.p-howto .s-howto dl {
		display: block;
		font-size: 1.4rem;
	}
	.p-howto .s-howto dt {
		width: 100%;
		padding-left: 0;
	}
	.p-howto .s-howto h3 {
		margin-bottom: 20px;
	}
	.p-howto .s-howto dd {
		width: 100%;
	}
}

/*------------------------------------------------------------
p-company
------------------------------------------------------------*/
.p-company .s-intro__box {
	padding: 65px 0 45px;
}
.p-company .s-intro__img {
	overflow: hidden;
	margin-right: 4%;
	border-radius: 10px;
    border: 10px solid transparent;
    background: linear-gradient(to right, #decc82, #caad61) border-box;
}
.p-company .s-intro__img--pic {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-image: url(../image/company/image.jpg);
}
.p-company .c-table tr {
	border-top: 1px solid #D3B467;
	border-bottom: 1px solid #D3B467;
}
.p-company .c-table th, .p-company .c-table td {
	font-size: 16px;
	padding: 20px 10px;
	text-align: left;
	vertical-align: top;
}
.p-company .c-table th {
	width: 17%;
	min-width: 90px;
}
.p-company .s-intro__map {
	position: relative;
	padding-top: 70%;
	margin-top: 50px;
}
@media screen and (max-width: 767px) {
	.p-company .s-intro__box {
		padding: 55px 0 40px;
	}
	.p-company .s-intro__img {
		margin: 0 0 40px;
		height: 90vw;
		border: 7px solid transparent;
	}
	.p-company .c-table th, .p-company .c-table td {
		font-size: 1.4rem;
	}
	.p-company .s-intro__map {
		padding-top: 85%;
	}
}


/* .p-company section-profile
------------------------------------------------------------*/
.p-company .s-profile {
	background-color: #FAF7F2;
	overflow: visible;
	padding-top: 1px;
	position: relative;
}
.p-company .s-profile:after {
	content: none;
}

/*------------------------------------------------------------
p-news
------------------------------------------------------------*/
.p-news .s-single__txt {
	font-size: 16px;
	margin-top: 30px;
}
.p-news .s-single__btn {
	color: #AC8E40;
	margin: 60px auto 0;
	background-color: #fff;
	border: 1px solid #D8C378;
}
@media screen and (max-width: 767px) {
	.p-news .s-single__btn {
		margin: 50px auto 0;
	}
}

/*------------------------------------------------------------
  c-pagination
  ------------------------------------------------------------*/
.c-pagination {
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 70px;
}
.c-pagination a,
.c-pagination span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	display: block;
}
.c-pagination a {
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.c-pagination a:hover {
	filter: alpha(opacity=50);
	opacity: 0.5;
}
.c-pagination span.current {
	color: #fff;
	background-color: #D3B467;
}

.c-pagination span.dots {
	border: none;
	min-width: auto;
}
.c-pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	margin: 0 8px;
	color: #D3B467;
	font-size: 40px;
	padding: 10px 0 0;
	border-radius: 50%;
	font-family: "Adobe Naskh", sans-serif;
	border: 1px solid #D3B467;
}
.c-pagination .next.page-numbers,
.c-pagination .prev.page-numbers {
	padding: 0;
}
@media screen and (max-width: 767px) {
	.c-pagination {
		margin-top: 50px;
	}
	.c-pagination .page-numbers {
		min-width: 36px;
		height: 36px;
		margin: 0 4px;
		font-size: 30px;
		padding: 8px 0 0;
	}
}
  