<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*------------------------------------------------------------------------------------

COMMON

------------------------------------------------------------------------------------*/

* { box-sizing: border-box; }
html { font-size: 62.5%; /*10px*/ }

body {
	width: 100%;
	height: auto;
	font-size: 1.3rem;
	color: #1f4d32;
	background: #fff;
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: 700;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
}

body.load { overflow: auto !important; }

h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd,blockquote,form,input,fieldset,legend { margin: 0; padding: 0; }

a, a:focus, a:active { text-decoration: none; color:inherit;}
li { list-style: none; }
p { line-height: 2; }

img { display: inline-block; width:100%; -webkit-backface-visibility: hidden; }
figure img { display: inline-block; }
picture { display: block; line-height: 0; }

main { display: block; opacity:0; transform:translate(0,50px); transition:all 600ms ease; }
.load main { opacity:1; transform:translate(0,0); }

/* micro clearfix http://nicolasgallagher.com/micro-clearfix-hack/ = */
.cf::before,.cf::after{content: "";display: table}
.cf::after{clear: both}
.cf{zoom:1}

.sp-none { display: none;}


/*FONT*/
.en { font-family: 'Ubuntu', sans-serif; font-weight:700;}
.normal { font-weight: 400; }
.nowrap { white-space: nowrap; }
.hide-txt { text-indent: 100%; white-space: nowrap; overflow: hidden; display: block; }

img.fit {
	object-fit: cover;
	font-family: 'object-fit: cover;'
}


/*---------------------------------------- HEADER */

#header {
	width: 100%;
	height: 60px;
	position: fixed;
	top: -60px;
	left: 0;
	z-index: 1000;
	transition: top 600ms ease;
}

.load #header {
	top: 0;
}

#header .headerInner {
	display: flex;
    align-items: center;
	width: calc(100% - 120px);
	height: 60px;
	padding: 0 60px 0 15px;
	background: rgba(255,255,255,.7);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
}

#header .headerLogo {
}

#header .headerLogo h1 {
	display:flex;
	align-items: center;
}

#header .headerLogo a {
	display: inline-block;
    width: 70px;
    height: 22.5px;
	line-height: 22.5px;
}

#header .headerLogo a img {
	width: 100%;
}

#header .headerLogo span {
	font-size: 1rem;
    line-height: 1;
    padding-left: 13px;
    transform: scale(.75);
    transform-origin: left center;
}


/*HEADER NAV*/

#headerNav .navbar {
	width:60px;
	height:60px;
	position:absolute;
	top:0;
	right:120px;
	transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
}

#headerNav .navbar span {
	display: block;
    width: 30px;
    height: 1px;
    background: #1f4d32;
    position: absolute;
	transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
}

#headerNav .navbar span:nth-child(1) {
	top: 26px;
    left: 15px;
}

#headerNav .navbar span:nth-child(2) {
	top: 34px;
    left: 15px;
}

#headerNav.active .navbar span:nth-child(1) {
	transform: rotate(45deg);
	top: 30px;
}

#headerNav.active .navbar span:nth-child(2) {
	transform: rotate(-45deg);
	top: 30px;
}

#headerNav .navbar .navOpen {
	width:100%;
	height:100%;
	position:relative;
	z-index:10;
}

#headerNav .navbar .navClose {
	width:100%;
	height:0;
	position:relative;
	z-index:20;
}

#headerNav.active .navbar .navOpen {
	height:0;
}

#headerNav.active .navbar .navClose {
	height:100%;
}

#headerNav nav {
	opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 60px;
    right: 0;
	width:auto;
	padding:20px;
	transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
}

#headerNav.active nav {
	opacity:1;
	visibility:visible;
}

#headerNav nav ul {
	padding: 25px 20px;
	background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,.15);
}

#headerNav nav ul li {
}

#headerNav nav ul li a {
	display: block;
    line-height: 1;
    font-size: 4vw;
    padding: 12px 0;
	position:relative;
	transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
}

#headerNav nav ul li a.hover {
	color:#00c150;
}

#headerNav nav ul li a:before {
	content: "";
	display:block;
	width: 10px;
	height: 10px;
	background:#00c150;
	border-radius:50%;
	position:absolute;
	top:0;
	bottom:0;
	left: -25px;
	margin:auto;
	opacity:0;
	transform:translate(-100%,0);
	transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
}

#headerNav nav ul li a.hover:before {
	transform:translate(0,0);
	opacity:1;
}


/*HEADER ENTRY*/

#header .entry {
	width: 120px;
	height: 60px;
	display:flex;
	position:absolute;
	top:0;
	right:0;
}

#header .entry a {
	display: flex;
    justify-content: center;
    align-items: center;
	width:60%;
	height:100%;
	background: #1f4d32;
	transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
}

#header .entry a:nth-child(2) {
	background: #4c814b;
}

#header .entry a.hover {
	background:#00c150;
}

#header .entry a span {
	display:inline-block;
	font-size: 1rem;
	line-height:1;
	color: #fff;
}

/*ログインボタンなし*/

#header .headerInner {
    width: calc(100% - 60px);
}

#headerNav .navbar {
    right: 60px;
}

#header .entry {
    width: 60px;
}

#header .entry a {
    width: 100%;
}


/*---------------------------------------- FOOTER */

#footer {
	width: 100%;
	padding: 20px;
	background: #fff;
	margin-top: 80px;
}

#footer .footerInner {
	padding: 30px 20px 25px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,.15);
	text-align:center;
}

#footer .footerInner h2 {
	text-align:center;
	margin-bottom: 20px;
}

#footer .footerInner h2 a {
	display: block;
    width: 100px;
    height: 32px;
    line-height: 32px;
	margin: 0 auto;
}

#footer .footerInner h2 a img {
	display:inline-block;
	width:100%;
}

#footer .footerInner h2 span {
	display: block;
    font-size: 1rem;
    line-height: 1;
    margin: 10px auto 0;
}

#footer .footerInner .btn {
	margin-top: 10px;
}

#footer .footerInner .btn a {
	box-shadow: none;
	min-width: 180px;
	border:1px solid #e6e6e6;
}

#footer .footerInner .btn a.hover {
	border-color: #00c150;
}

#footer .footerInner .copyrights {
	font-size: 1rem;
    line-height: 1;
    color: #000;
    opacity: .2;
    transform: scale(.75);
    margin-top: 15px;
}

#footer .pageTop {
	width: 100%;
	margin-top: 15px;
}

#footer .pageTop a {
	display: block;
	padding: 20px;
	background: #1f4d32;
    border-radius: 10px;
	line-height:0;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,.15);
	transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
}

#footer .pageTop a.hover {
	background:#00c150;
}

#footer .pageTop a img {
	display: block;
    width: 17.5px;
    margin: 0 auto;
}

#footer .pageTop a.hover img {
	animation: pageTop 300ms ease;
}

@keyframes pageTop {
	from, to { transform: translate(0,0); }
	48% { transform: translate(0,-150%); }
	49% { transform: translate(0,-150%); opacity:0; }
	50% { transform: translate(0,150%); opacity:0; }
	51% { transform: translate(0,150%); opacity:1; }
}

#footer .footerInner .btn a img {
	width: 100px;
    margin-right: 5px;
	transform: translate(0, -1px);
}


/*---------------------------------------- BUTTON */

.btn {
	display:inline-block;
}

.btn a {
    display: flex;
    align-items: center;
    justify-content: center;
	min-width: 150px;
    text-align: center;
    padding: 16px 20px;
    border-radius: 50px;
	background:#fff;
    box-shadow: 0 0 15px rgba(31,77,50,.2);
	transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
}

.btn a.hover {
	color: #fff;
	background:#00c150;
    box-shadow: 0 0 15px rgba(31,77,50,0);
}

.btn span {
	line-height:1;
}


/*---------------------------------------- CONTENTS-TITLE */

.width {
	width: 100%;
	padding: 0 30px;
}

.contentsTitle {
	width:100%;
	font-size: 3.6rem;
    letter-spacing: 2px;
    line-height: 1.2;
	position:relative;
	z-index:10;
	margin: 0 auto;
}

.contentsTitle span {
	display:block;
	font-size:1.2rem;
    letter-spacing: 3px;
	padding-bottom: 5px;
}

.contentsTitle.small {
	font-size: 3rem;
}

.contentsTitle.small span {
	font-size: 1rem;
    padding-bottom: 3px;
    letter-spacing: 2px;
}

.contentsTitle + p {
	line-height:1.8;
    padding-top: 12px;
}

.contentsTitle + p + .btn {
	margin-top: 30px;
}


/*---------------------------------------- PAGE-HEADER */

.pageHeader {
	padding-bottom: 60px;
    padding-top: 120px;
}

.pageHeader .pageHeadderTxt {
	padding-top: 30px;
}


/*------------------------------------------------------------------------------------

以下 TAB 用

------------------------------------------------------------------------------------*/

@media screen and (min-width: 481px) {
	
body {
	font-size:1.4rem;
}
	
.pc-none { 
	display:none;
}

/*---------------------------------------- HEADER */

#header {
	top: -100px;
    height: 100px;
}

#header .headerInner {
    width: calc(100% - 200px);
	height: 100px;
	padding: 0 20px;
}

#header .headerLogo a {
    width: 132px;
    height: 42.5px;
    line-height: 42.5px;
}

#header .headerLogo span {
    line-height: 1;
    padding-left: 15px;
    transform: none;
}


/*HEADER NAV*/

#headerNav .navbar {
	width:100px;
	height:100px;
    right: 200px;
}

#headerNav .navbar span {
    width: 50px;
}

#headerNav .navbar span:nth-child(1) {
    top: 45px;
    left: 25px;
}

#headerNav .navbar span:nth-child(2) {
    top: 55px;
    left: 25px;
}

#headerNav.active .navbar span:nth-child(1) {
	top: 50px;
}

#headerNav.active .navbar span:nth-child(2) {
	top: 50px;
}

#headerNav nav {
    top: 100px;
}

#headerNav nav ul {
    padding: 30px;
}

#headerNav nav ul li a {
	font-size: 3vw;
    padding: 15px 0;
}

#headerNav nav ul li a:before {
	left: -35px;
}

/*ENTRY*/

#header .entry {
    width: 200px;
	height: 100px;
}

#header .entry a {
	width: 100px;
}

#header .entry a span {
    font-size: inherit;
    letter-spacing: 1px;
}


/*ログインボタンなし*/

#header .headerInner {
    width: calc(100% - 100px);
}

#headerNav .navbar {
    right: 100px;
}

#header .entry {
    width: 100px;
}

/*---------------------------------------- FOOTER */

#footer .footerInner {
    padding: 40px 20px 25px;
}

#footer .footerInner h2 {
    margin-bottom: 10px;
}

#footer .footerInner h2 a {
    width: 132px;
    height: 42.5px;
    line-height: 42.5px;
}

#footer .footerInner .btn {
	display:inline-block;
}

#footer .footerInner .btn:not(:last-of-type) {
	margin-right: 10px;
}


/*---------------------------------------- CONTENTS-TITLE */

.width {
	width: 80%;
    max-width: 1000px;
	padding: 0;
	margin: 0 auto;
}

.contentsTitle {
    font-size: 4.8rem;
    letter-spacing: 2px;
    line-height: 1.2;
    position: relative;
    z-index: 10;
    margin: 0 auto;
}

.contentsTitle span {
    font-size: 1.8rem;
    padding-bottom: 6px;
}

.contentsTitle.small {
    font-size: 3.4rem;
}

.contentsTitle.small span {
    font-size: 1.2rem;
    padding-bottom: 4px;
}


/*---------------------------------------- PAGE-HEADER */

.pageHeader {
	padding-bottom: 80px;
    padding-top: 160px;
}



}

/*------------------------------------------------------------------------------------

以下 PC 用

------------------------------------------------------------------------------------*/

@media print, screen and (min-width: 769px) {
	
body {
	font-size:1.5rem;
}

/*---------------------------------------- HEADER */
	
#header {
	width: calc(100% - 40px);
    height: 100px;
    position: fixed;
    top: -140px;
    left: 20px;
}

.load #header {
    top: 20px;
}

#header .headerInner {
    width: calc(100% - 240px);
    height: 100px;
	padding: 0 20px;
	box-shadow: 0 0 15px rgba(0,0,0,.15);
    border-radius: 10px;
}

#header .headerLogo a {
    width: 150px;
    height: 48px;
    line-height: 48px;
}

#header .headerLogo span {
    padding-left: 15px;
    transform: none;
}


/*HEADER NAV*/

#headerNav .navbar {
	display:none;
}

#headerNav nav {
    opacity: 1;
    visibility: visible;
    position: absolute;
    top: 50%;
    right: 270px;
    transform: translate(0, -50%);
    width: auto;
    padding: 0;
}

#headerNav nav ul {
	display:flex;
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

#headerNav nav ul li:not(:first-child) {
    margin-left: 20px;
}
	
#headerNav nav ul li a {
	font-size: 1.5rem;
	line-height:100px;
    padding: 0;
}

#headerNav nav ul li a:before {
    top: auto;
    bottom: 20px;
    left: 0;
	right:0;
    margin: auto;
    opacity: 0;
    transform: translate(0,100%);
}
	

/*ETNRY*/

#header .entry {
    width: 220px;
    height: 100px;
	justify-content: space-between;
}

#header .entry a {
	width: 100px;
	height: 100px;
	overflow:hidden;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(0,0,0,.15);
	z-index:1;
}

#header .entry a span {
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-indent: 3px;
}

/*ログインボタンなし*/

#header .headerInner {
    width: calc(100% - 120px);
}

#headerNav nav {
    right: 160px;
}

#header .entry {
    width: 100px;
}


/*---------------------------------------- FOOTER */
	
#footer {
	display:flex;
    height: 220px;
	margin-top: 120px;
}
	
#footer .footerInner {
	display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px 0 20px;
    width: calc(100% - 120px);
    position: relative;
    padding-left: 340px;
    flex-wrap: wrap;
    align-content: center;
}

#footer .footerInner h2 {
    display: flex;
    align-items: center;
    text-align: left;
    margin-bottom: 0;
    position: absolute;
    left: 20px;
}

#footer .footerInner h2 a {
	width: 150px;
    height: 48px;
    line-height: 48px;
}

#footer .footerInner h2 span {
    margin: 0 0 0 15px;
}

#footer .pageTop {
    width: 100px;
    height: 180px;
    margin-top: 0;
    margin-left: 20px;
}

#footer .pageTop a {
    display: flex;
    align-items: center;
    padding: 0;
    height: 100%;
}

#footer .footerInner .btn {
	margin-top:0;
}

#footer .footerInner .btn {
	padding: 5px 0;
    margin-right: 10px;
}

#footer .footerInner .copyrights {
    margin-top: 0;
    position: absolute;
    left: 12px;
    bottom: 20px;
	transform:scale(.9);
}


/*---------------------------------------- BUTTON */

.btn a {
	min-width: 180px;
	padding: 18px 22px;
}
	

/*---------------------------------------- PAGE-HEADER */

.pageHeader {
	padding-bottom: 80px;
    padding-top: 190px;
}
	
	
	
	
	
	
	
	
}</pre></body></html>