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

/* CSS Information
---------------------------------------------------------------
Site URL:https://xxxxxxxxxxxxxxxxxxxx/
File name:common_sp.css
Summary:reset styles
Created:2022-10-19
--------------------------------------------------------------- */

@media screen and (max-width: 1220px) {

body {
	font-size: 14px !important;
}

/* Link */
/* ------------------------------------------------------------ */

a {
	font-family: KiwiMaru;
	color: #000;
}

a:link,
a:visited {
	text-decoration: none;
}

a:hover,
a:active {
	text-decoration: none;
}

img,
.alpha {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.alpha:hover {
	filter: alpha(opacity=50);
	opacity: 0.5;
}

/* Font */
/* ------------------------------------------------------------ */

em {
	font-style: normal;
}

sup {
	font-size: 66%;
	vertical-align: top;
}

sub {
	font-size: 66%;
	vertical-align: baseline;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */

.indent {
	text-indent: -1em;
	margin-left: 1em;
}

/* Align */
/* ------------------------------------------------------------ */

.a_left {
	text-align: left !important;
}

.a_center {
	text-align: center !important;
}

.a_right {
	text-align: right !important;
}

/* Float */
/* ------------------------------------------------------------ */

.f_left {
	float: left;
}

.f_right {
	float: right;
}

/* Clear */
/* ------------------------------------------------------------ */

.clfx::after {
	content: '';
	height: 0;
	clear: both;
	display: block;
	visibility: hidden;
}

/* HR */
/* ------------------------------------------------------------ */

hr {
	height: 1px;
	margin: 60px 0;
	padding: 0;
	display: block;
	border: 0;
	border-top: 1px #e6e6e6 solid;
}

/* Center合わせ */
/* ------------------------------------------------------------ */

.c_mgn {
	margin-left: auto;
	margin-right: auto;
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */

.pc_mode {
	display: none !important;
}

.sp_mode {
	display: inherit !important;
}

/* Header */
/* ------------------------------------------------------------ */

header {
	position: relative;
	z-index: 2;
}

header .header_area {
	border-top: 10px solid #5D8134;
	width: 100%;
	height: 70px;
	position: absolute;
	z-index: 99;
	display: flex;
	justify-content: center;
	align-items: center;
	top: -80px; /* fixed時に80px下にアニメーションさせる */
	margin-top: 80px; /* fixed時に80px下にアニメーションさせる */
}

header .header_area.open {
	position: fixed !important;
	top: 0px !important;
	margin-top: 0 !important;
	z-index: 9;
}

header .header_area.fixed {
	background-color: #FFFBF0;
	position: fixed !important;
	top: 0px !important;
	margin-top: 0 !important;
	z-index: 99;
	-webkit-transition: top 0.4s ease-in; /* fixed時にアニメーションさせる */
	-moz-transition: top 0.4s ease-in; /* fixed時にアニメーションさせる */
	transition: top 0.4s ease-in; /* fixed時にアニメーションさせる */
}

header .header_area h1 {
	width: 180px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	z-index: 99;
}

header .header_area.open h1 img {
    filter: brightness(0) invert(1);
}

/* Nav_toggle */
/* ------------------------------------------------------------ */

#nav_toggle {
    cursor: pointer;
	position: absolute;
	top: 20px;
	right: 4vw;
	z-index: 99;
}

#nav_toggle &gt; div {
    position: relative;
	background: #FFFBF0;
	border-radius: 31px;
    width: 31px;
	height: 31px;
}

#nav_toggle span {
    width: 21px;
    height: 1px;
    left: 5px;
    display: block;
    background: #5D8134;
    position: absolute;
    transition: transform 0.3s ease-in-out, top 0.2s ease;
}

#nav_toggle span:nth-child(1) {
    top: 10px;
}

#nav_toggle span:nth-child(2) {
    top: 15px;
}

#nav_toggle span:nth-child(3) {
    top: 20px;
}
/*
#nav_toggle:hover span:nth-child(1) {
	top: 10px;
}

#nav_toggle:hover span:nth-child(3) {
	top: 18px;
}
*/

.open #nav_toggle span:nth-child(1) {
    top: 15px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.open #nav_toggle span:nth-child(2) {
    top: 15px;
    width: 0;
    left: 50%;
}

.open #nav_toggle span:nth-child(3) {
    top: 15px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* Global menu */
/* ------------------------------------------------------------ */

#global_nav {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
	text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
	visibility: hidden;
    opacity: 0;
	z-index: 9;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

#global_nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#global_nav ul {
    list-style: none;
}

#global_nav ul li {
	text-align: center;
    font-size: 16px;
    display: block;
    margin: 30px 0 0;
	opacity: 0;
	transform: translateX(200px);
	transition: transform 0.3s ease, opacity 0.1s ease;
}

#global_nav ul li:nth-of-type(1) {
    transition-delay: .1s;
}

#global_nav ul li:nth-of-type(2) {
    transition-delay: .2s;
}

#global_nav ul li:nth-of-type(3) {
    transition-delay: .3s;
}

#global_nav ul li:nth-of-type(4) {
    transition-delay: .4s;
}

#global_nav ul li:nth-of-type(5) {
    transition-delay: .5s;
}

#global_nav ul li:nth-of-type(6) {
    transition-delay: .6s;
}

#global_nav ul li:nth-of-type(7) {
    transition-delay: .7s;
}

#global_nav ul li:nth-of-type(8) {
    transition-delay: .8s;
}

.open #global_nav {
    visibility: visible;
    opacity: 1;
}

.open #global_nav li {
    opacity: 1;
	transform: translateX(0);
	transition: transform 0.5s ease, opacity 0.9s ease;
}

/* Main */
/* ------------------------------------------------------------ */

main:not(#index) {
	padding-top: 80px;
}

main section:not(#title) {
	padding: 60px 0;
}

main section:not(#title) .inner {
	padding: 0 4vw;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

a[href^="tel:"] {
	color: #727171;
	pointer-events: auto;
	text-decoration: none;
}

/* title */
/* ------------------------------------------------------------ */

main section h3 {
	color: #5D8134;
	text-align: center;
	font-family: KiwiMaru;
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 40px;
	padding-bottom: 10px;
	border-bottom: 2px dotted #5D8134;
	display: inline-block;
}

main section p.comment {
	line-height: 1.7;
	text-align: left;
}

/* Button */
/* ------------------------------------------------------------ */

.btn {
	display: inline-block;
	margin-top: 60px;
	width: 100%;
}

.btn a  {
	background: #5D8134;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.2em;
    margin-right: -0.2em;
    height: 40px;
    padding: 0 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 60px;
}

/* Table */
/* ------------------------------------------------------------ */

main section .dllist {
	width: 100%;
}

main section .dllist .dlbox {
	border-bottom: 2px #5D8134 dotted;
	width: 100%;
    display: block;
}

main section .dllist .dlbox .dtbox {
	text-align: left;
    width: 100%;
	padding: 20px 0 10px;
	display: block;
}

main section .dllist .dlbox .ddbox {
	text-align: left;
	width: 100%;
	padding: 0 0 20px;
	display: block;
}

main section .dllist .dlbox .wrap {
	line-height: 1.7;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

main section .dllist .dlbox .dtbox .wrap {
	font-weight: bold;
}

main section .dllist .dlbox .ddbox .wrap {
    flex-wrap: wrap;
}

/* Form */
/* ------------------------------------------------------------ */

form {
	width: 100%;
}

main section#form .must {
	background: #E60012;
	color: #fff;
	font-size: 10px !important;
	line-height: 1;
	padding: 5px 10px;
	display: block;
	border-radius: 30px;
	margin-left: 10px;
}

main section#form span.error {
	margin-top: 5px;
}

main section#form .radio span.error {
	margin-top: 0;
}

main section#form .inner &gt; form .dtbox .wrap span {
	font-size: 14px;
	line-height: 1;
}

main section#form span.mwform-zip-field {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

main section#form input[type="text"],
main section#form input[type="tel"],
main section#form input[type="email"],
main section#form input[type="password"],
main section#form input[type="date"],
main section#form input[type="number"] {
	/*border: 1px solid #c1c1c1;*/
	border: none;
	border-radius: 3px;
	border: 1px #727171 solid;
	background: #fff;
	font-size: 14px;
	letter-spacing: 1px;
	width: 100%;
	height: 50px;
	padding: 10px;
	box-sizing: border-box;
}

main section#form select {
	/*border: 1px solid #c1c1c1;*/
	border: none;
	border-radius: 3px;
	border: 1px #727171 solid;
	background: #fff;
	color: #000;
	font-size: 14px;
	letter-spacing: 1px;
	width: 100%;
	height: 50px;
	padding: 10px;
	box-sizing: border-box;
	-webkit-appearance: none;
}

main section#form textarea {
	/*border: 1px solid #c1c1c1;*/
	border: none;
	border-radius: 3px;
	border: 1px #727171 solid;
	background: #fff;
	font-size: 14px;
	letter-spacing: 1px;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}

main section#form input[type="file"] {
	font-size: 14px;
}

main section#form input[type="text"].zip {
	width: 40%;
	margin-left: 10px;
}

main section#form select.prefecture {
	width: 40%;
	margin-bottom: 10px;
}

/*Custom Select*/
main section#form div.select {
	width: 100%;
	position: relative;
}
main section#form div.select::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-width: 0 2px 2px 0;
	border-color: #727171;
	border-style: solid;
	position: absolute;
	right: 15px;
	top: 15px;
	transform-origin: center;
	transform: rotate(45deg);
}

/*Custom CheckBox*/
main section#form input[type="checkbox"] {
    /* デフォルトcheckボックス非表示*/
    display: none;
}
main section#form .mwform-checkbox-field {
	display: block;
	width: 100%;
}
main section#form .mwform-checkbox-field-text {
    display: inline-block;
    position: relative;
    padding: 0 0 0 30px;
}
main section#form .mwform-checkbox-field-text::before,
main section#form .mwform-checkbox-field-text::after {
    content: "";
    position: absolute;
    display: block;
}
main section#form .mwform-checkbox-field-text::before {
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 2px;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
main section#form .mwform-checkbox-field-text::after {
    border-width: 3px;
    border-color: transparent transparent #5D8134 #5D8134;
    border-style: solid;
    width: 20px;
    height: 10px;
    margin-top: -0.2em;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-45deg);
    opacity: 0;
}
main section#form input[type="checkbox"]:checked + .mwform-checkbox-field-text::after {
    /* css擬似要素 :checked が付加されているときは表示  */
    opacity: 1;
}

/*Custom radio button*/
main section#form .radio {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
main section#form .radio input[type="radio"] {
	position: absolute;
	visibility: hidden;
	width: auto;
}
main section#form .radio .mwform-radio-field-text {
	line-height: 1;
	margin-right: 20px;
	cursor: pointer;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
main section#form .radio .mwform-radio-field-text::before {
	position: relative;
	left: 0;
	top: 0;
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	background: #fff;
	border: 1px solid #727171;
	box-sizing: border-box;
	border-radius: 50%;
	vertical-align: middle;
}
main section#form .radio input[type="radio"]:checked + .mwform-radio-field-text::before {
	border: 1px solid #5D8134;
}
main section#form .radio input[type="radio"]:checked + .mwform-radio-field-text::after {
	position: absolute;
	left: 5px;
	top: 5px;
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #5D8134;
	border-radius: 50%;
	box-sizing: border-box;
	vertical-align: middle;
}

main section#form .mwform-zip-field {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

main section#form .mwform-zip-field input {
	margin: 0 10px;
}

main section#form .btn_area {
	margin: 40px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

main section#form .btn_submit {
	background: #5D8134;
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.2em;
	margin-right: -0.2em;
	width: 100%;
	height: 40px;
	padding: 0 30px;
	display: block;
	cursor: pointer;
	border: none;
	border-radius: 60px;
}

main section#form .mw_wp_form {
	width: 100%;
}

main section#form .mw_wp_form_complete p {
	line-height: 1.7;
}

/* Footer */
/* ------------------------------------------------------------ */

footer {
	background-color: #5D8134;
	color: #fff;
	padding: 40px 0;
}

footer .inner {
	padding: 0 4vw;
}

footer .inner &gt; div {
	display: block;
}

footer .inner &gt; div &gt; div {
	border-bottom: 2px dotted #fff;
	margin-bottom: 30px;
	padding-bottom: 30px;
}

footer .inner &gt; div &gt; div h1 {
	width: 120px;
}

footer .inner &gt; div &gt; div address {
	font-style: normal;
	line-height: 1.7;
	margin-top: 10px;
}

footer .inner &gt; div &gt; div .tel,
footer .inner &gt; div &gt; div .fax {
	font-family: KiwiMaru;
	font-size: 12px;
	margin-top: 10px;
}

footer .inner &gt; div &gt; div .tel span,
footer .inner &gt; div &gt; div .fax span {
	display: inline-block;
	width: 3em;
}

footer .inner &gt; div &gt; div .tel strong,
footer .inner &gt; div &gt; div .fax strong {
	font-size: 16px;
	font-weight: 500;
}

footer .inner &gt; div &gt; div .sns {
	width: 25px;
	margin-top: 10px;
}

footer .inner &gt; div &gt; nav {
	display: block;
}

footer nav ul {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

footer nav ul:nth-of-type(2) {
	margin-top: 10px;
}

footer nav ul li:nth-of-type(n+2) {
	margin-top: 10px;
}

footer a:link,
footer a:visited {
	color: #fff;
}

footer a:hover,
footer a:active {
	color: #fff;
}

footer p.copyright {
	text-align: center;
	font-size: 10px;
	line-height: 1.2;
	margin-top: 30px;
}

/* fadein */
/* ------------------------------------------------------------ */

.fadein {
	opacity: 0;
	transform: translate(0, 40px);
	transition: all 700ms;
}

.fadein.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

/* fadein */
/* ------------------------------------------------------------ */

.fadein {
	opacity: 0;
	transform: translate(0, 40px);
	transition: all 700ms;
}

.fadein.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

/* トップページに戻るボタン */
/* ------------------------------------------------------------ */

.pagetop {
	width: 30px;
	display: none;
	position: fixed;
	bottom: 10px;
	right: 4vw;
	z-index: 1;
}

.pagetop a {
	display: block;
}

.pagetop img {
	width: 100%;
	height: auto;
}

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