<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.css
Summary:reset styles
Created:2022-10-19
--------------------------------------------------------------- */

@media screen and (min-width: 1221px) {

/* 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: inherit !important;
}

.sp_mode {
	display: none !important;
}

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

header {
	border-top: 15px solid #5D8134;
	background-color: #FFFBF0;
}
 
header .header_area {
	width: 1200px;
	height: 120px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .header_area &gt; h1 {
	width: 180px;
	padding-right: 30px;
	border-right: 1px solid #B5B5B6;
}

header .header_area &gt; nav ul {
	width: 960px;
	height: 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
}

header .header_area &gt; nav ul li.active {
    position: relative;
}

header .header_area &gt; nav ul li.active::before {
    content: '';
    position: absolute;
    top: -28px;
    left: calc(50% - 9px);
    background: url(../img/common/hl_icon.png) no-repeat;
    background-size: 18px auto;
    width: 18px;
    height: 18px;
}

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

header #global_nav {
	display: none;
}

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

main {
}

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

main section:not(#title) .inner {
	text-align: center;
	width: 1200px;
	margin: 0 auto;
}

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

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

main section h3 {
	color: #5D8134;
	text-align: center;
	font-family: KiwiMaru;
	font-size: 44px;
	font-weight: 500;
	margin-bottom: 80px;
	padding-bottom: 15px;
	border-bottom: 4px dotted #5D8134;
	display: inline-block;
}

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

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

.btn {
	display: inline-block;
	margin-top: 120px;
}

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

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

main section .dllist {
}

main section .dllist .dlbox {
	border-bottom: 4px #5D8134 dotted;
	width: 100%;
    display: flex;
	justify-content: flex-start;
	align-items: center;
}

main section .dllist .dlbox .dtbox {
	text-align: left;
    width: 240px;
	padding: 20px 20px 20px 0;
	display: block;
	flex-shrink: 0;
}

main section .dllist .dlbox .ddbox {
	text-align: left;
	width: 100%;
	padding: 20px 0;
	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 {
	justify-content: space-between;
	font-weight: bold;
}

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

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

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

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: 18px;
	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: 18px;
	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: 18px;
	letter-spacing: 1px;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}

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

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

main section#form select.prefecture {
	width: 30%;
	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: 20px;
	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 36px;
}
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 {
	width: 1000px;
	margin: 40px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

main section#form .btn_submit {
	background: #5D8134;
	color: #fff;
	font-size: 18px;
	letter-spacing: 0.2em;
	margin-right: -0.2em;
	width: 400px;
	height: 60px;
	display: block;
	cursor: pointer;
	border: none;
	border-radius: 60px;
}

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

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

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

footer .inner {
	width: 1200px;
	margin: 0 auto;
}

footer .inner &gt; div {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

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

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

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

footer .inner &gt; div &gt; div .tel,
footer .inner &gt; div &gt; div .fax {
	font-family: KiwiMaru;
	font-size: 16px;
	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: 24px;
	font-weight: 500;
}

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

footer .inner &gt; div &gt; nav {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

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

footer nav ul:nth-of-type(1) {
	margin-right: 60px;
}

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

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

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

footer p.copyright {
	text-align: right;
	font-size: 12px;
}

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

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

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

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

.pagetop {
	width: 60px;
	display: none;
	position: fixed;
	bottom: 25px;
	right: 25px;
	z-index: 1;
}

.pagetop a {
	display: block;
}

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

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