@charset "utf-8";

/*------------------------

aos custom

------------------------*/
[data-aos=zoom-in] {
    opacity: 0;
    transform: scale(.9) translateY(50px);
}

[data-aos^=zoom-in].aos-animate {
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transition-duration: .85s;
    transition-property: opacity, transform;
    opacity: 1;
    transform: scale(1) translate(0);
}

[data-aos=fade-up] {
    transition: transform 1.2s ease, opacity 1.2s ease;
    opacity: 0;
    transform: translateY(30px);
}

[data-aos^=fade-up].aos-animate {
    transition: transform 1.2s ease, opacity 1.2s ease;
    opacity: 1;
    transform: translateY(0);
}

/*------------------------

トップページ

------------------------*/
@-webkit-keyframes zoomUp {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }
}

@keyframes zoomUp {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }
}

.swiper-container {
    position: relative;
}

.swiper-container:before {
    width: 100%;
    height: 15px;
    content: "";
    background-image: -moz-linear-gradient(0deg, rgb(139, 114, 70) 0%, rgb(81, 63, 1) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(139, 114, 70) 0%, rgb(81, 63, 1) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(139, 114, 70) 0%, rgb(81, 63, 1) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
    -webkit-animation: zoomUp 12s linear 0s;
    animation: zoomUp 12s linear 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.swiper-slide {
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    width: 100%;
    bottom: 30px;
    left: 0;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: .4;
    border-radius: 100%;
    background: #8b7246;
    display: inline-block;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    opacity: 1;
    background: #8b7246;
}

.slide-img {
    height: 600px;
    background-position: center center;
    background-size: cover;
}

.slide01 .slide-text,
.slide02 .slide-text,
.slide03 .slide-text {
    margin: auto;
    position: absolute;
    z-index: 10;
}

.slide01 .slide-text {
    width: 448px;
    height: 389px;
    top: 0;
    bottom: 0;
    left: 100px;
}

.slide02 .slide-text {
    width: 889px;
    height: 118px;
    top: 100px;
    right: 0;
    left: 0;
}

.slide03 .slide-text {
    width: 518px;
    height: 389px;
    top: 0;
    right: 100px;
    bottom: 0;
}

@media only screen and (max-width: 980px) {
    .swiper-container:before {
        height: 10px;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .slide-img {
        height: 320px;
    }

    .slide01 .slide-text {
        width: 40%;
        height: 40%;
        top: 0;
        bottom: 0;
        left: 8%;
    }

    .slide02 .slide-text {
        width: 80%;
        height: 100%;
        top: 20%;
        right: 0;
        left: 0;
    }

    .slide03 .slide-text {
        width: 45%;
        height: 40%;
        top: 0;
        right: 5%;
        bottom: 0;
    }
}

.section_top01 {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #fafafa;
}

.container_top01 {
    margin-left: -80px;
    display: flex;
}

.left-box_top01 {
    margin-left: 80px;
}

.right-box_top01 {
    margin-left: 80px;
    display: flex;
    flex-direction: column;
}

.section_top01 .title-en {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 2.313;
    color: rgb(139, 114, 70);
}

.section_top01 .title-en span {
    padding-bottom: 3px;
    position: relative;
}

.section_top01 .title-en span:before {
    width: 100%;
    height: 2px;
    content: "";
    background-color: #8b7246;
    position: absolute;
    bottom: 0;
    left: 0;
}

.section_top01 .title {
    margin-top: 30px;
    font-size: 22px;
    font-weight: bold;
    line-height: 2.273;
    color: rgb(62, 58, 57);
}

.section_top01 .text {
    margin-top: 40px;
    font-size: 14px;
    line-height: 2.643;
    color: rgb(62, 58, 57);
}

.section_top01 .btn-area {
    margin-top: auto;
}

.section_top01 .btn01 {
    width: 200px;
}

@media only screen and (max-width: 980px) {
    .section_top01 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .container_top01 {
        margin-left: 0;
        flex-direction: column;
    }

    .left-box_top01 {
        margin-left: 0;
    }

    .left-box_top01 img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

    .right-box_top01 {
        margin-top: 30px;
        margin-left: 0;
        flex-direction: column;
    }

    .section_top01 .title-en {
        font-size: 14px;
        line-height: 2;
    }

    .section_top01 .title {
        margin-top: 30px;
        font-size: 18px;
        line-height: 2;
    }

    .section_top01 .text {
        margin-top: 20px;
        font-size: 14px;
        line-height: 2;
    }

    .section_top01 .btn01 {
        width: 80%;
        margin: 30px auto 0;
    }
}

.section_top02 {
    padding-bottom: 120px;
    position: relative;
}

.section_top02:before {
    width: 100%;
    height: 190px;
    content: "";
    background-color: #fafafa;
    position: absolute;
    top: 0;
    left: 0;
}

.container_top02 {
    margin-left: -45px;
    display: flex;
}

.left-box_top02 {
    margin-left: 45px;
}

.right-box_top02 {
    margin-left: 45px;
    display: flex;
    flex-direction: column;
}

.section_top02 .link,
.section_top02 .link:before,
.section_top02 .link:after {
    transition-timing-function: cubic-bezier(.645, .045, .355, 1);
    transition-duration: .25s;
    transition-property: color, transform;
    will-change: transform;
    transform-origin: left;
}

.section_top02 .link {
    width: 100%;
    margin: 0;
    display: block;
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    text-decoration: none;
}

.section_top02 .link:hover {
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    will-change: transform;
}

.section_top02 .link:hover:before {
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    will-change: transform;
    transform: scaleX(1.15);
}

.section_top02 .link:hover:after {
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    will-change: transform;
    transform: translateX(8px);
}

.section_top02 .box {
    width: 420px;
    margin: -120px auto 0;
    color: #464646;
}

.section_top02 .box-inner {
    min-height: 150px;
    padding: 30px 30px 60px;
    transition-timing-function: cubic-bezier(.645, .045, .355, 1);
    transition-duration: .25s;
    transition-property: box-shadow, transform;
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    position: relative;
    will-change: transform;
    z-index: 1;
}

.section_top02 .link:hover .box-inner {
    transition-timing-function: cubic-bezier(.215, .645, .355, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    will-change: transform;
    transform: translateY(3px);
}

.section_top02 .img {
    font-size: 0;
}

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

.section_top02 .title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.35;
    color: rgb(139, 114, 70);
}

.section_top02 .title span {
    margin-left: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 2.643;
    color: rgb(139, 114, 70);
}

.section_top02 .text {
    min-height: 78px;
    padding: 10px 0 0;
    font-size: 14px;
    line-height: 26px;
    color: rgb(62, 58, 57);
    text-align: justify;
    letter-spacing: .1em;
}

.section_top02 .morelink {
    position: absolute;
    right: 40px;
    bottom: 25px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-align: right;
    z-index: 2;
}

.section_top02 .morelink span {
    padding: 0 40px 0 0;
    position: relative;
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 2.643;
    color: rgb(139, 114, 70);
    text-decoration: none;
}

.section_top02 .morelink span:before,
.section_top02 .morelink span:after {
    margin: auto;
    content: "";
    transition-timing-function: cubic-bezier(.645, .045, .355, 1);
    transition-duration: .25s;
    position: absolute;
    display: block;
}

.section_top02 .morelink span:before {
    width: 30px;
    height: 1px;
    background-color: #8b7246;
    top: 0;
    right: 0;
    bottom: 0;
}

.section_top02 .morelink span:after {
    width: 8px;
    height: 1px;
    background-color: #8b7246;
    top: -6px;
    right: -2px;
    bottom: 0;
    transform: rotate(50deg);
}

.section_top02 .link:hover .morelink span:before {
    width: 35px;
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    right: -6px;
}

.section_top02 .link:hover .morelink span:after {
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    right: -8px;
}

@media only screen and (max-width: 980px) {
    .section_top02 {
        padding-bottom: 60px;
    }

    .section_top02:before {
        height: 100px;
    }

    .container_top02 {
        margin-left: 0;
        flex-direction: column;
    }

    .left-box_top02 {
        margin-left: 0;
    }

    .right-box_top02 {
        margin-top: 60px;
        margin-left: 0;
    }

    .section_top02 .box {
        width: 90%;
        margin: -30px auto 0;
    }

    .section_top02 .title {
        font-size: 16px;
    }

    .section_top02 .title span {
        font-size: 12px;
    }

    .section_top02 .text {
        font-size: 13px;
        line-height: 2;
    }

    .section_top02 .morelink {
        right: 30px;
    }

    .section_top02 .morelink span {
        font-size: 12px;
    }
}

.section_top03 {
    padding-bottom: 100px;
}

.section_top03 .link-area ul {
    display: flex;
}

.section_top03 .link-area li {
    width: 33.3333333%;
    padding: 110px 5px 100px;
    background-size: cover;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
}

.section_top03 .title {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.227;
    color: rgb(255, 255, 255);
    text-shadow: 0 0 7.2px rgba(45, 45, 45, .6);
    text-align: center;
}

.section_top03 .title-en {
    margin-top: 15px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 200;
    line-height: 1.688;
    color: rgb(255, 255, 255);
    text-shadow: 0 0 7.2px rgba(45, 45, 45, .6);
    text-align: center;
    letter-spacing: .1em;
}

.section_top03 .text {
    margin-top: 30px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.929;
    color: rgb(255, 255, 255);
    text-shadow: 0 0 7.2px rgba(45, 45, 45, .6);
    text-align: center;
}

.section_top03 .btn-area {
    margin-top: 30px;
}

.section_top03 .btn-area .btn02 {
    width: 200px;
    margin: auto;
}

.section_top03 .link-product {
    background: url(../img/img_top04.png) no-repeat center center;
}

.section_top03 .link-processing {
    background: url(../img/img_top05.png) no-repeat center center;
}

.section_top03 .link-equipment {
    background: url(../img/img_top06.png) no-repeat center center;
}

@media only screen and (max-width: 980px) {
    .section_top03 {
        padding-bottom: 60px;
    }

    .section_top03 .link-area ul {
        flex-direction: column;
    }

    .section_top03 .link-area li {
        width: 100%;
        padding: 70px 0;
    }

    .section_top03 .title {
        font-size: 18px;
    }

    .section_top03 .title-en {
        font-size: 12px;
    }

    .section_top03 .text {
        font-size: 14px;
    }
}

/*------------------------

中面共通

------------------------*/
.anchor {
    margin-top: -90px;
    padding-top: 90px;
}

.page-title {
    width: 100%;
    height: 300px;
    margin: 0;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.page-title:before {
    width: 100%;
    height: 15px;
    content: "";
    background-image: -moz-linear-gradient(0deg, rgb(139, 114, 70) 0%, rgb(81, 63, 1) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(139, 114, 70) 0%, rgb(81, 63, 1) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(139, 114, 70) 0%, rgb(81, 63, 1) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.page-title .wrap {
    height: 300px;
    display: flex;
    align-items: center;
}

.page-title_text {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    color: rgb(255, 255, 255);
    text-shadow: 0 0 7.2px rgba(45, 45, 45, .6);
    letter-spacing: .1em;
}

@media only screen and (max-width: 980px) {
    .anchor {
        margin-top: -60px;
        padding-top: 60px;
    }

    .page-title {
        height: 200px;
    }

    .page-title:before {
        height: 8px;
    }

    .page-title .wrap {
        height: 200px;
    }

    .page-title_text {
        font-size: 28px;
    }
}

/*------------------------

会社概要

------------------------*/
.company-page .page-title {
    background-image: url("../img/title_company.png");
}

.section_company01 {
    padding-top: 100px;
}

.contents_company01 {
    width: 80%;
    margin: auto;
}

.section_company01 .headline {
    margin-top: 60px;
    font-size: 22px;
    font-weight: bold;
    line-height: 2.273;
    color: rgb(139, 114, 70);
    text-align: center;
    letter-spacing: .1em;
}

.section_company01 .text {
    margin-top: 50px;
    font-size: 14px;
    line-height: 2.643;
    color: rgb(86, 86, 86);
    text-align: justify;
}

.section_company01 .name {
    font-size: 16px;
    font-weight: bold;
    line-height: 4.063;
    color: rgb(62, 58, 57);
    text-align: right;
}

.section_company01 .img {
    margin-top: 75px;
    text-align: center;
}

@media only screen and (max-width: 980px) {
    .section_company01 {
        padding-top: 60px;
    }

    .contents_company01 {
        width: 100%;
    }

    .section_company01 .headline {
        margin-top: 40px;
        font-size: 18px;
    }

    .section_company01 .text {
        margin-top: 30px;
        line-height: 2;
    }

    .section_company01 .name {
        font-size: 14px;
        line-height: 4;
    }

    .section_company01 .img {
        margin-top: 40px;
    }
}

.section_company02 {
    padding-top: 90px;
}

.contents_company02 {
    width: 90%;
    margin: 50px auto 0;
}

.table_company02 {
    width: 100%;
    line-height: 2;
}

.table_company02 tr:nth-child(odd) th,
.table_company02 tr:nth-child(odd) td {
    background-color: #edebe7;
}

.table_company02 th {
    width: 30%;
    padding: 30px 30px 30px 100px;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
}

.table_company02 td {
    width: 70%;
    padding: 30px 0 30px 30px;
    font-size: 14px;
}

.table_company02 p {
    line-height: 1.618;
}

.table_company02 p+p {
    padding-top: 10px;
}

@media only screen and (max-width: 980px) {
    .section_company02 {
        padding-top: 60px;
    }

    .contents_company02 {
        width: 100%;
        margin: 30px auto 0;
    }

    .table_company02 {
        line-height: 1.618;
    }

    .table_company02 th {
        width: 20%;
        padding: 15px 0 15px 15px;
        font-size: 12px;
    }

    .table_company02 td {
        width: 80%;
        padding: 15px 0 15px 15px;
        font-size: 12px;
    }

    .table_company02 p {
        line-height: 1.618;
    }

    .table_company02 p+p {
        padding-top: 10px;
    }
}

.section_company03 {
    padding-top: 90px;
    padding-bottom: 100px;
}

.contents_company03 {
    width: 90%;
    margin: 50px auto 0;
}

@media only screen and (max-width: 980px) {
    .section_company03 {
        padding-top: 60px;
    }

    .contents_company03 {
        width: 100%;
        margin: 30px auto 0;
    }
}

/*------------------------

事業内容

------------------------*/
.service-page .page-title {
    background-image: url("../img/title_service.png");
}

.section_service01 {
    padding-top: 100px;
}

.section_service01 .contents_service01 {
    width: 90%;
    margin: 50px auto 0;
    padding: 90px 0;
}

.section_service01 .container_service01 {
    margin-left: -35px;
    display: flex;
}

.section_service01 .container_service01+.container_service01 {
    margin-top: 60px;
}

.section_service01 .img-contents {
    width: calc(434px + 35px);
    margin-left: 35px;
}

.section_service01 .text-contents {
    width: calc(100% - 434px);
    margin-left: 35px;
}

.section_service01 .headline {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.35;
    color: rgb(139, 114, 70);
}

.section_service01 .headline span {
    margin-left: 15px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 2.643;
    color: rgb(139, 114, 70);
}

.section_service01 .text {
    margin-top: 25px;
    font-size: 14px;
    line-height: 2.643;
    color: rgb(86, 86, 86);
    text-align: justify;
}

@media only screen and (min-width: 560px) {
    .section_service01 .img-contents {
        transition-delay: 1.0s !important;
    }
}

@media only screen and (max-width: 980px) {
    .section_service01 {
        padding-top: 60px;
    }

    .section_service01 .contents_service01 {
        width: 100%;
        margin: 40px auto 0;
        padding: 60px 0;
    }

    .section_service01 .container_service01 {
        margin-left: 0;
        flex-direction: column;
    }
    .section_service01 .container_service01 img {
        width: 100%;
    }
    .section_service01 .container_service01+.container_service01 {
        margin-top: 40px;
    }

    .section_service01 .img-contents {
        width: 100%;
        margin-left: 0;
        order: 1;
    }

    .section_service01 .text-contents {
        width: 100%;
        margin-top: 30px;
        margin-left: 0;
        order: 2;
    }

    .section_service01 .headline {
        font-size: 18px;
    }

    .section_service01 .headline span {
        font-size: 10px;
    }

    .section_service01 .text {
        margin-top: 15px;
        font-size: 13px;
        line-height: 2;
    }
}

.section_service02 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section_service02 .contents_service02 {
    margin: 60px auto 0;
}

.section_service02 .container_service02 {
    margin-left: -30px;
    display: flex;
    flex-wrap: wrap;
}

.section_service02 .box_service02 {
    width: calc(33.333333% - 30px);
    margin-left: 30px;
}

.section_service02 .box_service02:nth-child(n+4) {
    margin-top: 60px;
}

.section_service02 .headline {
    margin-top: 25px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.35;
    color: rgb(139, 114, 70);
}

.section_service02 .text {
    margin-top: 15px;
    font-size: 14px;
    color: rgb(86, 86, 86);
}

.section_service02 .btn-area a {
    margin-top: 10px;
    padding: 6px 20px;
    -webkit-transition: .4s;
    transition: .4s;
    background-color: #928369;
    position: relative;
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 2.313;
    color: #fff;
    text-align: center;
    letter-spacing: .1em;
}

.section_service02 .btn-area a:hover {
    background-color: #8b7246;
}

.section_service02 .contact-btn span {
    padding: 0 40px 0 0;
    position: relative;
}

.section_service02 .contact-btn span:before,
.section_service02 .contact-btn span:after {
    margin: auto;
    content: "";
    transition-timing-function: cubic-bezier(.645, .045, .355, 1);
    transition-duration: .25s;
    position: absolute;
    display: block;
}

.section_service02 .contact-btn span:before {
    width: 30px;
    height: 1px;
    background-color: #fff;
    top: 0;
    right: 0;
    bottom: 0;
}

.section_service02 .contact-btn span:after {
    width: 8px;
    height: 1px;
    background-color: #fff;
    top: -6px;
    right: -2px;
    bottom: 0;
    transform: rotate(50deg);
}

.section_service02 .contact-btn a:hover span:before {
    width: 35px;
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    right: -6px;
}

.section_service02 .contact-btn a:hover span:after {
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    right: -8px;
}

@media only screen and (min-width: 560px) {
    .section_service02 .box_service02:nth-of-type(3n+1) {
        transition-delay: .3s !important;
    }

    .section_service02 .box_service02:nth-of-type(3n+2) {
        transition-delay: .6s !important;
    }

    .section_service02 .box_service02:nth-of-type(3n+3) {
        transition-delay: .9s !important;
    }
}

@media only screen and (max-width: 980px) {
    .section_service02 {
        padding-top: 60px;
    }

    .section_service02 .contents_service02 {
        width: 90%;
        margin: 40px auto 0;
    }

    .section_service02 .container_service02 {
        margin-left: 0;
    }

    .section_service02 .box_service02 {
        width: 100%;
        margin-left: 0;
    }

    .section_service02 .box_service02:nth-child(n+2),
    .section_service02 .box_service02:nth-child(n+4) {
        margin-top: 40px;
    }

    .section_service02 .img img {
        width: 100%;
    }

    .section_service02 .headline {
        margin-top: 20px;
        font-size: 16px;
    }

    .section_service02 .text {
        margin-top: 10px;
        font-size: 13px;
    }
}

/*------------------------

製作加工の紹介

------------------------*/
.works-page .page-title {
    background-image: url("../img/title_works.png");
}

.section_works01 {
    padding-top: 100px;
    padding-bottom: 90px;
}

.section_works01 .headline {
    margin-top: 60px;
    font-size: 20px;
    font-weight: bold;
    color: rgb(139, 114, 70);
    text-align: center;
}

.section_works01 .container_works01 {
    margin-top: 50px;
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
}

.section_works01 .box_works01 {
    width: calc(25% - 15px);
    margin-left: 15px;
}

.section_works01 .box_works01:nth-child(n+5) {
    margin-top: 50px;
}

.section_works01 .img img {
    width: 240px;
    object-fit: cover;
}

.section_works01 .img img:before {
    width: 240px;
    content: "";
    background-color: #edebe7;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.section_works01 .img img:after {
    width: 240px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.section_works01 .label {
    padding: 10px 10px 8px;
    background-color: rgb(146, 131, 105);
    font-size: 14px;
    color: rgb(255, 254, 254);
    text-align: center;
}

@media only screen and (max-width: 980px) {
    .section_works01 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section_works01 .container_works01 {
        width: 90%;
        margin: 30px auto 0;
    }

    .section_works01 .headline {
        font-size: 16px;
    }

    .section_works01 .box_works01 {
        width: 100%;
        margin-left: 0;
    }

    .section_works01 .box_works01+.box_works01,
    .section_works01 .box_works01:nth-child(n+5) {
        margin-top: 30px;
    }

    .section_works01 .img {
        width: 100%;
        background-color: #edebe7;
    }

    .section_works01 .img img,
    .section_works01 .img img:before,
    .section_works01 .img img:after {
        width: 100%;
    }
}

.section_works02 {
    padding: 90px 0;
}

.section_works02 .headline {
    margin-top: 60px;
    font-size: 20px;
    font-weight: bold;
    color: rgb(139, 114, 70);
    text-align: center;
}

.section_works02 .container_works02 {
    margin-top: 50px;
    margin-left: -22px;
    display: flex;
    flex-wrap: wrap;
}

.section_works02 .box_works02 {
    width: calc(33.333333% - 22px);
    margin-left: 22px;
}

.section_works02 .box_works02:nth-child(n+4) {
    margin-top: 30px;
}

.section_works02 .img img {
    width: 320px;
    object-fit: cover;
}

.section_works02 .img img:before {
    width: 320px;
    content: "";
    background-color: #e1ded7;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.section_works02 .img img:after {
    width: 320px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.section_works02 .label {
    padding: 10px 10px 8px;
    background-color: rgb(146, 131, 105);
    font-size: 14px;
    color: rgb(255, 254, 254);
    text-align: center;
}

@media only screen and (max-width: 980px) {
    .section_works02 {
        padding: 60px 0;
    }

    .section_works02 .container_works02 {
        width: 90%;
        margin: 30px auto 0;
    }

    .section_works02 .headline {
        font-size: 16px;
    }

    .section_works02 .box_works02 {
        width: 100%;
        margin-left: 0;
    }

    .section_works02 .box_works02+.box_works02,
    .section_works02 .box_works02:nth-child(n+5) {
        margin-top: 30px;
    }

    .section_works02 .img {
        width: 100%;
        background-color: #edebe7;
    }

    .section_works02 .img img,
    .section_works02 .img img:before,
    .section_works02 .img img:after {
        width: 100%;
    }
}

.section_works03 {
    padding-top: 90px;
    padding-bottom: 100px;
}

.section_works03 .headline {
    margin-top: 60px;
    font-size: 20px;
    font-weight: bold;
    color: rgb(139, 114, 70);
    text-align: center;
}

.section_works03 .container_works03 {
    margin-top: 50px;
    margin-left: -40px;
    display: flex;
    flex-wrap: wrap;
}

.section_works03 .box_works03 {
    width: calc(50% - 40px);
    margin-left: 40px;
    display: flex;
    align-items: flex-end;
}

.section_works03 .box_works03:nth-child(n+3) {
    margin-top: 40px;
}

.section_works03 .img-box {
    width: 300px;
}

.section_works03 .img img {
    width: 300px;
    object-fit: cover;
}

.section_works03 .img img:before {
    width: 300px;
    content: "";
    background-color: #edebe7;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.section_works03 .img img:after {
    width: 300px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.section_works03 .text-box {
    width: calc(100% - 320px);
    min-height: 96px;
    margin-left: 20px;
}

.section_works03 .label {
    padding: 5px 5px 3px;
    background-color: rgb(146, 131, 105);
    font-size: 14px;
    color: rgb(255, 254, 254);
    text-align: center;
}

.section_works03 .text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 2;
    color: rgb(139, 114, 70);
    letter-spacing: 0;
}

@media only screen and (max-width: 980px) {
    .section_works03 {
        padding-top: 60px;
    }

    .section_works03 .container_works03 {
        width: 90%;
        margin: 30px auto 0;
    }

    .section_works03 .headline {
        font-size: 16px;
    }

    .section_works03 .box_works03 {
        width: 100%;
        margin-left: 0;
        flex-wrap: wrap;
    }

    .section_works03 .box_works03+.box_works03,
    .section_works03 .box_works03:nth-child(n+5) {
        margin-top: 30px;
    }

    .section_works03 .img-box {
        width: 100%;
    }

    .section_works03 .img {
        width: 100%;
        background-color: #edebe7;
    }

    .section_works03 .img img,
    .section_works03 .img img:before,
    .section_works03 .img img:after {
        width: 100%;
    }

    .section_works03 .text-box {
        width: 100%;
        min-height: auto;
        margin-left: 0;
    }

    .section_works03 .text {
        font-size: 13px;
        font-weight: normal;
        line-height: 1.618;
    }
}

/*------------------------

お問い合わせ

------------------------*/
.contact-page .page-title {
    background-image: url("../img/title_contact.png");
}

.section_contact01 {
    padding-top: 100px;
}

.tel-info {
    width: 60%;
    margin: 30px auto 0;
    padding: 40px;
    background-color: #edebe7;
    text-align: center;
}

.tel-info .tel-number {
    margin-top: 20px;
}

.tel-info .tel-number a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0;
}

.tel-info .tel-number img {
    width: 40px;
    margin-right: 5px;
}

.tel-info .tel-number p {
	padding-top: 10px;
}

.contents_contact01 {
    width: 80%;
    margin: auto;
}

.contents_contact01 .text {
    margin-top: 50px;
    font-size: 14px;
    line-height: 2.643;
    text-align: center;
}

.section_contact02 {
    padding-bottom: 100px;
}

.contact-form {
    margin-top: 40px;
}

.form-tag {
    width: 50px;
    height: 25px;
    margin-right: 5px;
    margin-left: 5px;
    background: #edebe7;
    display: inline-block;
    font-family: "游ゴシック Medium", "YuGothic,YuGothicM", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 2;
    color: #313439;
    text-align: center;
}

.form-tag.-required {
    background: #b02126;
    color: #fff;
}

.contact-table {
    width: 100%;
    margin: 0;
    font-size: 16px;
}

.contact-table {
    width: 100%;
    line-height: 2;
}

.contact-table>tbody>tr>th {
    width: 30%;
    padding: 30px;
    border-bottom: solid 1px #edebe7;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
}

.contact-table>tbody>tr>td {
    width: 70%;
    padding: 30px 0 30px 30px;
    border-bottom: solid 1px #edebe7;
    font-size: 14px;
}

.contact-table .form-tag {
    margin: auto;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
}

.contact-form__footer {
    margin-top: 40px;
    line-height: 2;
}

.contact-form__footer .title {
    font-weight: 600;
    text-align: center;
}

.privacy-box {
    width: 900px;
    height: 200px;
    margin: 20px auto;
    padding: 30px 40px;
    border: 5px solid #edebe7;
    background: #f4f4f4;
    overflow: auto;
}

.privacy-box p {
    margin: 0 0 15px;
    font-size: 14px;
}

.privacy-text {
    font-size: 14px;
    text-align: center;
}

/*-----------
form
------------*/
::placeholder {
    color: rgba(203, 201, 198, .8);
}

.contact-table select,
.contact-table input,
.contact-table button,
.contact-table textarea,
.contact-table button,
.contact-table option {
    font-family: "游ゴシック Medium", "YuGothic,YuGothicM", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.contact-table input,
.contact-table textarea {
    width: 100%;
    padding: 12px;
    transition: all .5s;
    border: 1px solid #fafafa;
    border-radius: 0;
    background: #edebe7;
    box-sizing: border-box;
    -webkit-appearance: none;
    font-size: 14px;
}

.contact-table input:focus,
.contact-table textarea:focus {
    border: 1px solid #d2d0cb;
    outline: 0;
    background: #fff;
}

.contact-table input:focus::placeholder,
.contact-table textarea:focus::placeholder {
    color: #fff;
}

.select-wrap {
    width: 100%;
    border: 1px solid #f4f5f7;
    border-radius: 0;
    background: #f4f5f7;
    position: relative;
    overflow: hidden;
}

.select-wrap::before {
    width: 6px;
    height: 6px;
    margin-top: -4px;
    content: "";
    border: 0;
    border-right: solid 2px #666;
    border-bottom: solid 2px #666;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: rotate(45deg);
}

.select-wrap select {
    width: 100%;
    padding: 17px;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    text-indent: .01px;
    text-overflow: ellipsis;
    -webkit-appearance: none;
    appearance: none;
}

.select-wrap select::-ms-expand {
    display: none;
}

.contact-table .w30 {
    width: 30%;
}

.contact-table .w50 {
    width: 50%;
}

.contact-table .w80 {
    width: 80%;
}

.kojin-checkbox {
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
}

.kojin-checkbox label {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.kojin-checkbox label:hover {
    cursor: pointer;
}

.kojin-checkbox input {
    margin: 0 10px 0 0;
}

.submit-btn {
    width: 400px;
    margin: 40px auto 0;
}

.submit-btn input {
    width: 100%;
    height: 68px;
    padding: 25px 0;
    transition: .5s;
    transition: .3s;
    border: solid 1px rgb(139, 114, 70);
    border-radius: 0;
    border-radius: 34px;
    background: rgb(139, 114, 70);
    position: relative;
    display: block;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-align: center;
    text-decoration: none;
    letter-spacing: .18em;
    box-sizing: border-box;
    -webkit-appearance: none;
}

.submit-btn input:hover {
    cursor: pointer;
    background: rgb(81, 63, 1);
}

@media only screen and (max-width: 980px) {
    .contents_contact01 {
        width: 100%;
    }

    .section_contact01 {
        padding-top: 60px;
    }

    .tel-info {
        width: 100%;
        margin: 40px auto 0;
        padding: 20px 0;
        font-size: 12px;
    }

    .tel-info .tel-number {
        margin-top: 10px;
    }

    .tel-info .tel-number a {
        font-size: 28px;
    }

    .tel-info .tel-number img {
        width: 28px;
        margin-right: 3px;
    }

    .contents_contact01 .text {
        margin-top: 20px;
        font-size: 13px;
        line-height: 2;
        text-align: left;
    }

    .section_contact02 {
        padding-bottom: 60px;
    }

    .contact-form {
        margin-top: 20px;
    }

    .form-tag {
        width: 40px;
        height: 20px;
        font-size: 11px;
        line-height: 1.9;
    }

    .contact-table {
        border-top: solid 1px #edebe7;
        line-height: 1.618;
    }

    .contact-table>tbody>tr {
        display: flex;
        flex-wrap: wrap;
    }

    .contact-table>tbody>tr>th {
        width: 100%;
        padding: 25px 0 0 0;
        border-top: 0;
        border-bottom: 0;
    }

    .contact-table>tbody>tr+tr>th {
        font-size: 13px;
    }

    .contact-table>tbody>tr>td {
        width: 100%;
        padding: 10px 0 25px;
        border-top: 0;
        border-bottom: 0;
        border-bottom: solid 1px #edebe7;
        border-left: 0;
        font-size: 13px;
    }

    .contact-table .form-tag {
        top: 20px;
        right: 0;
    }

    .contact-form__footer {
        margin-top: 40px;
    }

    .contact-form__footer .title {
        font-size: 14px;
    }

    .privacy-box {
        width: 100%;
        padding: 15px 20px;
    }

    .privacy-box p {
        font-size: 12px;
    }

    .privacy-text {
        font-size: 12px;
        text-align: left;
    }

    /*-----------
      form
      ------------*/
    .contact-table .w30,
    .contact-table .w50,
    .contact-table .w80 {
        width: 100%;
    }

    .contact-table input,
    .contact-table textarea {
        font-size: 16px;
    }

    .select-wrap select {
        height: 46px;
        padding: 0 16px;
    }

    .kojin-checkbox label {
        font-size: 14px;
    }

    .submit-btn {
        width: 100%;
        margin: 20px auto 0;
    }

    .submit-btn input {
        width: 100%;
        height: 52px;
        padding: 0;
        font-size: 15px;
        line-height: .2;
    }
}
