@charset "UTF-8";
/* Vendors - include bootrap
========================================================================== */
/* Helpers - helpers Variable file along with starting point Mixins and Placeholders.
========================================================================== */
/*
 * Variables
 */
@import url("//fonts.googleapis.com/earlyaccess/notosansjp.css");
/*
 * Function
 */
/*
* mixins
*/
/*
 * Placeholders
 */
/* Base - reset and typography.
========================================================================== */
/*
 * 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-size: 100%;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button {
    background-color: transparent;
    outline: none;
    border: 0;
    cursor: pointer;
}

/*
 * Typography
 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "メイリオ",
        Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    font-weight: 700;
    color: #000;
}

h1 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #292929;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.5rem;
}

.block-margins {
    margin: 1em 0;
}

.unordered-list {
    list-style-type: disc;
}

.ordered-list {
    list-style: decimal;
}

/* Components - Re-usable site elements.
========================================================================== */
a {
    color: #292929;
    text-decoration: none;
}
a:visited {
    color: #292929;
    text-decoration: none;
}
a:hover,
a:visited:hover {
    color: #375720;
    text-decoration: none;
}
a:focus {
    outline: none;
    text-decoration: none;
}

.italic {
    font-style: italic;
}

.bold {
    font-weight: 700;
}

.more {
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}

/* Layout - Structure and layout files.
========================================================================== */
/* -------------------->>> COMMON <<<-------------------- */
* {
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    background: #fff;
    font-family: "ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "メイリオ",
        Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    color: #292929;
    font-size: 1.8rem;
    line-height: 1.77778;
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: 0;
    width: 100%;
}

hr {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #000 -moz-use-text-color -moz-use-text-color;
    -o-border-image: none;
    border-image: none;
    border-style: solid none none;
    border-width: 0.2em 0 0 0;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 103rem;
    padding: 0 1.5rem;
    margin: 0 auto;
}

p {
    margin-bottom: 1.5rem;
}

input:focus {
    outline: none;
}

a > img {
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}
a > img:hover {
    opacity: 0.7;
}

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

.thumb-box a {
    display: block;
}

.thumb-box img {
    width: 100%;
    height: auto;
}

.img-cover figure {
    display: block;
    width: 100%;
    height: 100%;
}

.img-cover img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.thumb-over figure {
    display: block;
    position: relative;
    overflow: hidden;
}
.thumb-over figure::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    transition: 0.3s;
}
.thumb-over figure img {
    transition: 0.3s;
}

.thumb-over:hover figure::before {
    background: rgba(0, 0, 0, 0.5);
}

.thumb-over:hover figure img {
    transform: scale(1.05);
}

.header {
    background: #375720;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.header .container {
    max-width: 100%;
}
.header__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}
.header__main .logo {
    margin-left: 1.8rem;
    width: 23.5rem;
}
.header__main--info {
    display: flex;
    align-items: center;
}
.header__main--info .tel {
    width: 31.7rem;
    margin-right: 1.5rem;
}
.header__main--info .more-box {
    width: 23.4rem;
}

.head-box {
    padding: 2.4rem 0 3.2rem;
    background-image: url("../images/head-bg.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}

.banner {
    background-image: url("../images/banner-bg.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
    margin-top: 7.8rem;
    height: 0;
    padding-top: 43.4166667%;
    overflow: hidden;
}
.banner .container {
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner__main img {
    width: 100%;
}

.contact-box {
    padding-top: 3.4rem;
}
.contact-box__main {
    position: relative;
}
.contact-box__main .more-box {
    width: 59.5%;
    position: absolute;
    top: 38%;
    left: 1.2%;
}
.contact-box__main .more-box .more {
    display: block;
}
.contact-box__main .more-box .more-tel {
    margin-bottom: 2rem;
}
.contact-box__main .more-box .more-contact {
    width: 96%;
}

.contact-box-main {
    padding: 1.8rem 0 3.3rem;
}

.coronavirus-box {
    padding-top: 4rem;
    padding-bottom: 5.6rem;
}

.garden-box {
    padding-top: 5.6rem;
    background-image: url("../images/garden-bg.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-repeat: repeat-x;
    background-color: #000;
    position: relative;
    z-index: 99;
}
.garden-box::after {
    content: "";
    display: block;
    width: 11.127rem;
    height: 5.32rem;
    background-image: url("../images/arow-1.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: -3.2rem;
    left: 50%;
    transform: translateX(-50%);
}

.problem-box {
    background-image: url("../images/problem-bg.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    height: 0;
    overflow: hidden;
    padding-top: 19%;
    position: relative;
}
.problem-box .container {
    position: absolute;
    top: 50%;
    left: 50%;
    webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.problem-box__main {
    display: flex;
    align-items: center;
}
.problem-box__main img {
    width: 100%;
}

.service-box {
    padding: 6.3rem 0;
}

.reasons-box {
    background-image: url("../images/reasons-bg.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
}
.reasons-box__main {
    padding-top: 4.2rem;
    padding-bottom: 11rem;
}

.example-box {
    padding: 5.4rem 0 3.7rem;
    background-image: url("../images/example-bg.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-repeat: repeat;
}

.voice-box {
    position: relative;
    padding: 5.5rem 0 9rem;
    background-image: url("../images/voice-bg.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
}
.voice-box::before {
    content: "";
    display: block;
    width: 100%;
    height: 1.6rem;
    background-image: url("../images/voice-before.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-repeat: repeat-x;
    position: absolute;
    top: 0;
    left: 0;
}

.many-box {
    border-top: 4px solid #c80000;
    border-bottom: 4px solid #c80000;
    background: #ffffe0;
}
.many-box__main {
    margin-top: -4.7rem;
}

.feel-box {
    background-image: url("../images/feel-bg.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: relative;
    overflow: hidden;
    height: 0;
    padding-top: 25%;
}
.feel-box .container {
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feel-box__main {
    width: 100%;
}

.step-box {
    padding: 5.5rem 0 6.5rem;
    background-image: url("../images/example-bg.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-repeat: repeat;
}

.inquiry-box__main {
    padding: 2rem 5rem 6.8rem;
}

.contact-form .form-group {
    padding: 3.2rem 2.5rem;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #c3c3c3;
}
.contact-form .form-group .labels {
    width: 41.4519906%;
    padding-right: 2rem;
    font-size: 1.8rem;
    font-family: "Noto Sans JP", sans-serif;
    color: #292929;
    font-weight: 700;
    line-height: 4.5rem;
    position: relative;
}
.contact-form .form-group .input {
    width: 58.5480094%;
}
.contact-form .form-group select,
.contact-form .form-group textarea,
.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="email"] {
    width: 100%;
    height: 4.5rem;
    border: 1px solid #c3c3c3;
    border-radius: 5px;
    background: #f7f7f7;
    box-shadow: none;
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    padding: 0 1.7rem;
}
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group input[type="text"]:focus,
.contact-form .form-group input[type="email"]:focus {
    outline: none;
    outline: 0;
}
.contact-form .form-group textarea {
    min-height: 15.5rem;
    padding: 1rem 1.7rem;
}
.contact-form .form-group.required .labels {
    display: flex;
    align-items: center;
}
.contact-form .form-group.required .labels::after {
    content: "必須";
    font-size: 1.4rem;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 2.2rem;
    margin-left: 1.3rem;
    padding: 0 1rem;
    background: #e86a37;
    border-radius: 5px;
    font-weight: 400;
}

.contact-form .form-group-textarea .labels {
    width: 100%;
    margin-bottom: 1rem;
}

.contact-form .form-group-textarea .input {
    width: 100%;
}

.contact-form .more-box {
    padding-top: 2.2rem;
    text-align: center;
}
.contact-form .more-box button {
    display: inline-block;
    width: 100%;
    max-width: 38.75rem;
}
.contact-form .more-box button:hover {
    opacity: 0.7;
}

.thanks-box {
    padding: 20rem 0 20rem;
    text-align: center;
}
.thanks-box__main h2 {
    margin-bottom: 3rem;
    font-size: 3.2rem;
    color: #375720;
    font-family: "Noto Sans JP", sans-serif;
}
.thanks-box__main p {
    font-size: 1.4rem;
    line-height: 2.2;
    margin-bottom: 5rem;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
}
.thanks-box__main .more-box a {
    font-size: 1.4rem;
    color: #000;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
}

.error {
    font-size: 1.2rem;
    color: #ff0000;
}

#result input.error {
    border-color: #e41919;
}

#result div.error {
    margin-top: 20px;
    padding: 13px 20px;
    text-align: center;
    background: rgba(228, 25, 25, 0.75);
    color: #fff;
}

#result div.success {
    margin-top: 20px;
    padding: 13px 20px;
    text-align: center;
    background: rgba(50, 178, 95, 0.75);
    color: #fff;
}

.footer {
    padding-top: 2.5rem;
    margin-top: 5.5rem;
    background: #375720;
}
.footer p {
    font-size: 1.4rem;
    margin-bottom: 0;
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    font-weight: 400;
}
.footer__main {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}
.footer__main--info {
    margin-right: 6rem;
}
.footer .copyright {
    text-align: center;
    padding-bottom: 1rem;
}

/* layout - Responsive .
========================================================================== */
.sp {
    display: none;
}

@media (max-width: 767px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

/* ipad Portrait */
/* ipad Landscape */
