@charset "UTF-8";

img {
    max-width: 100%;
    height: auto;
    /*高さ自動*/
    vertical-align: top;
    /* width: 100%; */
}

a {
    display: block;
    text-decoration-line: none;
}

a:hover {
    opacity: 80%;
}


/* 全体の設定
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 62.5%;
}

body {
    color: #231815;
    font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    background: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    text-align: justify;
    min-width: 100vw;
}

.wrap {
    overflow: hidden;
}

/* pc版の時はクリックで電話がかからないように */
@media(min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

/*-- PC版表示CSS  --*/
.pc {
    display: block;
}

.sp {
    display: none;
}


/*-- スマホ版表示CSS  --*/
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}



/*-- 1020-PC版表示CSS  --*/
.pc-1020 {
    display: block;
}

.sp-1020 {
    display: none;
}

/*-- スマホ版表示CSS  --*/
@media screen and (max-width: 1020px) {
    .pc-1020 {
        display: none;
    }

    .sp-1020 {
        display: block;
    }
}

/*-- 1250-PC版表示CSS  --*/
.pc-1250 {
    display: block;
}

.sp-1250 {
    display: none;
}

/*-- スマホ版表示CSS  --*/
@media screen and (max-width: 1250px) {
    .pc-1250 {
        display: none;
    }

    .sp-1250 {
        display: block;
    }
}

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

/* 共通
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container-1400 {
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
    position: relative;
}

.container-1236 {
    margin: 0 auto;
    max-width: 1236px;
    width: 100%;
    position: relative;
}

.container-1080 {
    margin: 0 auto;
    max-width: 1140px;
    width: 100%;
    position: relative;
    padding: 0 30px;
}

.container-736 {
    margin: 0 auto;
    max-width: 796px;
    width: 100%;
    position: relative;
    padding: 0 30px;
}

.title-font {
    /* font-family: 'Zen Maru Gothic', sans-serif; */
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
}

.title {
    font-size: 34px;
    line-height: 2;
    letter-spacing: 0.07em;
}

.title-section {
    margin: 100px auto 80px;
    text-align: center;
}

.sub-title {
    font-size: 12px;
    line-height: 2.4;
    letter-spacing: 0.4em;
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #A6C988;
}

/* アニメーション */
/*下から上にフェードイン*/
.down-to-top {
    opacity: 0.1;
    transform: translateY(50px);
    transition: all 1s;
}

.down-to-top.scroll-in {
    opacity: 1;
    transform: translateY(0);
}

/* ヘッダー -------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header-pc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /* line-height: 90px; */
    /* background: #3c3c3c; */
    vertical-align: middle;
    height: 70px;
    background-color: #fff;
}

.logo-pc {
    margin-left: 50px;
    width: 225px;
    height: 41px;
}

.logo-pc img {
    width: 100%;
    /* height: 70px; */
}

.header-pc ul {
    margin-right: 60px;
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
}

.header-pc li {
    /* display: inline-block; */
}

.header-pc li a {
    color: #231815;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 2;
}

.nav-contact-btn {
    color: #fff !important;
    background-color: #231815;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 2;
    padding: 0 28px;
    border-radius: 30px;
}

/*----spヘッダー ハンバーガーボタン------------*/
.header-sp {
    display: block;
    align-items: center;
    height: 70px;
    /* margin-left: 30px; */
    width: 100%;
    background-color: #fff;
}

.logo-sp {
    /* display: flex; */
    /* align-items: center; */
    position: absolute;
    top: 15px;
    left: 30px;
}

.logo-sp img {
    height: 33px;
}

.hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #231815;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 10px;
}

.hamburger span:nth-child(2) {
    top: 20px;
}

.hamburger span:nth-child(3) {
    top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    width: 0px;
}

.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3) {
    background: #231815;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.hamburger.active span:nth-child(1) {
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    -o-transform: translateY(4px);
    transform: translateY(4px);
}

.hamburger.active span:nth-child(3) {
    -webkit-transform: translateY(-16px) rotate(90deg);
    -ms-transform: translateY(-16px) rotate(90deg);
    -o-transform: translateY(-16px) rotate(90deg);
    transform: translateY(-16px) rotate(90deg);
}


nav.global-menu-sp {
    position: fixed;
    z-index: 102;
    top: 0;
    left: 0;
    color: #231815;
    /* background: #EDECFC; */
    /* background: rgba(0, 0, 0, 0.7); */
    background: #fff;
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
}

nav.global-menu-sp ul {
    margin: 0 auto;
    width: 100%;
}

nav.global-menu-sp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
}

nav.global-menu-sp ul li:last-child {
    padding-bottom: 0;
}

nav.global-menu-sp ul li:hover {
    /* background: #ddd; */
}

nav.global-menu-sp ul li a {
    display: block;
    color: #231815;
    padding: 1.1em 0;
    text-decoration: none;
    text-align: left;
}

/* このクラスを、jQueryで付与・削除する */
nav.global-menu-sp.active {
    opacity: 100;

}

nav.global-menu-sp {
    visibility: hidden;
    /* max-width: 400px; */
    margin-left: auto;
    right: 0;
    /* padding: 0 40px; */
    margin-top: 70px;
}

nav.global-menu-sp ul li a {
    padding: 20px 40px;
}

nav.global-menu-sp.active {
    opacity: 100;
    visibility: visible;
    /* max-width: 400px; */
    margin-left: auto;
    right: 0;
    /* padding: 0 40px; */
    margin-top: 70px;
    box-shadow: 0px 3px 3px #8080802b;
}

/* ここからメインページ--------------------- */
main {
    width: 100%;
    /* background: url(/img/haikei-gizagiza.png),url(); */
    /* background-repeat: no-repeat; */
    /* background-position: center bottom; */
    /* background-size: contain; */
    height: 80%;
    margin-top: 70px;
}

main img {
    width: 100%;
}

.main-img-section {
    /* position: relative; */
    max-width: 1550px;
    width: 100%;
    margin: 15px auto 0;
}

.top-main {
    display: block;
    margin: 0 auto;
    max-height: 700px;
    height: 90%;
    border-radius: 20px;
    padding: 0 100px 30px;
}

.main-img-town {
    width: 100vw;
    position: absolute;
    left: 7px;
    bottom: 0;
    margin: 0 calc(50% - 50vw);
}


/* アバウトセクション 1250まで表示 */
.about-section {
    background-color: #e9e9e9;
    padding: 40px 30px 80px;
}

.about-flex-section {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto 0px;
    position: relative;
    /* height: 735px; */
    height: 800px;
}

.about-img {
    position: absolute;
    top: 0px;
    right: 0px;
}

.about-text-box {
    max-width: 560px;
    width: 100%;
    max-height: 434px;
    height: 100%;
    padding: 40px;
    background-color: #fff;
    position: absolute;
    bottom: 0px;
    left: 0;
    border-radius: 12px;
}

.about-title {
    margin-bottom: 48px;
}

/* アバウトセクション 1250以下 */
.about-flex-section-sp {
    max-width: 928px;
    width: 100%;
    margin: 0 auto 0px;
    position: relative;
}

.about-img-sp {
    display: block;
    margin: 0 auto;
}

.about-text-box-sp {
    /* max-width: 560px; */
    width: 100%;
    /* max-height: 434px; */
    height: 100%;
    padding: 40px;
    background-color: #fff;
    border-radius: 24px;
    margin: 15px auto 0;
}


/* 取扱品目はじめ product */
.product-section {}

.product-lineup-section {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
}

.product-lineup-item-title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.product-lineup-item-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.175em;
    line-height: 2;
}

.product-lineup-item-btn {
    display: block;
    width: 110px;
    /* height: 24px; */
    font-size: 14px;
    font-weight: 300;
    line-height: 1.3;
    background-color: #FFD845;
    text-align: center;
    padding: 3px 0px 3px 6px;
    border: 1px solid #231815;
    border-radius: 16px;
    color: #231815;
}

.product-lineup-item-btn img {
    width: 12px;
    height: auto;
    margin-left: 6px;
    vertical-align: -1px;
}

/* 合法木材供給事業者セクション 始まり */
.wood-flex {
    display: flex;
    justify-content: space-between;
    max-width: 975px;
    width: 100%;
    margin: 0 auto;
}

.wood-flex-item {
    max-width: 510px;
    padding: 0 30px;
}


/* 代表挨拶 始まり */
.message-on-img {
    display: block;
}

.message-section {
    background-color: #DCEEB5;
}

.message-title {
    text-align: center;
    background-image: url(/img/tori1.png), url(/img/tori2.png);
    background-repeat: no-repeat, no-repeat;
    background-position: top right, bottom left;
    padding-top: 110px;
}

.message-text {
    padding-top: 80px;
    max-width: 470px;
    margin: 0 auto;
}

.message-town {
    padding-top: 25px;
    display: block;
    /* background-color: #fff; */
    width: 100%;
}

/* 会社概要 */
.company-section {
    margin-bottom: 150px;
}

.table-scroll {
    /* overflow: auto; */
    /*スクロールさせる*/

    /* white-space: nowrap; */
    /*文字の折り返しを禁止*/
}

/* table01 */
.table01 {
    border-collapse: collapse;
    width: 100%;
    overflow-x: scroll;
    overflow: auto;
    /* white-space: nowrap; */

}

/* スクロールバーの縦幅 */
::-webkit-scrollbar {
    height: 10px;
    width: 8px;
}

/* スクロールバーの背景色 */
::-webkit-scrollbar-track {
    background: #e9e9e9;
    border-radius: 5px;
}

/* スクロールバー自身の色 */
::-webkit-scrollbar-thumb {
    background: #A6C988;
    border-radius: 5px;
}

.table01 th,
.table01 td {
    padding: 18px 0;
    /* border: none; */
    border-bottom: 1px solid #a6c988;
    font-size: 18px;
    font-weight: 300;
    vertical-align: top;
}

.table01 th {
    width: 20%;
}


/* 採用情報 */
.recruit-section {
    background: rgba(217, 217, 217, 0.20);
    padding-top: 20px;
    padding-bottom: 170px;
}

/* Googleマップ */
.g-map {
    height: 0;
    overflow: hidden;
    /* padding-bottom: 56.25%; */
    padding-bottom: 39%;
    position: relative;
}

.g-map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    /* height: auto; */
    width: 100%;
}

/* フッター -------------------------------- */
.footer-flex {
    margin: 120px auto 0px;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

/* フッター左 */
.footer-left {
    max-width: 350px;
    width: 100%;
    padding-right: 30px;
}

.footer-logo {
    display: block;
}

.footer-logo img {
    width: 225px;
}

.footer-company-title {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    margin-top: 30px;
}

.footer-company-address {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 6px;
}

.footer-company-tel {
    display: flex;
    align-items: center;
}

.footer-company-tel-icon {
    width: 32px;
    height: 32px;
}

.footer-company-tel-no {
    color: #231815;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    font-size: 34px;
    letter-spacing: 0.14em;
    line-height: 68px;
    margin-left: 20px;
}

.footer-company-fax {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.14em;
    line-height: 1.5;
}

.footer-company-contact {
    color: #fff;
    font-weight: 600;
    background-color: #231815;
    font-size: 22px;
    letter-spacing: 0.15em;
    line-height: 2;
    padding: 0 36px;
    width: 224px;
    border-radius: 30px;
    margin-top: 30px;
}

.footer-company-contact a {
    color: #fff;
}

/* フッター 真ん中 右 */
.footer-c-r {
    display: flex;
    justify-content: space-between;
    max-width: 720px;
    width: 100%;
}

/* フッター真ん中 */
.footer-center {
    width: 132px;
}

.footer-center-flex {
    display: block;
    display: flex;
    align-items: center;
    height: 30px;
    margin-bottom: 16px;
}

.footer-center-icon {
    width: 27px;
}

.footer-center-list {
    color: #231815;
    font-size: 14px;
    font-weight: bold;
    margin-left: 6px;
}


/* フッター右 */
.footer-right {
    max-width: 460px;
    width: 100%;
}

.google-calendar {}

.google-calendar iframe {
    width: 100%;
    height: 315px;
}

/* フッターの一番下の街の絵 */
.footer-town {
    margin: -50px auto 0;
    max-width: 1370px;
    width: 100%;
    position: relative;
    pointer-events: none;
}

/* 1370px以下の表示 */
@media (max-width : 1370px) {
    .footer-town {
        max-width: 1176px;
    }
}

.copy {
    width: 100%;
    background-color: #e9e9e9;
    font-size: 12px;
    letter-spacing: 0.4em;
    line-height: 54px;
    text-align: center;
    height: 54px;
}

/* スクロール */
.scroll-section {
    position: fixed;
    bottom: 100px;
    right: 0;
    z-index: 20;
    transition: 2s;
}

.sns-scroll {
    display: block;
    margin: 0 35px 250px auto;
    transition: 1s;
}

.scroll-section.hide {
    /* transform:translateY(-60px); */
    transition: 1s;
    display: none;
}

.scroll-section.hide-slow .sns-scroll {
    opacity: 0;
    transition: opacity 1s;
    /* ゆっくり非表示と表示のアニメーション */
}

/* SNSボタン */
.sns-btn {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10;
}

.sns-btn a {
    width: 75px;
    margin: 0 50px 20px 0;
}

/* 1250px以下の表示 */
@media (max-width : 1250px) {

    /* アバウトの写真の配置 */
    .about-img {
        top: 0%;
        left: 50%;
        transform: translate(-50%, 0%);
        -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
    }

    .about-text-box {
        bottom: 0%;
        left: 50%;
        transform: translate(-50%, 0%);
        -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
    }

    .sns-scroll {
        display: block;
        margin: 0 20px 150px auto;
    }

    .sns-btn a {
        width: 50px;
        margin: 0 30px 20px 0;
    }
}


/* 1080px以下の表示 */
@media (max-width : 1080px) {

    /* 合法木材供給事業者セクション 始まり */
    .wood-flex {
        flex-wrap: wrap;
        justify-content: center;
        max-width: 975px;
        width: 100%;
        margin: 0 auto;
    }

    .wood-flex-item {
        max-width: 530px;
        padding: 0 30px;
        margin-bottom: 30px;
    }

    /* フッター -------------------------------- */
    .footer-flex {
        margin: 120px auto 0px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        padding: 0 30px;
    }

    .container-1236 {
        margin: 0 auto;
        max-width: 828px;
        width: 100%;
        position: relative;
    }

    /* フッター 真ん中 右 */
    .footer-c-r {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        max-width: 720px;
        width: 100%;
        margin-bottom: 30px;
    }

    /* フッター真ん中 */
    .footer-center {
        width: 192px;
        padding: 0 30px;
    }

    .footer-town {
        max-width: 880px;
        margin: 0px auto 0;
    }
}

/* 768px以下の表示 */
@media (max-width : 768px) {
    .product-section {
        padding-top: 30px;
    }

    .product-lineup-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        column-gap: 20px;
    }

    .product-lineup-item {
        margin-bottom: 50px;
    }

    .company-section {
        padding-top: 30px;
    }

    .table-scroll {
        max-width: 550px;
        margin: 0 auto;
        padding-bottom: 10px;
    }

    .table01 th {
        padding-right: 10px;
    }

    .footer-flex {
        margin: 80px auto 0px;
        padding: 0 30px;
    }

    .footer-center {
        width: 162px;
        padding: 0 0 0 30px;
    }

    .footer-right {
        max-width: 315px;
        width: 100%;
    }

    /* フッター左 */
    .footer-left {
        max-width: 315px;
        width: 100%;
        padding-right: 0px;
        margin: 0 auto;
    }

    /* フッター 真ん中 右 */
    .footer-c-r {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        max-width: 720px;
        width: 100%;
        margin-bottom: 30px;
    }

}

/* 550px以下の表示 */
@media (max-width : 550px) {
    .title {
        font-size: 24px;
        line-height: 2;
        letter-spacing: 0.07em;
    }

    .title-section {
        margin: 50px auto 30px;
        text-align: center;
    }

    .about-title {
        margin-bottom: 30px;
    }

    .message-title {
        background-size: 15%;
    }

    .wood-flex-item {
        max-width: 345px;
        padding: 0 0px;
        margin-bottom: 30px;
    }

    /* テーブル */
    .table01 th,
    .table01 td {
        width: 100%;
        display: block;
    }

    .table01 th {
        width: 100%;
        border-bottom: 0;
        padding: 18px 0 0px;
    }

    .table01 td {
        padding-top: 0;
    }

    .p-t-18 {
        padding: 18px 0 8px !important;
    }


    .company-section {
        margin-bottom: 80px;
    }

    .footer-flex {
        margin: 50px auto 0px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        padding: 0 30px;
    }

    /* フッター 真ん中 右 */
    .footer-c-r {
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: wrap-reverse;
        justify-content: flex-end;
        max-width: 375px;
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-center {
        width: 162px;
        padding: 0 0 0 0px;
        margin-top: 30px;
    }

    .footer-right {
        max-width: 300px;
        width: 100%;
    }

    /* フッター左 */
    .footer-left {
        max-width: 350px;
        width: 100%;
        padding-right: 0px;
    }

    .footer-town {
        max-width: 345px;
    }

    .sns-scroll {
        display: block;
        margin: 0 15px 150px auto;
    }

    .sns-btn a {
        width: 40px;
        margin: 0 15px 10px 0;
    }
}