@charset "utf-8";

/*
* {
	outline: 1px solid magenta;
}
*/

/*ーーーーーーーー　共通　ーーーーーーーー*/
.section-title {
    font-size: clamp(20px, 4.5rem, 28px);
    font-weight: 700;
}
.section-title span {
    font-size: clamp(20px, 4.5rem, 24px);
    font-weight: 700;
}

/*ーーーーーーーー　コンテンツエリア　ーーーーーーーー*/
.content {
    width: calc(100% - 6.5em);
    margin: 0 0 0 auto;
}

/*ーーーーーーーー　ヘッダー　ーーーーーーーー*/
.header {
    position: fixed;
    top: 0;
    width: 6.5em;
    height: 100vh;
    flex-direction: column;
    z-index: 100;
    padding-top: 1.5em;
    background-color: #fff;
}
.header-h1 {
    flex-basis: 60%;
    min-height: 340px;
}
.header-h1_a {
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    font-size: clamp(20px, 6rem, 24px);
    font-weight: 700;
}
.header-h1_img {
    width: 5.5em;
    max-width: 90px;
}
/*ヘッダー電話番号*/
.header-tel_a {
    flex-basis: 10%;
}
.header-tel_a:hover,
.header-contact_a:hover{
    cursor: pointer;
}
.header-tel_a i {
    background-color: var(--gold);
    border-radius: 100px;
    padding: 0.6em;
    font-size: 150%;
}
.fa-phone:before {
    color: #fff;
}
/*ヘッダーお問い合わせ*/
.header-contact_a {
    flex-basis: 10%;
    width: 100%;
    height: 100%;
    background-color: #000;
    padding: 2em 0;
}
.header-contact_a i {
    color: #fff;
    font-size: 150%;
}

/*ーーーーーーーー　グローバルナビ　ーーーーーーーー*/
.nav {
	position: relative;
    width: 100%;
	height: auto;
    z-index: 10;
    padding: 1em 0;
    background: #000;
}
.nav-header {
    list-style: none;
}
.nav-list a {
    color: #fff;
    margin-right: 2em;
    font-size: clamp(14px, 3rem, 18px);
}
.nav-tel {
    color: #d1ab35 !important;
    font-size: clamp(15px, 4rem, 19px)!important;
}
.nav.sticky{
    position: fixed;
    top: 0;
    right: 0;
	padding: 0;
	background: rgba(0, 0, 0, 0.7);
}
.sp-nav {
    display: none;
}
.nav-tel .fa-phone:before {
    color: var(--gold);
    margin-right: 0.5em;
}
@media screen and (max-width: 780px) {
    .header,
    .nav {
        display: none;
    }
    .content {
        width: 100%;
    }
    .sp-nav {
        display: flex;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 5;
        background: #fff;
    }
    .sp-nav_logo {
        font-size: clamp(18px, 9rem, 20px);
        font-weight: 700;
    }
    .sp-nav_logo img {
        width: 4.5em;
    }
    .sp-nav_btn {
        background: var(--black);
        padding: 1.5em;
        height: 100%;
    }
    .sp-label {
        height: 62px;
        cursor: pointer;
        z-index: 200;
        background: var(--black);
        padding: 1.5em 1em;
    }
    .sp-label span {
        top: 10px;
        width: 33px;
        height: 3px;
        background: #fff;
        transition: 0.3s;
    }
    .sp-label span::before,
    .sp-label span::after {
        content: "";
        display: block;
        position: absolute;
        width: 33px;
        height: 3px;
        background: #fff;
        transition: 0.3s;
    }
    .sp-label span::before {
        bottom: 10px;
    }
    .sp-label span::after {
        top: 10px;
    }
    #sp-btn {
        display: none;
    }
    #sp-btn:checked ~ .sp-label span {
        background: transparent;
        transition: 0.3s;
    }
    #sp-btn:checked ~ .sp-label span::before {
        bottom: 0;
        transform: rotate(45deg);
        transition: 0.3s;
    }
    #sp-btn:checked ~ .sp-label span::after {
        top: 0;
        transform: rotate(135deg);
        transition: 0.3s;
    }
    .sp-nav_list {
        display: block;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 150;
        visibility: hidden;
    }
    .sp-nav_li .nav-tel {
        color: var(--gold) !important;
    }
    #sp-btn:checked ~ .sp-nav_list {
        visibility: visible;
    }
    .sp-nav_ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        list-style: none;
        margin: 0;
        padding-left: 0;
    }
    .sp-nav_li {
        margin: 1em;
    }
    .sp-nav_li a {
        color: #fff;
        font-size: 20px;
    }
    .nav-tel {
        font-size: 20px !important;
    }
}

/*ーーーーーーーー　キービジュアル　ーーーーーーーー*/
.mv {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.mv::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-image: radial-gradient(#666 10%, transparent 90%);
    background-color: rgba(0,0,0,0.5);
    background-position: 0 0;
    background-size: 5px 5px;
    mix-blend-mode: multiply;
}
.mv-wrap {
    height: 80vh;
    min-height: 530px;
}
.mv-wrap #video {
    display: block;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: contrast(2) grayscale(1);
}
.mv-txt {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 3;
}
.mv-txt_main {
    font-size: clamp(34px, 13rem, 90px);
    font-weight: bold;
    line-height: 1.3;
    margin: 0;
    color: #fff;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
    text-align: right;
}
.mv-txt_sub {
    font-size: clamp(14px, 3rem, 28px);
    color: #fff;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
    text-align: right;
}
.mv-txt_forsp {
        display: none;
}
@media screen and (max-width: 1100px) {
    .mv-txt_main {
        font-size: clamp(32px, 20rem, 90px);
    }
}
@media screen and (max-width: 880px) {
    .nav-list a {
        margin-right: 1em;
    }
}
@media screen and (max-width: 780px) {
    .mv {
        margin-top: 4.4em;
    }
}
@media screen and (max-width: 680px) {
    .mv-wrap {
        height: 50vh;
    }
    .mv-txt {
        padding-left: 5%;
    }
}
@media screen and (max-width: 480px) {
    .mv-txt_forsp {
        display: block;
    }
}

/*ーーーーーーーー　林フォーム工業について　ーーーーーーーー*/
.about {
    background: url(../images/about_bg.jpeg) no-repeat center;
    background-size: cover;
    padding: 5em 0;
    margin: 10em 0 5em 0;
    z-index: -2;
}
.about::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(231 230 226 / 80%);
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
    z-index: -1;
}
.about-img {
    flex-basis: 57%;
    width: 57%;
    height: 100%;
    margin-top: -10em;
    box-shadow: 8px 8px 13px rgb(66 66 56 / 15%);
}
#about h2 span {
    color: var(--gold);
}
.about-txt {
    flex-basis: 40%;
    width: 40%;
}
.about-txt p {
    margin: 0;
}
@media screen and (max-width: 1280px) {
    .about {
        margin: 17em 0 5em 0;
        padding: 0 0 3em 0;
        background: none;
    }
    .about::after {
        display: none
    }
    .about-img {
        flex-basis: 100%;
        width: 100%;
        order: 2;
        margin-top: 0;
    }
    .about-txt {
        flex-basis: 100%;
        margin-top: -13em;
    }
    .section-title {
        margin-bottom: 0.5em !important;
    }
    .about-txt p {
        margin: 0;
    }
    
}
@media screen and (max-width: 480px) {
    .about-txt {
        margin-bottom: 2em;
    }
    .about {
        margin: 17em 0 2em 0;
    }
}

/*ーーーーーーーー　製品案内　ーーーーーーーー*/
.product-inner_box {
    flex-basis: 33.3%;
    width: 33.3%;
    padding: 0 1em;
}
.product-flex {
    row-gap: 2em;
}
#product h2 span {
    color: var(--gold);
}
.product-inner_box h3 {
    font-size: clamp(18px, 3.5rem, 24px);
    font-weight: 700;
    margin-bottom: 5px;
}
.product-inner_box--img,
.about-inner_img {
    box-shadow: 8px 8px 13px rgb(66 66 56 / 15%);
}
.product-inner_box--img img {
    aspect-ratio: 526 / 395;
    object-fit: cover;
}
.product-title_p,
.product-inner_p{
    margin: 0;
}
@media screen and (max-width: 780px) {
    .product-title {
        flex-basis: 100% !important;
        width: 100% !important;
    }
    .product-flex {
        justify-content: inherit;
    }
}
@media screen and (max-width: 680px) {
    .product-inner_box {
        flex-basis: 50%;
        width: 50%;
    }
}
@media screen and (max-width: 480px) {
    .product-inner_box {
        flex-basis: 100%;
        width: 100%;
        margin-bottom: 0.5em;
    }
}

/*ーーーーーーーー　加工事例　ーーーーーーーー*/
.example-wrap {
    width: 90%;
    /* max-width: 1680px; */
    margin-left: auto !important;
    margin-right: auto !important;
}
.example {
    background-color: #f8f5ee;
}
.example-head {
    background: url("../images/example_bg.jpg") no-repeat center;
    background-size: cover;
}
.example-head::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 60%);
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
}
.example-head_wrap {
    padding: 5em 1em;
    z-index: 1;
}
.example-head_h2,
.example-head_p {
    color: #fff;
}
.example-head_h2 span {
    color: var(--gold);
}
.example-head_h2 {
    flex: 1;
    font-size: clamp(28px, 10rem, 48px);
}
.example-head_p {
    flex-basis: 70%;
}
.example-h3 {
    font-size: clamp(20px, 4rem, 24px);
    font-weight: 700;
    margin-bottom: 0.3em;
}
.example-span {
    padding: 0.5em 3em;
    background: #222;
    color: #fff;
}

.example-inner {
    border: 1px solid var(--gold);
    background-color: #fff;
}
.example145-inner {
    padding: 5em 0px 2em 3em;
}
.example23_inner {
    padding: 5em 2em 2em 0px;
}
.example-img img,
.example01-img img {
    aspect-ratio: 1;
    object-fit: cover;
    width: 50%;
}
.example-p {
    margin: 0 !important;
}
.example-p {
    margin: 0 !important;
}
.example01-txt .example-p {
    margin-bottom: 1em !important;
}

/* <!--   Example 01   --> */
.example01-img {
    width: 58%;
    margin-top: -8em;
    margin-right: -1em;
    box-shadow: 3px 3px 4px rgb(66 66 56 / 15%);
}
.example01-span {
    top: 1.5em;
    left: 0;
}
.example01-txt {
    width: 40%;
}
/* アンカーリンク（外部リンク：発泡体ドットコム） */
.example-alink_a {
    width: 100%;
    height: 100%;
    padding: 1em 1.8em;
    transform: skew(-15deg);
    border-radius: 0;
    box-shadow: 4px 4px 0 #e9e6d9;
    background: var(--gold);
}
.example-alink_a span {
    color: #fff;
}
.example-alink_a:hover:before {
    top: -3px;
    background: #000;
}
.example-alink_a:hover:after {
    bottom: -3px;
    background: #000;
}
.example-alink_a:hover {
    -webkit-transform: skew(-5deg);
    transform: skew(-5deg);
}
.example-alink_a span::after {
    content: "\f08e";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    padding-left: 3px;
    color: #fff;
    font-size: 80%;
}

/* <!--   Example 02〜05   --> */
.example-img {
    width: 52%;
    box-shadow: 3px 3px 4px rgb(66 66 56 / 15%);
}
.example-txt {
    width: 48%;
}
.example23-img {
    margin-left: -4em;
    margin-top: -8em;
}
.example23-span {
    top: -3em;
    left: -4em;
}
.example45-img {
    margin-right: -4em;
    margin-top: -8em;
}
.example45-span {
    top: 1.5em;
    left: 0;
}
@media screen and (max-width: 980px) {
    .example-head_wrap {
        padding: 3.5em 1em;
    }
    .example01-img,
    .example-img {
        display: block;
    }
    .example01-img img,
    .example-img img {
        aspect-ratio: 16/9;
        object-fit: cover;
        width: 100%;
    }
    .example-forpc {
        display: none;
    }
}
@media screen and (max-width: 680px) {
    .example-head {
        margin-bottom: 2em !important;
    }
    .example-inner {
        margin-bottom: 1em !important;
    }
    .example-head_inner {
        display: block;
    }
    .example145-inner,
    .example23_inner {
        padding: 5em 2em 2em;
    }
    .example01-txt,
    .example-txt {
        width: 100%;
        margin-bottom: 1.5em;
    }
    .example01-img,
    .example-img {
        width: 100%;
        display: flex;
    }
    .example01-img img,
    .example-img img {
        aspect-ratio: 1;
        object-fit: cover;
        width: 50%;
    }
    .example01-img,
    .example-img {
        margin-top: inherit;
        margin-right: inherit;
        margin-left: inherit;
    }
    .example23-img {
        order: 2;
    }
    .example-wrap {
        width: 100%;
    }
    .example23-span {
        top: -3.5em;
        left: -2em;
    }
}

/*ーーーーーーーー　ファーストCV　ーーーーーーーー*/
.cv-head {
    font-size: clamp(18px, 3.2rem, 20px);
}
.cv-list {
    list-style: none;
    padding-left: 0;
}
.cv-list_li {
    flex-basis: 48%;
}
.cv-list_a {
    display: flex;
    padding: 2em 0;
    border: 1px solid var(--gold);
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 9px 9px 0 #e9e6d9;
    transition-duration: 0.3s;
    transition-property: background-color, color;
    white-space: nowrap;
}
.cv-list_a small {
    font-weight: 500;
    font-size: clamp(15px, 2.5rem, 17px);
    line-height: 1;
}
.cv-list_a b {
    font-weight: 600;
    font-size: clamp(24px, 6.5rem, 45px);
    color: var(--gold);
    letter-spacing: 0.04em;
}
.cv-list_a i {
    font-size: clamp(25px, 6.5rem, 48px);
    color: var(--gold);
}
.cv-br {
    display: none;
}
@media screen and (max-width: 580px) {
    .cv-br {
        display: block;
    }
}
@media screen and (max-width: 480px) {
    .cv-list_li {
        flex-basis: 100%;
    }
    .cv-list {
        row-gap: 2em;
    }
}

/*ーーーーーーーー　会社概要　ーーーーーーーー*/
#company h2 span {
    color: var(--gold);
}
.company-table {
    width: 100%;
}
.company-table th,
.company-table td {
    border: 0;
    vertical-align: middle;
    padding: 1.5em;
    letter-spacing: 1px;
}
.company-table th {
    border-bottom: 1px solid #b19c5c;
    font-weight: 700;
}
.company-table td {
    border-bottom: 1px solid #b9b9b9;
}
#company iframe {
    width: 100%;
    height: 455px;
    margin-bottom: 1em;
    filter: grayscale(1);
}
.company-ul {
    padding-left: 0;
}
.company-list {
    list-style: none;
}

/* 関連会社/キョーリン */
.kyorin-img {
    width: 10em;
}
.kyorin-h3 {
    flex-basis: 30%;
    font-size: 140%;
    font-weight: 600;
}
.kyorin-wrap_a {
    flex-basis: 13%;
    margin-right: 1em;
}
.kyorin-link i {
    color: #222;
    font-size: 80%;
    padding-left: 0.5em;
}
.kyorin-wrap_desc {
    width: 70%;
    padding-top: 1em;
    margin: 0 0 0 auto;
    gap: 0.5em;
}
.kyorin-info {
    column-gap: 2em; 
}
@media screen and (max-width: 480px) {
    .company-table th,
    .company-table td {
        padding: 1em;
        letter-spacing: inherit;
    }
}

/*ーーーーーーーー　バナーエリア　ーーーーーーーー*/
.bunner-wrap_h3 {
    font-size: 140%;
    font-weight: 600;
    padding: 0.5em;
    background-color: var(--black);
    color: #fff;
    margin-bottom: 1.5em;
}
.bunner-wrap_h3::after {
    content: "";
    background-color: var(--black);
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: -0.5em;
    left: 0;
}
.bunner-inner_img {
    flex-basis: 32.3%;
    max-width: 32.3%;
}
.bunner-inner_img:hover {
    opacity: 0.7;
}
@media screen and (max-width: 680px) {
    .bunner-inner_img {
        flex-basis: 45%;
        max-width: 45%;
    }
    .bunner-inner {
        gap: 2em; 
    }
}
@media screen and (max-width: 480px) {
    .bunner-inner_img {
        flex-basis: 100%;
        max-width: 100%;
    }
}
/*ーーーーーーーー　お問い合わせ　ーーーーーーーー*/
.contact { 
    background: url("../images/contact_bg.jpg") no-repeat center;
    background-size: cover;
    padding: 5em 0;
}
.contact::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 30%);
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
}
.contact-wrap {
    max-width: 980px;
    z-index: 1;
}
#contact h2 {
    color: #fff;
}
#contact h2 span {
    color: #dac071;
}
.contact-wrap 
.contact-inner {
    background: #fff;
    border: 1px solid var(--black);
    padding: 5em;
    max-width: 1680px;
}
.form-label {
    flex-basis: 11em;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    margin-right: 1em;
}
.form-label span {
    font-size: 10px;
    padding: 0.2em 1em;
    background: var(--gold);
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    margin: 0 1em;
}
.form-field {
    font-size: 16px;
    flex: 1;
}
.form-field input,
.form-field textarea {
    width: 100%;
    background: #fff;
    border: none;
    padding: 12px;
    font-size: 16px !important;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.3) inset;
}
.form-field textarea {
    height: 200px;
}
.button-trig {
    border: inherit;
    background-color: var(--gold);
    padding: 1em 5em;
    color: #fff;
    cursor: pointer;
	transition: 0.3s all;
}
.button-trig:hover {
    background-color: #000;
}
.confirm table{
	border-collapse: collapse;
	width: 100%;
}
.confirm th,
.confirm td{
	text-align: left;
	padding: 1em 0;
}
.confirm th{
	color: var(--gold);
	font-weight: 700;
}
.confirm tr{
	border-bottom: 1px solid var(--gold);
}
@media screen and (max-width: 980px) {
	.contact-message p br{
		display: none;
	}
}
@media screen and (max-width: 680px) {
    .form-label {
        flex-basis: 100%;
        margin-bottom: 0.5em;
    }
	.confirm table,
	.confirm tbody,
	.confirm tr,
	.confirm th,
	.confirm td{
		display: block;
		margin: 0;
		padding: 0;
		width: 100%;
	}
	.confirm tr{
		padding: 1em 0;
	}
	.confirm .button-trig{
		padding: 1em 0.5em;
		width: 48%;
	}
}
@media screen and (max-width: 580px) {
    .contact-wrap .contact-inner {
        padding: 3em;
    }
}
@media screen and (max-width: 480px) {
    .contact-wrap .contact-inner {
        padding: 2em;
    }
}


/*プライバシーポリシー*/
.mv-wrap_privacy {
    background: url("../images/example_bg.jpg") no-repeat center;
    background-size: cover;
    height: 40vh;
    max-height: 300px;
}
.mv-txt_privacy {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
    width: 100%;
    text-align: center;
}
.mv-txt_privacy p {
    font-size: clamp(18px, 7rem, 54px);
    font-weight: bold;
    color: #fff;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1.5px;
}
.privacy-mv_span {
    color: var(--gold);
    font-size: clamp(20px, 4.5rem, 24px);
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
}
.privacy-wrap,
.privacy-cv_wrap{
    max-width: 960px;
}
.privacy-h3 {
    background: #eee;
    color: var(--black);
    font-size: 1.3em;
    font-weight: 700;
    padding: 0.5em 1em;
}
.privacy-txtbox {
    padding: 0.5em 1em;
}
.privacy-a:hover {
    color: var(--gold);
}
.privacy-dl {
    max-width: 640px;
}
.privacy-dd_list {
    border-right: 1px solid #e9e6d9;
    border-bottom: 1px solid #e9e6d9;
    border-left: 1px solid #e9e6d9;
    height: 100%;
}
.privacy-dd_list dt {
    width: 9em;
    justify-content: center;
    background-color: #f8f5ee;
    text-align: center;
}
.privacy-dd_list dd {
    width: calc(100% - 9em);
    border-left: 1px solid #e9e6d9;
}
.privacy-dd_list > * {
    display: flex;
    align-items: center;
    border-top: 1px solid #e9e6d9;
    padding: 0.5em 1em;
}
@media screen and (max-width: 480px) {
    .privacy-txtbox.forpc {
        display: none
    }
}







