@charset "UTF-8";

/* Vendors - include bootrap
========================================================================== */
/* Helpers - helpers Variable file along with starting point Mixins and Placeholders.
========================================================================== */
/*
 * Variables
 */
@font-face {
    font-family: "Noto Serif Display";
    src: url("../webfonts/NotoSerifDisplay-Regular.eot");
    font-weight: normal;
    font-style: normal;
}

/*
 * 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: "Noto Serif Display", "sans-serif";
    font-weight: 700;
    color: #3c2800;
    line-height: 1.4;
}

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

h2 {
    font-size: 4.8rem;
}

h3 {
    font-size: 2.4rem;
}

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

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

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

/* Components - Re-usable site elements.
========================================================================== */
a {
    color: #3c3c3c;
    text-decoration: none;
}

a:visited {
    color: #3c3c3c;
    text-decoration: none;
}

a:hover,
a:visited:hover {
    color: #f0321a;
    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 <<<-------------------- */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    background: #fff;
    font-family: "Noto Serif Display", "sans-serif";
    color: #3c3c3c;
    font-size: 2rem;
    line-height: 1.5;
    overflow-x: hidden;
    font-weight: 500;
    letter-spacing: 0;
    width: 100%;
}

body.is_active {
    height: 100vh;
    overflow: hidden;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

body.is_active::after {
    content: "";
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.33);
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 99;
}

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: auto;
    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;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.thumb-over figure img {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

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

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

.scrollTop {
    position: fixed;
    bottom: -50px;
    right: 4rem;
    z-index: 10;
    height: 200px;
    text-align: center;
    -webkit-transition: bottom 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: bottom 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: bottom 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    z-index: 999;
    width: 6rem;
}

.scrollTop__main {
    cursor: pointer;
}

.scrollTop__main:hover {
    opacity: 0.7;
}

.scrollTop__main img {
    width: 7.6rem;
}

.scrollTop.active {
    bottom: 0;
    opacity: 1;
}

.w-100 {
    width: 100% !important;
}

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

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

.d-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify-content-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.align-items-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-items-start {
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
}

.align-items-end {
    -webkit-box-align: end;
    -webkit-align-items: end;
    -ms-flex-align: end;
    align-items: end;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.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;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 1.5rem;
    padding-top: 3rem;
}

.header__main .logo a {
    display: block;
    width: 40.2rem;
}

@media (max-width: 991px) {
    .header {
        padding: 2rem 2.5rem;
    }
}

.banner {
    background-image: url("../images/banner-bg.jpg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    padding-top: 2.5rem;
}

.banner .container {
    width: 97%;
    max-width: 1325px;
    margin: 0 auto;
}

@media screen and (max-width: 750px) {
    .banner .container {
        width: 100%;
    }
}

.contact-box {
    background-image: url("../images/contact-bg.jpg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 1.5rem;
}

.contact-box__main {
    position: relative;
}

.contact-box__main .more {
    position: absolute;
    right: -0.35rem;
    bottom: 1.5rem;
    display: block;
    z-index: 2;
}

.contact-box__main .more span {
    font-size: 4.5rem;
    font-family: sans-serif;
    color: #3c2800;
    font-weight: 700;
    display: block;
    padding: 4rem 4rem 1.75rem 6rem;
    letter-spacing: 3px;
}

.such-box {
    padding-top: 2.5rem;
    background-image: url("../images/such-bg.jpg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    position: relative;
}

.such-box::after {
    content: "";
    width: 27.8rem;
    height: 8.3rem;
    background-image: url("../images/arow-1.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: -16px;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}

.such-box .container {
    max-width: 113rem;
}

.check-box {
    padding: 3rem 0 6rem;
}

.relieved-box {
    background-image: url("../images/relieved-bg.jpg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.point-box {
    padding: 2.5rem 0;
    background: #eaf4ff;
}

.extermination-box {
    padding: 5rem 0;
    background-image: url("../images/extermination-bg.jpg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.cheap-box {
    padding: 2rem 0 6rem;
    background-image: url("../images/cheap-bg.jpg");
    background-position: 0 0;
    background-repeat: repeat;
}

.careful-box {
    background: #3c2800;
    padding: 1.5rem 0 3.5rem;
}

.request-box {
    padding: 5rem 0 6.5rem;
    background-image: url("../images/request-bg.jpg");
    background-position: 0 0;
    background-repeat: repeat;
}

.inquiry-box {
    padding: 7.5rem 0;
    background-image: url("../images/inquiry-bg.jpg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: sans-serif;
}

.inquiry-box__main .head-box {
    position: relative;
    margin-bottom: 3rem;
}

.inquiry-box__main .head-box .more {
    width: 51rem;
    position: absolute;
    right: -1.35rem;
    bottom: 1.7rem;
    display: block;
    z-index: 3;
}

.inquiry-box__main .head-box .more span {
    font-size: 4.5rem;
    font-family: sans-serif;
    color: #3c2800;
    font-weight: 700;
    display: block;
    padding: 4rem 4rem 1.5rem 6rem;
    letter-spacing: 3px;
}

.inquiry-box__main .contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 5rem 4rem;
}

.inquiry-box__main .form-group {
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.inquiry-box__main .form-group .labels {
    padding-top: 1.7rem;
    width: 27rem;
    padding-right: 1.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.inquiry-box__main .form-group .input {
    width: calc(100% - 27rem);
}

.inquiry-box__main .form-group .input input[type="text"],
.inquiry-box__main .form-group .input input[type="email"],
.inquiry-box__main .form-group .input textarea {
    width: 100%;
    height: 6.5rem;
    padding: 0 2.5rem;
    background: #f6f6f6;
    border: 1px solid #bfbfbf;
    border-radius: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 16px;
}

.inquiry-box__main .form-group .input input[type="text"]:focus,
.inquiry-box__main .form-group .input input[type="email"]:focus,
.inquiry-box__main .form-group .input textarea:focus {
    outline: 0;
    outline: none;
}

.inquiry-box__main .form-group .input textarea {
    padding: 2rem 2.5rem;
    min-height: 27rem;
}

.inquiry-box__main .form-group.required .labels::after {
    content: "※必須";
    font-size: 1.8rem;
    font-weight: 600;
    color: #da4707;
}

.inquiry-box__main .form-group.form-group-textarea {
    border: none;
}

.inquiry-box__main .more-box {
    text-align: center;
    margin-top: 6rem;
}

.inquiry-box__main .more-box .more {
    display: inline-block;
    width: 30.6rem;
}

.menu-sp {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #3c2800;
    border: 2px solid #fff;
    border-radius: 20px 20px 0 0;
    color: #fff;
}

.menu-sp .main-box {
    position: relative;
    padding: 2.5rem;
    height: 12rem;
    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;
}

.menu-sp .more-icon {
    width: 12.35rem;
    height: 12.35rem;
    bottom: 3rem;
    position: absolute;
}

.menu-sp .more-icon img {
    width: 100%;
}

.menu-sp .more-icon-l {
    left: 2.5rem;
}

.menu-sp .more-icon-r {
    right: 2.5rem;
}

.menu-sp .head {
    text-align: center;
    padding: 4rem 0 0;
    background-image: url("../images/arow-1.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-position: center top;
    margin-bottom: 1rem;
    cursor: pointer;
}

.menu-sp .head p {
    margin-bottom: 2rem;
    font-size: 3rem;
}

.menu-sp .head h2 {
    font-size: 3.6rem;
    margin-bottom: 1rem;
    color: #fff;
}

.menu-sp .tel {
    padding: 0 5rem;
    margin-bottom: 4rem;
}

.menu-sp .more-box {
    overflow: hidden;
    padding: 0 2.5;
    padding-bottom: 10rem;
}

.menu-sp .more-box .d-flex {
    margin: 0 -0.8rem 2rem;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    justify-content: space-around;
}

.menu-sp .more-box .items {
    width: calc(100% / 2);
    padding: 0 0.8rem;
}

.menu-sp.is_active .main-box {
    height: auto;
}

.menu-sp.is_active .head {
    background-image: url("../images/arow-2.svg");
}

.thanks-box__head {
    padding: 1rem 0 1.5rem;
    background: #3c2800;
    text-align: center;
}

.thanks-box__head a {
    display: inline-block;
    width: 19rem;
}

.thanks-box__main {
    text-align: center;
    padding: 4.5rem 0 10rem;
}

.thanks-box__main h3 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
}

.thanks-box__main p {
    font-size: 1.6rem;
    margin-bottom: 12rem;
}

.thanks-box__main .more-box {
    text-align: center;
}

.thanks-box__main .more-box a {
    display: inline-block;
    width: 30.2rem;
}

.footer {
    padding: 15.5rem 0 0;
    font-family: sans-serif;
}

.footer .footer__main {
    margin-bottom: 6rem;
}

.footer .footer__main p {
    margin-bottom: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.footer .copyright {
    text-align: center;
}

.footer .copyright p {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .footer {
        padding: 3.5rem 0 1.5rem;
    }

    .footer .container {
        padding: 0 2.5rem;
    }

    .footer .footer__main p {
        font-size: 2.4rem;
    }

    .footer .copyright p {
        font-size: 2.4rem;
    }
}

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

@media screen and (max-width: 1200px) and (min-width: 992px) {
    html {
        font-size: 9px;
    }
}

@media screen and (max-width: 1050px) and (min-width: 992px) {
    html {
        font-size: 8px;
    }
}

@media (max-width: 991px) {
    html {
        font-size: 1.3333333vw;
    }

    body {
        padding-bottom: 12rem;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .container {
        padding: 0 !important;
    }

    section {
        background: none !important;
        padding: 0 !important;
    }

    .banner {
        padding: 0;
    }

    .contact-box {
        padding-top: 0;
    }

    .contact-box__main .more {
        position: absolute;
        right: 2rem;
        bottom: 20.65rem;
        display: block;
        z-index: 2;
    }

    .contact-box__main .more span {
        font-size: 8vw;
        padding: 4rem 4rem 2rem 10rem;
    }

    .such-box::after {
        content: "";
        width: 29.8rem;
        height: 8.3rem;
        background-image: url("../images/arow-1.png");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translate(-50%, 50%);
        -ms-transform: translate(-50%, 50%);
        transform: translate(-50%, 50%);
    }

    .inquiry-box {
        padding: 12rem 2.5rem 8.5rem !important;
        background-image: url("../images/inquiry-bg.jpg") !important;
        background-position: 0 0 !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }

    .inquiry-box .container {
        padding: 0 2.5rem;
    }

    .inquiry-box__main .head-box {
        margin-bottom: 5rem;
    }

    .inquiry-box__main .head-box .more {
        width: 100%;
        right: 50%;
        bottom: 1.7rem;
        -webkit-transform: translate(50%);
        -ms-transform: translate(50%);
        transform: translate(50%);
        z-index: 3;
    }

    .inquiry-box__main .head-box .more span {
        font-size: 7.75vw;
        padding: 3rem 3rem 2.5rem 9.75rem;
    }

    .inquiry-box__main .contact-form {
        padding: 5rem 3.5rem;
    }

    .inquiry-box__main .form-group {
        margin-bottom: 4.5rem;
    }

    .inquiry-box__main .form-group .labels {
        padding-top: 0;
        width: 100%;
        padding-right: 0;
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 2rem;
        font-family: sans-serif;
    }

    .inquiry-box__main .form-group .input {
        width: 100%;
    }

    .inquiry-box__main .form-group .input input[type="text"],
    .inquiry-box__main .form-group .input input[type="email"],
    .inquiry-box__main .form-group .input textarea {
        width: 100%;
        height: 8rem;
    }

    .inquiry-box__main .form-group .input textarea {
        min-height: 40rem;
    }

    .inquiry-box__main .form-group.required .labels::after {
        font-size: 3rem;
    }

    .inquiry-box__main .more-box {
        margin-top: 5rem;
    }

    .inquiry-box__main .more-box .more {
        width: 45.5rem;
    }

    .menu-sp {
        display: block;
    }

    .thanks-box__head {
        padding: 2rem 0 3rem;
    }

    .thanks-box__head a {
        width: 35rem;
    }

    .thanks-box .container {
        padding: 0 2.5rem;
    }

    .thanks-box__main {
        text-align: center;
        padding: 4.5rem 0 10rem;
        min-height: 65vh;
    }

    .thanks-box__main h3 {
        font-size: 4.5rem;
        margin-bottom: 5rem;
    }

    .thanks-box__main p {
        font-size: 3rem;
        width: 92%;
        margin: 0 auto;
        margin-bottom: 6rem;
    }

    .thanks-box__main .more-box a {
        width: 60rem;
    }

    .check-box__main {
        margin: 1rem 0;
        padding: 2.5rem;
    }
}

.loader_wrap {
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: white;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #555;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

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


.error {
    background-color: #fff;
    padding-bottom: 0;
}

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

/*
.error ul li {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  color: #000000;
  margin-bottom: 10px;
}
.error-txt-box {
  margin-left: 20px;
}
.error-txt-title {
  font-size: 24px;
  font-weight: bold;
  color: #424242;
  margin-bottom: 10px;
}
.error-txt-p {
  font-size: 14px;
}
.error-img {
  width: 36.55%;
}
.gaichu2 {
  width: 15%;
}
.gaichu3 {
  width: 43.45%;
}
.error-txt-box {
    margin-left: 20px;
} */


@media screen and (max-width: 480px) {
    .error {
        padding-left: 0;
        padding-right: 0;
        background-color: #fff !important;
        padding-top: 10px !important;
        padding-bottom: 0;
        padding-bottom: 0 !important;
        margin-top: -5px !important;
    }

    /*
  .error ul li {
      display: block;
  }
  .error-img {
    width: 100%;
  }
  .error-img img {
    width: 100%;
    object-fit: cover;
    height: 200px;
  }
  .error-txt-box {
    margin-left: 0px;
  } */
    .contact-box .container {
        padding: 0;
    }

    .cheap-box .container {
        padding: 0;
    }
}

.cta-btn {
    width: 50rem;
    position: absolute;
    right: 1rem;
    bottom: 1.5rem;
    display: block;
    z-index: 1;
}

.cta-btn.cta-btn02 {

    bottom: 1.7rem;

}

@media screen and (max-width: 480px) {
    .cta-btn {
        width: 93%;
        position: absolute;
        /* right: 4rem; */
        bottom: 20rem;
        display: block;
        z-index: 1;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }

    .cta-btn.cta-btn02 {
        width: 100%;
        position: absolute;
        right: 1rem;
        bottom: 1.5rem;
        display: block;
        z-index: 1;
    }
}



/* footer */
.footer {
    margin-top: 18rem;
    font-size: calc(16vw / 1500 * 100);
    background-image: none;
    position: relative;
    width: 100%;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-color: #3c2800;
    color: #fff;
}

.footer-top {
    width: calc(1000vw / 1500 * 100);
    transform: translateY(calc(-180vw / 1500 * 100));
    margin: 0 auto;
}

.footer-head {
    width: calc(430vw / 1500 * 100);
    transform: translateY(calc(-135vw / 1500 * 100));
}

.sec-common-head {
    font-size: 48px;
    color: #15520a;
    font-weight: normal;
    text-align: center;
    line-height: 1.2;
    color: #ffffff;
}

.footer-head {
    width: 430px;
    margin: 0 auto;
    color: #fff;
    background-color: #3c2800;
    padding-top: 0;
    margin-top: 12px;
    font-family: sans-serif;
}

.footer-company-details {
    display: flex;
    justify-content: space-between;
    width: 57%;
    margin: -80px auto 55px;
}

.footer-company-details-img {
    width: calc(364vw / 1500 * 100);
    padding-right: 20px;
}

.footer-company-details-list {
    width: 100%;
    border-top: calc(1vw / 1500 * 100) solid #97a8b3;
}

.footer-company-details-item {
    border-bottom: calc(1vw / 1500 * 100) solid #97a8b3;
    padding: calc(20vw / 1500 * 100);
    display: flex;
}

.footer-company-details-item p {
    margin-bottom: 0;
}

.footer-company-details-item-left {
    width: calc(155vw / 1500 * 100);
    display: flex;
    font-weight: bold;
    flex: 0 0 auto;
}

.footer-area-list {
    width: calc(1000vw / 1500 * 100);
}

.footer-area-list {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-area-box {
    width: calc(330vw / 1500 * 100);
    margin-bottom: calc(70vw / 1500 * 100);
    padding: 0 calc(50vw / 1500 * 100);
    border-right: calc(1vw / 1500 * 100) solid #97a8b3;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 330px;
    margin-bottom: 70px;
    padding: 0 50px;
    box-sizing: border-box;
    line-height: 1.8;
    border-right: 1px solid #97a8b3;
}

.footer-service-list {
    width: calc(890vw / 1500 * 100);
    margin: calc(75vw / 1500 * 100) auto;
    margin-top: 0;
    display: flex;
    justify-content: space-between;
}

.footer-service-box {
    width: calc(380vw / 1500 * 100);
}

.footer-service-box-head {
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.sitemap {
    margin-bottom: 50px;
    text-align: center;
}

.sitemap h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.sitemap .txt {
    font-size: 18px;
    color: #ffffff;
}

.sitemap .txt a {
    font-size: 18px;
    color: #ffffff;
}

.sitemap .txt a:hover {
    opacity: .7;
}

.footer-link-list {
    display: flex;
    justify-content: center;
}

.footer-link-item {
    padding: 0 calc(25vw / 1500 * 100);
    border-right: calc(1vw / 1500 * 100) solid #97a8b3;
}

.footer-link-item a {
    color: #fff;
}

.footer-link-item:last-child {
    border: none;
}

.footer-copy {
    width: calc(1000vw / 1500 * 100);
    margin: calc(25vw / 1500 * 100) auto 0;
    padding: calc(22vw / 1500 * 100) 0;
    text-align: center;
    color: #fff;
    opacity: .3;
}

.footer-area-box-btn:hover {
    opacity: .7;
}

@media screen and (max-width:750px) {
    .footer {
        margin-top: 0;
        font-size: calc(22vw / 750 * 100);
        font-family: sans-serif;
    }

    .footer-top {
        width: 93%;
        transform: none;
        margin-top: -55px;
    }

    .sec-common-head {
        font-size: calc(50vw / 750 * 100);
    }

    .footer-head {
        padding-top: 30px;
        transform: translateY(calc(-80vw / 750 * 100));
        font-family: sans-serif;
        width: 100%;
    }

    .footer-company-details {
        display: block;
        width: calc(690vw / 750 * 100);
        margin: calc(-26vw / 750 * 100) auto calc(30vw / 750 * 100);
    }

    .footer-company-details-img {
        /* width: calc(190vw / 750 * 100); */
        width: 100%;
        text-align: center;
        margin-right: 0;
        margin-left: 10px;
        padding-bottom: 20px;
    }

    .footer-company-details-item-left {
        width: calc(190vw / 750 * 100);
    }

    .footer-company-details-list {
        /* width: calc(494vw / 750 * 100); */
        width: 100%;
        border-top: calc(1vw / 750 * 100) solid #97a8b3;
    }

    .footer-company-details-item {
        border-bottom: calc(1vw / 750 * 100) solid #97a8b3;
        padding: calc(15vw / 750 * 100) calc(20vw / 750 * 100);
    }

    .footer-area-list {
        width: calc(690vw / 750 * 100);
        border-top: none;
    }

    .footer-area-box {
        display: block;
        width: 47%;
        margin-bottom: 0;
        padding: calc(35vw / 750 * 100) 0;
        border-right: none;
        border-bottom: none;
        height: 53vw;
        position: relative;
    }

    .footer-area-box-details {
        display: block;
    }

    .footer-area-box-details-head {
        display: block;
    }

    .footer-area-box-details-txt {
        width: 100%;
    }

    .footer-area-box-btn {
        width: calc(299vw / 750 * 100);
        margin-right: 0;
        margin-left: auto;
        bottom: 0;
        position: absolute;
    }

    .footer-service-list {
        width: calc(690vw / 750 * 100);
        margin: calc(60vw / 750 * 100) auto calc(40vw / 750 * 100);
        flex-wrap: wrap;
    }

    .footer-service-box {
        width: calc(335vw / 750 * 100);
        margin-bottom: 10px;
    }

    .sitemap .txt {
        text-align: 1.75;
    }

    .sitemap .txt a {
        font-size: 3.5vw;
    }

    .sitemap {
        width: 95%;
        margin: 0 auto;
        margin-bottom: 7rem;
        font-family: sans-serif;
    }

    .foote {
        padding-top: 0;
        margin-top: 0;
    }

    .footer-service-box-head {
        display: none;
    }

    .sitemap h3 {
        font-size: 18px;
        font-family: sans-serif;
    }

    .footer-copy {
        padding: calc(55vw / 1500 * 100) 0;
    }
}

.area-box .container {
    max-width: 100%;
    padding: 0;
    margin: 8rem 0;
}

.footer-company-details-item-right a {
    color: #fff;
    text-decoration: none;
}

.danger {
    padding: 3rem 0 6rem;
    background-color: #292929;
}

.inquiry-box__main .more-box .more:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.inquiry-box__main .check-box {
    text-align: center;
    padding: 0;
}

.inquiry-box__main .check-box a {
    color: #3c2800;
}

.line-btn {
    width: 50rem;
    position: absolute;
    right: 1rem;
    bottom: 15rem;
    display: block;
    z-index: 1;
}

@media screen and (max-width:750px) {
    .line-btn {
        width: 93%;
        position: absolute;
        /* right: 4rem; */
        bottom: 44rem;
        display: block;
        z-index: 1;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        bottom: 53vw;
    }
}

.cta_fixed {
    position: fixed;
    z-index: 99;
    width: 100%;
    left: 0;
    bottom: 0;

}



@media screen and (min-width:481px) {
    .cta_fixed {
        display: none;
    }