<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*
 shared.css
*/
/* -----------------------------------------------
= reset
----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
html {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
q, blockquote {
	quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}
a img {
	border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}
button,
textarea {
	margin: 0;
	padding: 0;
	color: inherit;
	background: transparent;
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
	font: inherit;
}
input {
	border-radius: 0;
	font: inherit;
}
button {
	cursor: pointer;
}
/* -----------------------------------------------
= font
----------------------------------------------- */
@font-face {
	font-family: "LINE Seed";
	src: url("../fonts/LINESeedJP_OTF_Rg.woff2") format("woff2");
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: "LINE Seed";
	src: url("../fonts/LINESeedJP_OTF_Bd.woff2") format("woff2");
	font-weight: bold;
	font-style: normal;
}
/* -----------------------------------------------
= base
----------------------------------------------- */
html {
	-webkit-text-size-adjust: 100%;
}
body {
	color: #0d0d0d;
	font-family: "LINE Seed", sans-serif;
	font-weight: normal;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
a {
	color: inherit;
	text-decoration: none;
}

.js-fadein {
  opacity: 0;
  transition : all 1500ms;
}

.js-fadein.-visible{
  opacity: 1;
}

/* -----------------------------------------------
= common
----------------------------------------------- */
html {
	font-size: 62.5%;
}
.is-pc {
	display: none;
}
.is-pc_inline {
	display: none;
}
.is-sp_inline {
	display: inline;
}
@media print, screen and (min-width: 768px) {/* PC */
html {
	font-size: calc(100vw / 130);
}
.is-pc {
	display: block;
}
.is-pc_inline {
	display: inline;
}
.is-sp {
	display: none;
}
.is-sp_inline {
	display: none;
}
}/* @media */
@media print, screen and (min-width: 1300px) {/* widePC */
html {
	font-size: 62.5%;
}
}/* @media */
/* -----------------------------------------------
= header
----------------------------------------------- */
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50;
	width: 100%;
	height: 6.5rem;
	background: #fff;
}
.header .logo {
	width: 15rem;
	padding: 1.5rem 1.4rem 1.4rem;
}
.header .insta {
	position: absolute;
	top: 1.8rem;
	right: 7.3rem;
	width: 3.1rem;
}
.header .nav_btn {
	position: absolute;
	top: .8rem;
	right: 0;
	width: 5.7rem;
	height: 5rem;
	border-left: 1px dotted #b2b2b2;
}
.header .nav_btn button {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
.header .nav_btn button::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url(../img/shared/nav_btn.png) no-repeat 50% / cover;
}
.is-nav_opened .header .nav_btn button::before {
	background: url(../img/shared/nav_btn_close.png) no-repeat 50% / cover;
}
.header .nav_btn span {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
.header .nav_btn span::after {
	content: 'MENU';
	position: absolute;
	right: 0;
	bottom: .3rem;
	width: 100%;
	font-size: .9rem;
	font-weight: 700;
	text-align: center;
}
.is-nav_opened .header .nav_btn span::after {
	content: 'CLOSE';
}
.header .nav {
	position: fixed;
	top: 6.5rem;
	left: 0;
	width: 100%;
	max-height: calc(100% - 6.5rem);
	background: #fff;
	overscroll-behavior: contain;
	overflow-y: auto;
	opacity: 0;
	pointer-events: none;
	transition: opacity .4s;
}
.is-nav_opened .header .nav {
	opacity: 1;
	pointer-events: auto;
}
.header .nav ul {
	padding: 2.4rem 0 2rem;
}
.header .nav li {
	margin: 0 0 3.5rem;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
}
.header .nav li ul {
	display: none;
}
@media print, screen and (min-width: 768px) {/* PC */
.header {
	height: 10rem;
}
.header .logo {
	position: relative;
	z-index: 1;
	width: 22.1rem;
	padding: 2.1rem 2.2rem 2.6rem;
}
.header .insta {
	top: 3.5rem;
	right: 3.4rem;
}
.header .nav {
	position: absolute;
	top: 2.8rem;
	right: 8.8rem;
	width: auto;
	height: auto;
	background: transparent;
	overflow: visible;
	opacity: 1;
	pointer-events: auto;
}
.header .nav ul {
	display: flex;
	justify-content: end;
	padding: 0;
}
.header .nav li {
	position: relative;
	margin: 0 0 0 3rem;
	padding-bottom: 2.7rem;
}
.header .nav li a {
	display: inline-block;
	position: relative;
	padding: 1.5rem .2rem;
}
.header .nav li.current a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: .5rem;
	background: #48aa46;
	border-radius: .5rem;
}
.header .nav li a:hover {
	color: #48aa46;
}
.header .nav li ul {
	display: block;
	position: absolute;
	top: 7.2rem;
	left: calc(50% - 10rem);
	width: 20rem;
	padding: 0 0 2rem;
	background: #48aa46;
	border-radius: 0 0 2rem 2rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.header .nav li:hover ul {
	opacity: 1;
	pointer-events: auto;
}
.header .nav li ul li {
	margin: 0 1.8rem;
	padding: 0;
	border-bottom: 1px dashed rgba(255,255,255,.5);
	line-height: 2.4rem;
}
.header .nav li ul a {
	display: block;
	padding: 1.4rem 0;
	color: #fff;
}
.header .nav li ul a:hover {
	color: #fff;
	text-decoration: underline;
}
.header .nav li ul a::after {
	display: none;
}
}/* @media */
/* -----------------------------------------------
= main
----------------------------------------------- */
.main {
	margin-top: 6.5rem;
	letter-spacing: .04em;
}
@media print, screen and (min-width: 768px) {/* PC */
.main {
	margin-top: 10rem;
}
}/* @media */
/* -----------------------------------------------
= footer
----------------------------------------------- */
.footer .contact dl {
	position: relative;
	z-index: 1;
	margin-right: 1.8rem;
	padding: 2.5rem 3rem 2rem;
	background: #ecf6ec;
	border-radius: 0 1rem 1rem 0;
}
.footer .contact dt {
	margin-bottom: 1.3rem;
	font-size: 3.1rem;
	font-weight: bold;
}
.footer .contact dt img {
	display: inline-block;
	width: 2.8rem;
	margin-right: 1rem;
}
.footer .contact dd p {
	font-size: 1.3rem;
	line-height: 2rem;
}
.footer .contact dd p + p {
	margin-top: .5rem;
}
.footer .contact dd a {
	color: #48aa46;
}
.footer .inner {
	margin-top: -9rem;
	padding: 12rem 1.8rem .5rem;
	color: #fff;
	background: #6a381c;
	text-align: center;
}
.footer .logo {
	margin-bottom: 3rem;
}
.footer .logo img {
	width: 29.1rem;
}
.footer ul {
	display: flex;
	flex-wrap: wrap;
}
.footer li {
	position: relative;
	width: 50%;
	margin-bottom: 2.7rem;
	font-size: 1.3rem;
}
.footer li::before {
	content: '/';
	position: absolute;
	top: 0;
	left: 0;
	color: #927463;
}
.footer li:nth-child(2n)::after,
.footer li:last-child::after {
	content: '/';
	position: absolute;
	top: 0;
	right: -.5em;
	color: #927463;
}
.footer .copyright {
	padding: 1.5rem 0;
	color: #8c8c8c;
	background: #fff;
	font-size: 1.2rem;
	line-height: 2rem;
	text-align: center;
	letter-spacing: .08em;
}
.footer .pagetop {
	position: fixed;
	right: 1.2rem;
	bottom: 7.3rem;
	z-index: 10;
	width: 4rem;
	height: 4rem;
}
.footer .pagetop button {
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
	border: 1px solid #48aa46;
	border-radius: 50%;
}
.footer .pagetop button::after {
	content: '';
	position: absolute;
	top: 1.3rem;
	left: calc(50% - .6rem);
	width: 1.2rem;
	height: 1rem;
	background: #48aa46;
	clip-path: polygon(50% 0, 0 100%, 100% 100%);
}
.footer .pagetop button span {
	display: none;
}
@media print, screen and (min-width: 768px) {/* PC */
.footer .contact {
	position: relative;
	z-index: 1;
}
.footer .contact_in {
	max-width: 110rem;
	margin: 0 auto;
}
.footer .contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 50%;
	height: 100%;
	background: #ecf6ec;
}
.footer .contact dl {
	display: flex;
	margin-right: 15rem;
	padding: 5rem 0;
	border-radius: 0 2rem 2rem 0;
}
.footer .contact dt {
	margin: 1rem 4.8rem 0 0;
	font-size: 5rem;
}
.footer .contact dt img {
	width: 4.6rem;
	margin-right: 1.6rem;
}
.footer .contact dd p {
	font-size: 1.6rem;
	line-height: 3rem;
}
.footer .contact dd p + p {
	margin-top: 0;
}
.footer .contact dd a:hover {
	text-decoration: underline;
}
.footer .inner {
	margin-top: -8.6rem;
	padding: 11.6rem 0 4rem;
}
.footer .logo {
	margin-bottom: 3.5rem;
}
.footer .logo img {
	width: 45.4rem;
}
.footer ul {
	justify-content: center;
}
.footer li {
	width: auto;
	margin: 0 2rem 0 0;
	padding-left: 2rem;
	font-size: 1.6rem;
}
.footer li:last-child {
	padding-right: 2rem;
}
.footer li:nth-child(2n)::after {
	display: none;
}
.footer li a:hover {
	text-decoration: underline;
}
.footer .copyright {
	padding: 2.2rem 0;
	font-size: 1.4rem;
}
.footer .pagetop {
	display: none;
	right: 5rem;
	bottom: 4rem;
	width: 6rem;
	height: 6rem;
}
.footer .pagetop button {
	transition: .3s;
}
.footer .pagetop button:hover {
	background: #48aa46;
}
.footer .pagetop button::after {
	top: 2rem;
	left: calc(50% - .8rem);
	width: 1.6rem;
	height: 1.4rem;
	transition: background .3s;
}
.footer .pagetop button:hover::after {
	background: #fff;
}
}/* @media */
/* -----------------------------------------------
= page_ttl
----------------------------------------------- */
.page_ttl .set {
	padding: 1.2rem 0 1.8rem;
	color: #fff;
	background: #81511c;
	text-align: center;
}
.page_ttl .en {
	margin-bottom: 1.2rem;
	color: #cfa972;
	font-size: 5rem;
}
.page_ttl .en span {
	color: #48aa46;
}
.page_ttl h1 {
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: .04em;
}
.page_ttl .lead {
	margin-top: 1.5rem;
	font-size: 1.2rem;
	line-height: 2.5rem;
}
@media print, screen and (min-width: 768px) {/* PC */
.page_ttl {
	display: flex;
	align-items: start;
	height: 45rem;
}
.page_ttl .img {
	position: relative;
	z-index: 1;
	width: calc(700 / 1300 * 100%);
}
.page_ttl .img img {
	height: 45rem;
	object-fit: cover;
	border-radius: 0 0 10rem 0;
}
.page_ttl .set {
	flex: 1;
	display: grid;
	place-content: center;
	height: calc(100% - 5rem);
	margin-left: -1.5rem;
	padding: 0;
}
.page_ttl .en {
	margin-bottom: 2rem;
	font-size: 10rem;
}
.page_ttl h1 {
	font-size: 2.8rem;
}
.page_ttl .lead {
	margin-top: 3.5rem;
	font-size: 1.6rem;
	line-height: 3.2rem;
}
}/* @media */
/* -----------------------------------------------
= breadcrumb
----------------------------------------------- */
.breadcrumb {
	display: flex;
	justify-content: end;
	padding: 1rem 1.75rem 3rem;
}
.breadcrumb li {
	font-size: 1rem;
}
.breadcrumb li + li {
	position: relative;
	margin-left: .8rem;
	padding-left: 1.5rem;
}
.breadcrumb li + li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: .8rem;
	height: .8rem;
	background: url(../img/shared/icon_arrow01.svg) no-repeat 50% / 100% auto;
}
@media print, screen and (min-width: 768px) {/* PC */
.breadcrumb {
	max-width: 50rem;
	margin: -3rem auto 9rem;
	padding: 0 0 0 60rem;
}
.breadcrumb li {
	font-size: 1.5rem;
}
.breadcrumb li + li {
	margin-left: 1.2rem;
	padding-left: 2.3rem;
}
.breadcrumb li + li::before {
	top: .1rem;
	width: 1.2rem;
	height: 1.2rem;
}
.breadcrumb a:hover {
	color: #48aa46;
	text-decoration: underline;
}
}/* @media */
/* -----------------------------------------------
= contents
----------------------------------------------- */
.contents {
	padding: 0 1.8rem 6rem;
}
@media print, screen and (min-width: 768px) {/* PC */
.contents {
	max-width: 110rem;
	margin: 0 auto;
	padding: 0 0 12rem;
}
}/* @media */
/* -----------------------------------------------
= block
----------------------------------------------- */
.block .title {
	position: relative;
	margin-bottom: 2rem;
	padding-bottom: 1.8rem;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 3.3rem;
	text-align: center;
	letter-spacing: 0;
}
.block .title::after {
	content: '';
	position: absolute;
	left: calc(50% - 3.25rem);
	bottom: 0;
	width: 6.5rem;
	height: .3rem;
	background: #48aa46;
	border-radius: .15rem;
}
@media print, screen and (min-width: 768px) {/* PC */
.block .title {
	margin-bottom: 5rem;
	padding-bottom: 3.5rem;
	font-size: 4.4rem;
	line-height: 5rem;
}
.block .title::after {
	left: calc(50% - 7.5rem);
	width: 13rem;
	height: .5rem;
	border-radius: .25rem;
}
}/* @media */
/* -----------------------------------------------
= print
----------------------------------------------- */
@media print {
body {
	min-width: 100rem;
}
.header,
.header .nav,
.footer .pagetop {
	position: absolute;
}
}/* media */

</pre></body></html>