@charset "utf-8";
/* CSS Document */

/* -------------------------------- root -------------------------------- */
:root{
    --header_height: 135px;
    --body_font_family: "Noto Sans JP", sans-serif;
    --body_font_size: 25px;
    --main_color: #c6a92c;
}

@media all and (max-width:1540px){
    :root{
        --header_height: 120px;
        --body_font_size: clamp(1.125rem, -0.258rem + 1.89vw, 1.563rem);
    }
}

@media (max-width:1170px) and ((max-aspect-ratio: 9/16) or (max-aspect-ratio: 3/4)){
    :root{
        --header_height: 204px;
        --body_font_size: clamp(0.875rem, 0.4rem + 2.24vw, 2.063rem);
    }
}

@media all and (max-width:800px){
    :root{
        --header_height: 80px;
    }
}

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

html {
	scroll-behavior: smooth;
    scroll-padding-top: var(--header_height);
    font-family: var(--body_font_family);
    font-size: var(--body_font_size);
}

img {
    width: 100%;
}

article p{
    line-height: 1.75;
}

.sp{
    display: none;
}

@media all and (max-width:1170px) and ((max-aspect-ratio: 9/16) or (max-aspect-ratio: 3/4)){
    .sp{
        display: block;
    }

    .pc{
        display: none;
    }
    
}

/* -------------------------------- header -------------------------------- */

header{
    height: var(--header_height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    border-bottom: solid 1px #999999;
    z-index: 999;
}

@media (max-width:800px){
    header{
        min-height: var(--header_height);
    }
}

/* ---------------- pc_header ---------------- */

header .pc{
    height: 100%;
}

header .pc_header_inner{
    width: 95%;
    margin: 0 auto;
    display: flex;
    height: 100%;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}


/* ------ pc_header logo ------ */

header .logo{
    width: 30%;
    max-width: 530px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: auto;
    margin-bottom: auto;
}

header .logo p{
    font-size: 0.72rem;
    margin-bottom: 0.5em;
}

header .logo a{
    width: 95%;
    max-width: 466px;
}

header .logo span{
    font-size: 0.92rem;
    display: block;
    width: 100%;
    margin-top: 0.1em;
    color: var(--main_color);
}

/* ------ pc_header nav ------ */

header .pc_header_inner nav{
    width: 30%;
    font-size: 0.64rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
}

header ul{
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

header ul li{
    position: relative;
    padding-left: 1em;
    display: flex;
    align-items: center;
    margin-left: 1em;
    margin-bottom: 0.5em;
}

header ul li::after,
header ul li::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
	width: 0.4em;
	height: 0.4em;
	border-top: 2px solid var(--main_color);
	border-right: 2px solid var(--main_color);
	transform: rotate(45deg) translateY(-50%);
}

header ul li a{
    color: #000;
}

/* ------ pc_header_contact ------ */

header .pc_header_inner .pc_header_contact{
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
    flex-wrap: wrap;
    max-width: 770px;
    width: 50%;
}

.pc_header_contact .pc_header_contact_p{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.pc_header_contact .pc_header_contact_p p{
    font-size: 0.72rem;
    padding-bottom: 0.5em;
    color: var(--main_color);
}

.pc_header_contact .pc_header_contact_p::before {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: var(--main_color);
    margin-right: 0.5em;
}

.pc_header_contact .pc_header_contact_p::after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: var(--main_color);
    margin-left: 0.5em;
}

/* -- header_content_inner -- */

header .pc_header_inner .pc_header_contact .header_content_inner{
    display: flex;
}

.header_content_inner .header_tel{
    margin-right: 0.5em;
}

.header_content_inner .header_tel,
.header_content_inner .header_mail{
    background-color: var(--main_color);
    color: #fff;
    padding: 0.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.tel_icon{
   content: url(../img/tel_icon.svg);
   width: 17%;
   max-width: 67px;
   margin-right: 0.5em;
}

.mail_icon{
    content: url(../img/mail_icon.svg);
    width: 17%;
    max-width: 67px;
    margin-right: 0.5em;
 }

 .header_content_inner .header_tel p{
    font-size: 0.72rem;
 }

.header_content_inner .header_tel .tel_number{
    font-size: 1.48rem;
    font-weight: bold;
}

.header_content_inner .header_mail{
    font-weight: bold;
}

@media all and (max-width:1740px){
    .header_content_inner .header_tel .tel_number{
        font-size: 1.2rem;
    }
}

/* ---------------- sp_header ---------------- */

@media (max-width:1170px) and ((max-aspect-ratio: 9/16) or (max-aspect-ratio: 3/4)){

    header .sp{
        width: 95%;
        height: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header .logo{
        width: 70%;
        max-width: 800px;

    }

    header .logo p{
        font-size: 0.72rem;
        margin-bottom: 0.5em;
    }

    header .logo a{
        width: 95%;
        max-width: 466px;
    }

    header .logo span{
        font-size: 0.92rem;
        display: block;
        width: 100%;
        margin-top: 0.1em;
        color: var(--main_color);
    }

    header .g_menu{
        position: fixed;
        top: 70px;
        right: 50px;
        z-index: 10000;
        width: 10%;
        max-width: 90px;
        height: 60px;
    }

    header .g_menu .openbtn {
        width: 100%;
        height: 100%;
        position: relative;
    }

    header .g_menu .openbtn span{
        content: "";
        width: 100%;
        height: 6px;
        background-color: #000;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.5s;
    }

    header .g_menu .openbtn span:nth-child(2){
        top: 50%;
        transform: translateY(-50%);
    }

    header .g_menu .openbtn span:last-child{
        top: 100%;
        transform: translateY(-50%);
    }

    .sp_nav{
        background-color: rgba(0, 0, 0, 0);
        transition: all 0.5s;
    }

    .sp_nav nav{
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #fff;
        color: #000;
        z-index: 9999;
        transition: all 0.5s;
    }

    .sp_nav.is-active{
        position: fixed;
        background-color: rgba(0, 0, 0, 0.5);
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: block;
    }

    .sp_nav.is-active nav{
        right: 0;
    }

    header .g_menu .openbtn.is-active span{
        top: 30%;
        transform: rotate(30deg);
    }

    header .g_menu .openbtn.is-active span:nth-child(2){
        background-color: rgba(0, 0, 0, 0);
    }

    header .g_menu .openbtn.is-active span:last-child{
        top: 30%;
        transform: rotate(-30deg);
    }

    .sp_nav nav ul{
        width: 90%;
        margin: var(--header_height) auto 0;
        display: block;
    }
    
    header ul li{
        display: block;
        margin-bottom: 2em;
        font-size: 1.3rem;
    }
    
    header ul li::after,
    header ul li::before{
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 0.4em;
        height: 0.4em;
        border-top: 3px solid var(--main_color);
        border-right: 3px solid var(--main_color);
        transform: rotate(45deg) translateY(-50%);
    }
}

@media all and (max-width:800px){
    header {
        padding: 0.5em 0;
    }

    header .g_menu{
        top: 30px;
        right: 1rem;
        width: 40px;
        height: 30px;
    }

    header .g_menu .openbtn span{
        height: 4px;
    }
}



/* -------------------------------- sp_contact-btn -------------------------------- */
.sp_contact-btn {
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 10000;
}

.sp_contact-btn > p{
    background-color: #454545;
    color: #fff;
    text-align: center;
    padding: 1em 0;
}

.sp_contact-btn .header_content_inner{
    display: flex;
    align-items: stretch;
    background-color: #fff;
    padding: 0.5rem;
}

.header_content_inner .header_tel{
    margin-right: 0.5em;
}

.sp_contact-btn  .header_content_inner .header_tel,
.sp_contact-btn  .header_content_inner .header_mail{
    background-color: var(--main_color);
    color: #fff;
    padding: 1em 0.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

 .sp_contact-btn  .header_content_inner .header_tel p{
    font-size: 0.72rem;
 }

.sp_contact-btn  .header_content_inner .header_mail{
    font-weight: bold;
}

/* -------------------------------- top_btn -------------------------------- */

.top_btn {
    height: 50px;
    width: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 1em;
    right: 1em;
}

.top_btn-arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateY(20%) rotate(-45deg);
}

@media (max-width:1170px) and ((max-aspect-ratio: 9/16) or (max-aspect-ratio: 3/4)){

    .top_btn.pc{
        display: none;
    }

    .top_btn {
        margin-left: auto;
        margin-right: 1rem;
        margin-bottom: 1em;
        margin-top: calc(-50px - 1em);
        position: relative;
    }

}

/* -------------------------------- mv -------------------------------- */

.mv{
    background: url(../img/mv_bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: var(--header_height);
    min-height: calc(120vh - var(--header_height));
}

.mv .mv_inner{
    width: 90%;
    color: #fff;
    margin: 0 auto;
    min-height: calc(120vh - var(--header_height));
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
    min-height: calc(120vh - var(--header_height));
}

.catch{
    font-size: 1.32rem;
    padding-top: 1em;
}

.catch span{
    background-color: #c1272d;
    color: #facd4a;
    font-size: 1.6rem;
    padding: 0.1rem;
    display: inline-block;
    margin: 0 0.5rem;
}

.point{
    width: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    color: #000;
    font-weight: bold;
    padding: 0.5rem;
    margin-top: 1em;
}

.point_title{
    font-size: 1.4rem;
}

.point_title + p{
    font-size: 0.9rem;
}

.mv .mv_inner .bottom{
    margin-top: auto;
    margin-bottom: 1em;
}

.mv .mv_inner .bottom p:first-child{
    width: 45%;
    max-width: 660px;
    font-size: 0.9rem;
}

.mv .mv_inner .bottom p:nth-child(2){
    font-size: 1.6rem;
    color: #ffff00;
}

@media all and (max-width:1635px){

 

}

@media (max-width:1170px) and ((max-aspect-ratio: 9/16) or (max-aspect-ratio: 3/4)){
    .mv{
        background: url(../img/mv_bg_tb.jpg) no-repeat;
        margin-top: var(--header_height);
        height: 150vh;
        background-position: center;
        background-size: cover;

    }

    .catch{
        font-size: 1.2rem;
        text-align: center;
    }

    .catch span{
        font-size: 1.5rem;
        padding: 0.1rem;
        margin: 0.5rem;
    }

    .point_title{
        font-size: 1rem;
    }

    .point{
        width: 100%;
        margin-top: 1.2rem;
    }

    .point_title + p{
        font-size: 0.8rem;
    }

    .mv .mv_inner .bottom p:first-child{
        width: 100%;
        max-width: 1170px;
        font-size: 0.8rem;
    }
    
    .mv .mv_inner .bottom p:nth-child(2){
        font-size: 1.5rem;
    }

}

@media all and (max-width:800px){
    .mv{
        background: url(../img/mv_bg_sp_1.jpg) no-repeat;
        margin-top: var(--header_height);
        height: 150vh;
        background-position: center;
        background-size: cover;

    }

    .catch{
        font-size: 0.9rem;
        padding-top: 2rem;
    }

}


/* -------------------------------- 共有 -------------------------------- */

#pallet-lineup{
    margin-top: clamp(6.25rem, 5rem + 6.25vw, 12.5rem);
}

.section_title{
    width: 100%;
    background-color: var(--main_color);
    color: #fff;
    text-align: center;
    padding: 1em 0 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_title h2{
    font-size: 2.4rem;
    letter-spacing: 0.5rem;
    margin: 0 0.5em;
}

.section_title h2 span{
    font-size: 1.6rem;
    margin-bottom: 0.5em;
    display: inline-block;
}

#pallet-lineup .section_title::before,
#pallet-lineup .section_title::after{
    content: url(../img/pallet_icon.svg);
    width: 100%;
    max-width: 125px;
}

.section_inner{
    width: 90%;
    max-width: 1600px;
    color: var(--main_color);
    margin: 6rem auto 10rem;
}

.section_inner h3{
    border-bottom: solid 1px var(--main_color);
    font-size: 1.6rem;
    margin: 2.5em 0 2em;
    padding-bottom: 0.5em;
    font-weight: 500;
}

@media (max-width:1170px) and ((max-aspect-ratio: 9/16) or (max-aspect-ratio: 3/4)){

    .section_title h2{
        font-size: 1.3rem;
    }

    .section_title h2 span{
        font-size: 0.9rem;
    }
    
    #pallet-lineup .section_title::before,
    #pallet-lineup .section_title::after{
        display: none;
    }

    .section_inner h3{
        font-size: 1.2rem;
    }
}


/* -------------------------------- pallet-lineup -------------------------------- */

#pallet-lineup .section_inner h3 i{
    content: url(../img/title_icon.svg);
    max-width: 50px;
    margin-right: 0.5rem;
    margin-bottom: -0.5rem;
}


.pallet-lineup_item{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 7rem;
}

.pallet-lineup_img{
    width: 49%;

}

.pallet-lineup_text{
    width: 49%;
}

.pallet-lineup_img .correspondence-table{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 1em;
}

.pallet-lineup_img .correspondence-table p{
    background-color: var(--main_color);
    color: #fff;
    width: 32%;
    margin: 0.3em 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    padding: 1em 0;
    box-sizing: content-box;
}

.pallet-lineup_img .correspondence-table p.incompatible{
    background-color: #e0e0e0;
    color: #8d8d8d;
}

.pallet-lineup_text h4{
    font-size: 1.6rem;
    padding-bottom: 1em;
    line-height: 1.2;
    font-weight: 500;
}

.berder_bottom{
    border-bottom: solid 1px var(--main_color);
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
}

.pallet-lineup_text table{
    border-top: solid 1px var(--main_color);
    border-bottom: solid 1px var(--main_color);
    width: 100%;
    text-align: left;
}

.pallet-lineup_text table tr:first-child th,
.pallet-lineup_text table tr:first-child td{
    padding-top: 1em;
}

.pallet-lineup_text table tr:last-child th,
.pallet-lineup_text table tr:last-child td{
    padding-bottom: 1em;
}

.pallet-lineup_text table tr th{
    width: 20%;
    padding: 0.5em 0;
}

.pallet-lineup_text table tr td span{
    color: #c1272d;
}

.pallet-lineup_text table tr td{
    padding: 0.5em 0;
}

.pallet-lineup_text .example{
    font-size: 1.6rem;
    margin: 1.5em 0 0.5em;
    font-weight: 500;
}

.pallet-lineup_text figure{
    width: 40%;
    float: left;
    margin-right: 1rem;
}

.pallet-lineup_text::after{
    content: "";
    display: block;
    clear: both;
}

@media (max-width:1170px) and ((max-aspect-ratio: 9/16) or (max-aspect-ratio: 3/4)){

    #pallet-lineup .section_title h2{
        font-size: 1.7rem;
        margin: 0;
    }

    #pallet-lineup .section_title h2 span{
        font-size: 1.2rem;
    }


    .pallet-lineup_img{
        width: 100%;
    
    }
    
    .pallet-lineup_text{
        margin-top: 2em;
        width: 100%;
    }

    .pallet-lineup_img .correspondence-table p{
        font-size: 0.7rem;
    }
}

/* -------------------------------- reused-pallets -------------------------------- */

#reused-pallets .section_inner{
    margin-top: 1em;
}

#reused-pallets .section_title{
    background-color: #b82856;
}

#reused-pallets p{
    text-align: center;
    color: #b82856;
}

.reused-pallets_flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}


@media all and (max-width:1170px){

}

/* -------------------------------- service-flow -------------------------------- */

.service-flow_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 6rem auto 10rem;
    width: 90%;
  }
  
  .service-flow_inner {
    padding-left: 0;
  }
  
  .service-flow_inner > li {
    list-style-type: none;
    position: relative;
    padding-left: 8rem;
    display: flex;
    align-items: center;
  }
  
  .service-flow_inner > li:not(:last-child) {
    padding-bottom: 8rem;
  }
  
  .service-flow_inner > li .flow_icon {
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
    border-radius: 100vh;
    display: inline-block;
    background: var(--main_color);
    color: #fff;
    position: absolute;
    border: solid 5px #fff;
    font-size: 4rem;
    top: -0.5em;
    left: -0.7em;
  }
  
  .service-flow_inner > li:not(:last-child)::before {
    content: '';
    background: var(--main_color);
    width: 16px;
    height: 100%;
    position: absolute;
    top: calc(50% - -30px);
    left: 19px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  
  .service-flow_inner > li dl dt {
    font-size: 1.76rem;
    font-weight: 500;
  }
  
  .service-flow_inner > li dl dd {
    margin-left: 0;
    font-size: 1.08rem;
    color: #000;
  }

  @media (max-width:1170px) and ((max-aspect-ratio: 9/16) or (max-aspect-ratio: 3/4)){

    .service-flow_inner > li {
        padding-left: 5rem;
      }

    .service-flow_inner > li .flow_icon {
        font-size: 3rem;
    }

    .service-flow_inner > li dl dt {
        font-size: 1.3rem;
        font-weight: 500;
      }
      
      .service-flow_inner > li dl dd {
        font-size: 0.8rem;
      }
      
      .service-flow_inner > li:not(:last-child) {
        padding-bottom: 6rem;
      }

  }

  /* -------------------------------- contact -------------------------------- */

.caution{
    color: #7b192a;
}

.required{
    font-size: 0.8rem;
    color: #7b192a;
    vertical-align: top;
}

.nb{
    font-size: 0.8rem;
}

#contact .section_inner h3,
#contact_check .section_inner h3,
#thanks .section_inner h3{
    margin: 2.5em 0 0.5em;
}

#contact .form_wrap,
#contact_check .form_wrap{
    margin: 0 auto 10rem;
}

#contact .form_wrap > p:not(.caution){
    text-align: center;
    margin: 1em 0;
}

#contact table,
#contact_check table{
    width: 100%;
}

#contact table .caution_tr th,
#contact_check .caution_tr th{
    padding-bottom: 0;
}

#contact table .caution_tr td,
#contact_check .caution_tr td{
    padding-bottom: 0;
}


#contact table tr th,
#contact_check tr th{
    width: 20%;
    text-align: left;
    padding-bottom: 2em;
}

#contact table tr td,
#contact_check table tr td{
    width: 80%;
    padding-bottom: 2em;
}

#contact .contact_quantity table,
#contact_check .contact_quantity table{
    margin-top: 3em;
}

#contact .contact_quantity table tr th,
#contact_check .contact_quantity table tr th{
    padding-bottom: 3em;
}

#contact .contact_quantity table tr td,
#contact_check .contact_quantity table tr td{
    padding-bottom: 3em;
}

input[type='text'],
input[type='email']{
    border: 1px solid #999999;
    padding: 12px;
    width: 90%;
    max-width: 960px;
}

input[type='text'].input_mini{
    width: 248px;
    margin-bottom: 1em;
}

.contact_quantity input[type='text'].input_mini{
    width: 4em;
}

input[type='text'].input_middle{
    max-width: 801px;
    margin-top: 1em;
}


#contact .type span ,
#contact_check .type span{
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

#contact .type + p,
#contact_check .type + p{
    font-size: 0.8rem;
}

.contact_textarea textarea{
    width: 100%;
    max-width: 1314px;
    height: 10rem;
    font-size: 100%;
}

.privacy-policy_wrap{
    width:80%;
    margin: 0 auto;
    height:7em;
    overflow-y: scroll;
    border: solid 1px #757575;
    padding: 1em;
    color: #757575;
}

.consent,
.submit{
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 2rem 0;
}

.consent label{
    width: 20%;
    max-width: 400px;
    box-sizing: border-box;
    border: solid 1px var(--main_color);
    padding: 1.5em 0;
    text-align: center;
    cursor: pointer;
}

.submit input[type='submit'] {
    font-size: 1.6rem;
    background-color: var(--main_color);
    color: #fff;
    box-sizing: border-box;
    text-align: center;
    padding: 1.5em;
    border: none;
    cursor: pointer;
}

.submit input[type='submit'].check {
    background-color: #d10e47;
}

.submit input[type='submit'].back {
    background-color: #999999;
}

.submit span{
    font-size: 1.6rem;
    background-color: var(--main_color);
    color: #fff;
    box-sizing: border-box;
    text-align: center;
    padding: 1.5em;
    border: none;
    cursor: pointer;
}

.w-800{
    display: inline-block;
}

.inline{
    display: inline-block;
}

@media (max-width:1170px) and ((max-aspect-ratio: 9/16) or (max-aspect-ratio: 3/4)){
    #contact .form_wrap,
    #contact_check .form_wrap{
        font-size: 0.75rem;
    }

    #contact table tr th,
    #contact_check tr th{
        width: 35%;
        padding-right: 1rem;
    }

    #contact table tr td,
    #contact_check table tr td{
        width: 60%;
        padding-bottom: 2em;
    }

    .required{
        font-size: 0.6rem;
    }

    .nb{
        font-size: 0.6rem;
    }

    input[type='text'].input_mini.naisen{
        width: 10%;
    }

    input[type='text'].input_mini{
        width: 30%;
    }

    input[type='text'].input_middle{
        width: 50%;
    }

    .contact_quantity_item .contact_quantity_item_text{
        width: 70%;
    }

    .contact_quantity_item .contact_quantity_item_input{
        width: 20%;
    }

    .consent label{
        width: 40%;
    }
    
    .submit input[type='submit']  {
        font-size: 1.2rem;
    }

}

  /* -------------------------------- company -------------------------------- */

  #company table{
    width: 80%;
    max-width: 1070px;
    text-align: left;
    margin: 6rem auto 10rem;
  }

  #company table tr th{
    width: 20%;
    padding-bottom: 1rem;
  }

  #company table tr td{
    width: 80%;
    padding-bottom: 1rem;
  }

  @media (max-width:1170px) and ((max-aspect-ratio: 9/16) or (max-aspect-ratio: 3/4)){
    #company table{
        font-size: 0.75rem;
        width: 90%;
      }

      #company table tr th{
        width: 25%;
        padding-bottom: 1rem;
      }
    
      #company table tr td{
        width: 75%;
        padding-bottom: 1rem;
      }
  }

   /* -------------------------------- service -------------------------------- */

   .service_item{
    max-width: 1130px;
    text-align: center;
    margin: 3rem auto;
   }

   .service_item p{
    margin: 0.5em 0;
   }

   @media all and (max-width:1170px) and ((max-aspect-ratio: 9/16) or (max-aspect-ratio: 3/4)){
        .service_item p{
            font-size: 0.75rem;
        }
   }


  /* -------------------------------- footer -------------------------------- */

  footer{
    background-color: var(--main_color);
    width: 100%;
    padding: 2em 0 1em;
  }

  footer .footer_inner{
    width: 90%;
    max-width: 1076px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
  }

  footer .footer_inner p{
    margin: 1em 0;
  }

  footer .footer_inner img{
    filter: brightness(0) saturate(100%) invert(97%) sepia(65%) saturate(92%) hue-rotate(173deg) brightness(111%) contrast(100%);
    max-width: 470px;
  }

  footer .footer_inner ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1em 0;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
    margin: 1em 0;
  }

  footer .footer_inner ul li{
    margin-right: 1rem;
    position: relative;
    padding-left: 1rem;
    font-size: 0.64rem;
  }

  footer .footer_inner ul li a{
    color: #fff;
  }

  footer .footer_inner ul li::after,
  footer .footer_inner ul li::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
	width: 0.4em;
	height: 0.4em;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg) translateY(-50%);
}

.copyright{
    font-size: 0.5rem;
}

@media (max-width:1170px) and ((max-aspect-ratio: 9/16) or (max-aspect-ratio: 3/4)){
    footer .footer_inner ul{
        justify-content: left;
    }

    footer .footer_inner ul li{
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
}


  /* -------------------------------- contact_check -------------------------------- */


#contact_check,
#thanks{
    margin-top: calc(var(--header_height) + 2rem);
}

#thanks{
    min-height: 70vh;
}

#contact_check p,
#thanks p{
    color: #000;
}

#thanks p{
    text-align: center;
}

#contact_check .contact_customer table tr td p span{
    color: var(--main_color);
    width: 6em;
    display: inline-block;
}
  


