@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* reset.css */
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%;
    font: inherit;
    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;
}


body {
    font-family: Georgia, "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", HGS明朝E, "MS Mincho", serif;
    color: #000;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.05em;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
    text-align: justify;
}

h1,
h2,
h3 {
    letter-spacing: 0.1em;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: #333;
    text-decoration: none;
    outline: none;
}

a:hover {
    color: #b56357;
    text-decoration: none;
}

a.anchor {
    display: block;
    padding-top: 120px;
    margin-top: -120px;
}

img {
    width: 100%;
    height: auto;
    vertical-align: top;
    object-fit: cover;
}


/* <br class="sp_br"> */
.sp_br {
    display: none;
    /* secH2" */
}

.pc_br {
    display: inline;
    /* <br class="pc_br"> */
}

@media screen and (max-width: 768px) {
    .sp_br {
        display: block;
    }

    .pc_br {
        display: none;
    }
}

/*===================================
header
===================================*/

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding-left: 3%;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

/* 
.header-color {
    background-color: #84483f;
    color: #fff;
} */

h1 {
    font-size: 24px;
    color: #b56357;
}

h1 span {
    letter-spacing: 0.3em;
    padding-left: 5px;
    font-size: 26px;
}

h1 small {
    font-size: 18px;
    font-style: italic;
    font-family: Jost, sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.subtitle {
    font-size: 12px;
}

@media screen and (max-width: 767px) {
    #header {
        padding-left: 15px;
        padding-top: 10px;
        padding-bottom: 5px;
    }

    h1 {
        font-size: 16px;
    }

    h1 span {
        letter-spacing: 0.15em;
        padding-left: 3px;
        font-size: 20px;
    }

    h1 small {
        font-size: 14px;
        font-style: italic;
        font-family: Jost, sans-serif;
        font-weight: 700;
    }

    .subtitle {
        font-size: 10px;
    }

    /*========= SPメニューボタン ===============*/
    .openbtn {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 10px;
        right: 10px;
        cursor: pointer;
        width: 50px;
        height: 50px;
        background-color: #b56357;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #fff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
}

/*========= PCメニュー ===============*/
#pc-nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#pc-nav li a {
    display: block;
    padding: 15px 25px;
    color: #333;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: .08em;
    text-align: center;
}

#pc-nav li span {
    display: block;
    font-family: Jost, sans-serif;
    font-style: italic;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .01em;
    color: #b56357;
}

#pc-nav li a:hover {
    color: #b56357;
}

#pc-nav span.bgLRextend::before {
    background: #333;
}

#pc-nav .contact {
    position: relative;
}

#pc-nav .contact a,
#pc-nav .contact a span {
    color: #fff;
}

#pc-nav .contact a:hover,
#pc-nav .contact a span:hover {
    color: #84483f;
}

#pc-nav .contact::after {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 120%;
    height: 100%;
    transform: skew(-20deg);
    background: #b56357;
    z-index: -1;
}

@media screen and (max-width:990px) {
    #pc-nav {
        display: none;
    }
}

/*========= SPメニュー ===============*/
#sp-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 85%;
    height: 100vh;
    background: rgb(181, 99, 87, 0.9);
    transition: all 0.6s;
}

#sp-nav.panelactive {
    right: 0;
}

#sp-nav.panelactive #sp-nav-list {
    position: fixed;
    z-index: 999;
    width: 95%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#sp-nav ul {
    position: absolute;
    width: 90%;
    z-index: 999;
    top: 40%;
    left: 45%;
    transform: translate(-50%, -50%);
}

#sp-nav li {
    width: 100%;
    border-bottom: solid 1px #fff;
    list-style: none;
    text-align: left;
}

#sp-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 20px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

#sp-nav li span {
    font-size: 10px;
}

/*
==================================
main-area
==================================
*/

#main-area {
    width: 90%;
    margin: 0 auto;
    padding: 50px 0;
}

/*
===================================
links
===================================
*/

.gnavi-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.gnavi-links li {
    text-align: center;
    width: auto;
    position: relative;
}

.gnavi-links li .img {
    position: absolute;
    bottom: 10px;
    right: 30px;
    z-index: 3;
}

.gnavi-links li .img img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

.gnavi-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 200px;
    padding: 5%;
    color: #fff;
    letter-spacing: 0.1em;
    font-size: 1.4rem;
    z-index: 2;
    position: relative;
}

.gnavi-links li a::before {
    content: '';
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.gnavi-links li:nth-child(1) {
    background-image: url(../images/business/business01.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.gnavi-links li:nth-child(2) {
    background-image: url(../images/business/business02.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
}

.gnavi-links li:nth-child(3) {
    background-image: url(../images/business/business04.jpeg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.gnavi-links li:nth-child(4) {
    background-image: url(../images/business/business001-04.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
}

.gnavi-links li a:hover {
    width: 100%;
    opacity: 0.8;
}

@media screen and (max-width:768px) {
    .gnavi-links {
        display: block;
        gap: 0px;
        justify-content: center;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .gnavi-links li {
        margin-bottom: 15px;
    }

    .gnavi-links li a {
        height: 140px;
        font-size: 1.0em;
        text-align: left;
    }

    .gnavi-links li .img img {
        width: 18px;
        height: 18px;
        object-fit: cover;
    }

}

/*
===================================
BLOG
===================================
*/

#BLOG {
    margin: 100px 0 100px 0;
}

#BLOG h2 {
    text-align: center;
    margin: 0 0 100px 0;
}

#BLOG h2 span.bgLRextend::before {
    background: #333;
}

@media screen and (max-width:550px) {
    #BLOG h2 {
        margin: 0 0 50px 0;
    }
}

/*
===================================
BLOG
===================================
*/

#SNS {
    margin: 100px 0 50px 0;
}

#SNS h2 {
    text-align: center;
    margin: 0 0 100px 0;
}

#SNS h2 span.bgLRextend::before {
    background: #333;
}

@media screen and (max-width:550px) {
    #SNS h2 {
        margin: 0 0 50px 0;
    }
}

/*
==================================
フッター
==================================
*/

#footer {
    margin-top: 100px;
    padding: 100px 0 50px;
    background-color: #e8e8e0;
}

#footer ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.footer-ineer {
    width: 80%;
    margin: 0 auto 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c-name {
    font-size: 1.4rem;
}

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

.footer-copyright .copyright-txt {
    font-size: 0.8rem;
    font-weight: normal;
}

.p-name {
    display: inline-block;
    background-color: #b56357;
    color: #fff;
    padding: 5px 15px;
    margin-top: 15px;
}

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

    #footer {
        display: block;
        padding: 100px 0 50px;
    }

    .footer-ineer {
        width: 80%;
        margin: 0 auto 50px;
        display: block;
    }

    .l-footer {
        margin-bottom: 30px;
    }

    .c-name {
        font-size: 1.4rem;
    }

    .p-name {
        display: block;
        width: 100%;
        background-color: #b56357;
        color: #fff;
        text-align: center;
        margin-top: 10px;
    }

    #footer ul {
        display: block;
    }

    #footer ul li {
        padding-bottom: 5px;
    }

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

    .footer-copyright .copyright-txt {
        font-size: 0.8rem;
        font-weight: normal;
    }

}


#page-monitor {
    width: 100%;
    max-width: 100%;
    height: 450px;
    background: url(../images/bg/bg-page.jpg) no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
}

#page-monitor::before {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: ' ';
}

.page_navi {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    color: #fff;
    font-size: 12px;
    z-index: 98;
}

.breadcrumb h1 {
    display: inline-block;
    font-size: 12.5px;
    color: #fff;
}

.h1_title {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
}

.h1_title .jp {
    display: block;
    color: #fff;
    font-size: 5.0rem;
    font-weight: 600;
}


@media screen and (max-width: 767px) {
    #page-monitor {
        height: 280px;
        margin-top: 100px;
        background-position: 0% 0%;
    }

    .h1_title {
        position: absolute;
        top: 50%;
        left: 50%;
        right: unset;
        text-align: center;
        transform: translate(-50%, -50%);
        color: #fff;
    }

    .h1_title .jp {
        display: block;
        color: #fff;
        font-size: 2.0rem;
        font-weight: 600;
        letter-spacing: -0.04em;
        padding-left: 0;
    }
}