/* Josh's Custom CSS Reset --- more customized */
*,*::before,*::after{box-sizing:border-box}*{margin:0;padding:0}html,body{height:100%}body{line-height:1.0;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:inline-block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word;font-size:100%}#root,#__next{isolation:isolate}

/* Basic settings */
br {letter-spacing:0;}
ul, li {list-style:none;}
img, a img {border:0; text-decoration:none;}
mark {background:#ff0; color:#000;}
b, strong {font-weight:bold;}
table {border-collapse:collapse; border-spacing:0;}

/* Base Set */
html {
-ms-text-size-adjust:100%;
-webkit-text-size-adjust:100%;
font-size: 62.5%;
}
body {
color:#222;
font-family: -apple-system, BlinkMacSystemFont, Arial, 'Zen Maru Gothic', sans-serif;
font-size: 1.6rem;
line-height:1.0;
}
a {
background-color:transparent;
outline:0;
text-decoration:none;
transition: all .5s;
}
a:link    {color:#111;}
a:visited {color:#111;}
a:hover   {color:#ccc;}
a:active  {color:#99ccff;}

/* -------------------------------------------------------
Layout
---------------------------------------------------------- */
h1, h2, h3, h4 {
  font-weight: normal;
}
.list_disc li {
  list-style: disc;
}
ol.decimal {
  padding-left: 2em;
}
ol.decimal li {
  list-style: decimal;
}
.img_box img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/* button */
a.btn_c {
  position: relative;
  display: inline-block;
  padding: 1em 3em;
  background-color: #111;
  border: 1px solid #111;
  color: #fff;
  font-size: 90%;
  letter-spacing: .1em;
  vertical-align: middle;
}
a.btn_c::before,
a.btn_c::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.arrow::before {
  right: 16px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.page_title{
  margin-top: 4rem;
  margin-bottom: 4rem;
  text-align: center;
}
.page_title h1{
  display: inline-block;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #70a401;
  font-size: 3rem;
  font-weight: 700;
}
.page_title p{
  color: #70a401;
}

.aboutus_table{
  margin-top: 4rem;
  padding-right: 1rem;
  padding-left: 1rem;
}
.aboutus_table table{
  width: 100%;
}
.aboutus_table th,
.aboutus_table td{
  padding: 1em 1em;
  line-height: 1.6;
  vertical-align: top;
}
.aboutus_table th{
  width: 6em;
}

.accessmap{
  margin-top: 4rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
.accessmap iframe{
  width: 100%;
  height: 400px;
}

/* -------------------------------------------------------
for Mobile Menu
---------------------------------------------------------- */
@media screen and (max-width:810px){
  /* nav ------------------------- */
  /* navbar_toggle */
  .navbar_toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    padding: 16px 0 0 16px;
    background: #fff;
    z-index: 9999;
  }
  .navbar_toggle_icon {
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background: #000;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .navbar_toggle_icon:nth-child(1) {
    top: 0;
  }
  .navbar_toggle_icon:nth-child(2) {
    margin: 8px 0;
  }
  .navbar_toggle_icon:nth-child(3) {
    top: 0;
  }
  .navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
  }
  .navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
    top: -10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  /* nav */
  .nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: ease .5s;
    transition: ease .5s;
    z-index: 9998;
  }
  .nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .nav ul li a {
    display: block;
    width: 100%;
    padding: 1em 1em;
    color: #111;
    text-decoration: none;
  }

  /* OPEN時の動き */
  .nav.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.fixed {
    position: fixed;
    width: 100%;
    height: 100vh;
  }

}/* Mobile Menu */

/* -------------------------------------------------------
for SmartPhone only
---------------------------------------------------------- */
@media screen and (max-width:599px){
  .pc, .tab {display: none;}
  .body_mv_bg{display: none;}
  .logo_tab{display: none;}
  .side_nav, .footer_area{display: none;}

  .left_column{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .header{
    text-align: center;
  }
  .header .logo{
    width: 16rem;
    margin: 0 auto;
  }

  /* main */
  .main_column{
    padding-bottom: 12rem;
  }
  .main_title{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .main_title h1{
    color: #111;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
  }
  .main_title h1 span{
    display: block;
    font-size: 2rem;
  }
  .deli_area{
    margin-bottom: 1rem;
    color: #70a401;
    font-weight: 700;
    text-align: center;
  }

  .lead_area{
    line-height: 1.8;
    text-align: center;
  }
  .lead_area p{
    color: #70a401;
    font-size: 2rem;
    font-weight: 700;
  }
  .lead_img img{
    max-width: 90%;
    height: auto;
  }
  .desc{
    margin-top: 4rem;
    padding-right: 2rem;
    padding-left: 2rem;
    line-height: 1.8;
  }

  .value_standards{
    margin-top: 4rem;
    background: url(images/img03.jpg) no-repeat center;
    background-size: cover;
  }
  .value_standards .filter_w{
    width: 100%;
    height: 100%;
    padding: 6rem 2rem;
    background-color: rgba(255,255,255,.8);
  }
  .value_standards h2{
    color: #ea5549;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
  }
  .value_standards ol{
    margin-top: 3rem;
  }
  .value_standards ol li{
    font-size: 110%;
    font-weight: 700;
    line-height: 1.4;
  }
  .value_standards ol li + li{
    margin-top: 1em;
  }

  .features_area{
    margin-top: 8rem;
  }
  .features_area h2{
    color: #70a401;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
  }
  .features_mv_area{
    margin-top: 4rem;
    padding: 0 2rem;
  }
  .features_mv{
    width: 100%;
    height: auto;
  }
  .features_box{
    margin-top: 4rem;
    padding-right: 2rem;
    padding-left: 2rem;
    background-color: #fff;
    border-radius: 1rem;
  }
  .features_img{
    margin-top: 1rem;
  }
  .features_txt h3{
    font-size: 120%;
    font-weight: 700;
    line-height: 1.4;
  }
  .features_txt p{
    margin-top: 1em;
    line-height: 1.6;
  }

  .bento_area{
    margin-top: 8rem;
  }
  .bento_area .inner{
    margin-top: 3rem;
    margin-right: 2rem;
    margin-left: 2rem;
    background-color: #fff;
    border-radius: 1rem;
  }
  .bento_area h2{
    color: #ed6d35;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
  }
  .lineup li + li{
    margin-top: 4rem;
  }
  .lineup h3{
    padding: 1.5rem;
    background-color: #ed6d35;
    border-radius: 4px 4px 0 0;
    color: #fff;
    font-size: 140%;
    font-weight: bold;
    letter-spacing: .1rem;
    text-align: center;
  }
  .bento_catch{
    margin-top: 1.6rem;
    color: #db6e26;
    font-size: 120%;
    font-weight: bold;
  }
  .lineup p{
    margin-top: 1em;
    line-height: 1.8;
  }

  .flow_area{
    margin-top: 6rem;
    padding: 4rem 2rem;
    background-color: #f2f2e1;
  }
  .flow_area h2{
    margin-bottom: 3rem;
    color: #70a401;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
  }
  .flow_flx{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: .8rem;
  }
  .flow_flx .flow_num{
    width: 40px;
  }
  .flow_desc{
    flex: 1;
    padding-left: 2rem;
    line-height: 1.8;
  }
  .flow_num span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #70a401;
    border-radius: 50%;
    color: #fff;
  }

  .att_area{
    margin-top: 4rem;
  }
  .att_area .att_title{
    color: #c82c55;
    font-size: 120%;
    font-weight: bold;
  }
  .att_area ul{
    margin-top: 1rem;
    padding-left: 1.5em;
  }
  .att_area li{
    list-style: disc;
    line-height: 1.8;
  }

/* posting --------------- */
  .posting_body{
    margin-top: 6rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .posting_body .feature_title{
    margin-bottom: 2rem;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
  }
  .posting_body .feature_list{
    padding-left: 1em;
  }
  .posting_body .feature_list li{
    list-style: disc;
    line-height: 1.4;
  }
  .posting_body .feature_list li + li{
    margin-top: 1em;
  }

  /* CTA --------------- */
  .main_cta{
    margin-top: 8rem;
  }
  .deli_cta{
    margin-bottom: 1em;
    color: #70a401;
    font-size: 110%;
    font-weight: 700;
    text-align: center;
  }
  .cta_title{
    color: #111;
    font-size: 120%;
    font-weight: 700;
    text-align: center;
  }
  .posting_cta_title{
    margin-bottom: 1em;
    color: #111;
    font-size: 120%;
    font-weight: 700;
    text-align: center;
  }
  .cta_flx{
    margin-top: 4rem;
    padding-right: 4rem;
    padding-left: 4rem;
  }
  .cta_flx .cta_tel .telnum a{
    display: block;
    padding: 1.5rem 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: .8rem;
    color: #111;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
  }
  .cta_flx .cta_mail{
    margin-top: 1.5rem;
  }
  .cta_flx .cta_mail a{
    display: block;
    padding: 1em 0;
    background-color: #70a401;
    border-radius: .8rem;
    color: #fff;
    text-align: center;
  }
  .cta_tel img{
    display: inline-block;
    width: auto;
    height: 2.8rem;
    margin-right: .5rem;
    vertical-align: bottom;
  }
  .posting_link{
    margin-top: 3rem;
    text-align: center;
  }
  .posting_link a{
    color: #70a401;
    font-weight: bold;
    text-decoration: underline;
  }
  .posting_link a:hover{
    color: #ccc;
    text-decoration: none;
  }

  /* push_box fixed */
  .push_box{
    position: fixed;
    bottom: .5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .push_box a{
    display: block;
    margin: 0 .5rem;
    padding: 1rem 1rem;
    background-color: #ea5549;
    border-radius: 1rem;
    color: #fff;
    line-height: 1.4;
    box-shadow: 0 0 1rem rgba(0,0,0,.2);
  }
  .push_box a span{
    display: block;
    margin-top: .5rem;
    padding: .2em .5em;
    background-color: #fff;
    color: #ea5549;
    font-size: 1.4rem;
    text-align: center;
  }


  .address_mob{
    margin-top: 8rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .address_mob .name{
    color: #111;
    font-size: 120%;
    font-weight: 700;
  }
  .address_mob .address{
    margin-top: 1.5rem;
  }
  .info_flx{
    display: flex;
    margin-top: 1.5rem;
  }
  .address_mob .fax{
    margin-left: 2rem;
  }
  .address_mob .phone .telnum,
  .address_mob .fax .telnum{
    font-size: 110%;
  }
  .address_mob .phone a{
    color: #111;
  }


}/* end smartphone only */
/* -------------------------------------------------------
for SmartPhone landscape
---------------------------------------------------------- */
@media screen and (max-width:800px) and (orientation: landscape){
  .logo{display: none;}
  .side_nav, .footer_area{display: none;}
}
/* -------------------------------------------------------
for TAB & PC
---------------------------------------------------------- */
@media screen and (min-width:600px){
  .ssp {display: none;}
  a[href^="tel:"] {
    pointer-events: none;
  }
  /* block */
  .flx   {display: flex;}
  .fd_r  {flex-direction: row;}
  .fd_rr {flex-direction: row-reverse;}
  .jc_sb {justify-content: space-between;}
  .jc_c  {justify-content: center;}
  .al_c  {align-items: center;}

  .column_wrap{
    position: relative;
    display: flex;
    /*background-color: #f3f2e1;*/
    z-index: 1;
  }
  .left_column{
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    flex: 1;
    height: 100vh;
  }
  .main_column{
    flex-shrink: 0;
    max-width: 56rem;
    margin: 0 auto;
    padding-bottom: 18rem;
    background-color: #f2f2e1;
    box-shadow: 0 0 4rem rgba(0,0,0,.2);
  }
  body.posting .main_column{
    padding-bottom: 4rem;
  }
  .right_column{
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
    flex: 1;
    height: 100vh;
  }

  /* left */
  .logo{
    max-width: 24rem;
  }

  /* main */
  .main_title{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .main_title h1{
    color: #111;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
  }
  .main_title h1 span{
    display: block;
    font-size: 2.4rem;
  }
  .deli_area{
    margin-bottom: 1rem;
    color: #70a401;
    font-size: 110%;
    font-weight: 700;
    text-align: center;
  }
  .lead_area{
    line-height: 1.8;
    text-align: center;
  }
  .lead_area p{
    color: #70a401;
    font-size: 2rem;
    font-weight: 700;
  }
  .lead_img img{
    max-width: 70%;
    height: auto;
  }
  .desc{
    margin-top: 4rem;
    padding-right: 4rem;
    padding-left: 4rem;
    line-height: 1.8;
  }
  .value_standards{
    margin-top: 4rem;
    background: url(images/img03.jpg) no-repeat center;
    background-size: cover;
  }
  .value_standards .filter_w{
    width: 100%;
    height: 100%;
    padding: 8rem 4rem;
    background-color: rgba(255,255,255,.8);
  }
  .value_standards h2{
    color: #ea5549;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
  }
  .value_standards ol{
    margin-top: 3rem;
  }
  .value_standards ol li{
    font-size: 130%;
    font-weight: 700;
    line-height: 1.4;
  }
  .value_standards ol li + li{
    margin-top: 1em;
  }

  .features_area{
    margin-top: 8rem;
  }
  .features_area h2{
    color: #70a401;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
  }
  .features_mv_area{
    margin-top: 4rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .features_mv{
    width: 100%;
    height: auto;
  }
  .features_box{
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    margin-right: 2rem;
    margin-left: 2rem;
    padding: 3rem 2rem;
    background-color: #fff;
    border-radius: 1rem;
  }
  .features_txt{
    flex: 1;
    padding-right: 2rem;
  }
  .features_img{
    width: 16rem;
  }
  .features_txt h3{
    font-size: 120%;
    font-weight: 700;
    line-height: 1.4;
  }
  .features_txt p{
    margin-top: 1em;
    line-height: 1.6;
  }

  .bento_area{
    margin-top: 8rem;
  }
  .bento_area .inner{
    margin-top: 3rem;
    margin-right: 2rem;
    margin-left: 2rem;
    padding: 3rem;
    background-color: #fff;
    border-radius: 1rem;
  }
  .bento_area h2{
    color: #ed6d35;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
  }
  .lineup li + li{
    margin-top: 4rem;
  }
  .lineup h3{
    padding: 1.5rem;
    background-color: #ed6d35;
    border-radius: 4px 4px 0 0;
    color: #fff;
    font-size: 120%;
    font-weight: bold;
  }
  .bento_catch{
    margin-top: 1rem;
    padding: .4em 0 .4em .5em;
    border-left: 6px solid #ed6d35;
    font-size: 130%;
    font-weight: bold;
  }
  .lineup p{
    margin-top: 1em;
    line-height: 1.8;
  }

  .flow_area{
    margin-top: 8rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .flow_area h2{
    margin-bottom: 3rem;
    color: #70a401;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
  }
  .flow_flx{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: .8rem;
  }
  .flow_flx .flow_num{
    width: 40px;
  }
  .flow_desc{
    flex: 1;
    padding-left: 2rem;
    line-height: 1.8;
  }
  .flow_num span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #70a401;
    border-radius: 50%;
    color: #fff;
  }

  .att_area{
    margin-top: 4rem;
  }
  .att_area .att_title{
    color: #c82c55;
    font-size: 120%;
    font-weight: bold;
  }
  .att_area ul{
    margin-top: 1rem;
    padding-left: 1.5em;
  }
  .att_area li{
    list-style: disc;
    line-height: 1.8;
  }

  /* posting --------------- */
  .posting_body{
    margin-top: 6rem;
    padding-right: 4rem;
    padding-left: 4rem;
  }
  .posting_body .feature_title{
    margin-bottom: 2rem;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
  }
  .posting_body .feature_list{
    padding-left: 1em;
  }
  .posting_body .feature_list li{
    list-style: disc;
    line-height: 1.4;
  }
  .posting_body .feature_list li + li{
    margin-top: 1em;
  }

  /* CTA --------------- */
  .main_cta{
    margin-top: 8rem;
  }
  .deli_cta{
    margin-bottom: 1em;
    color: #70a401;
    font-size: 110%;
    font-weight: 700;
    text-align: center;
  }
  .cta_title{
    color: #111;
    font-size: 120%;
    font-weight: 700;
    text-align: center;
  }
  .posting_cta_title{
    margin-bottom: 1em;
    color: #111;
    font-size: 120%;
    font-weight: 700;
    text-align: center;
  }
  .cta_flx{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding-right: 4rem;
    padding-left: 4rem;
  }
  .cta_flx .cta_tel .telnum a{
    color: #111;
    font-size: 3rem;
    font-weight: 700;
  }
  .cta_flx .cta_mail a{
    display: flex;
    padding: 1em 2em;
    background-color: #70a401;
    border-radius: .8rem;
    color: #fff;
  }
  .cta_tel img{
    display: inline-block;
    width: auto;
    height: 2.8rem;
    margin-right: .5rem;
    vertical-align: bottom;
  }

  .posting_link{
    margin-top: 4rem;
    text-align: center;
  }
  .posting_link a{
    color: #70a401;
    font-weight: bold;
    text-decoration: underline;
  }
  .posting_link a:hover{
    color: #ccc;
    text-decoration: none;
  }

  /* push_box fixed */
  .push_box{
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 52rem;
  }
  .push_box a{
    display: block;
    padding: 2rem;
    background-color: #ea5549;
    border-radius: 1rem;
    color: #fff;
    font-size: 130%;
    font-weight: bold;
    line-height: 1.4;
    box-shadow: 0 0 1rem rgba(0,0,0,.2);
  }
  .push_box a span{
    display: inline-block;
    margin-left: 1em;
    padding: .2em .5em;
    background-color: #fff;
    color: #ea5549;
    font-size: 1.4rem;
  }


  /* right */
  .side_nav li{
    font-size: 110%;
  }
  .side_nav li + li{
    margin-top: 1.5em;
  }
  .side_nav li a {
    font-weight: 700;
  }




}/* end TAB & PC */
/* -------------------------------------------------------
for TAB only
---------------------------------------------------------- */
@media screen and (min-width:600px) and (max-width:1080px){

}/* end TAB only */
/* -------------------------------------------------------
for TAB portrait
---------------------------------------------------------- */
@media screen and (min-width:600px) and (max-width:810px) and (orientation: portrait){
  .body_mv_bg{display: none;}
  .left_column .logo{display: none;}
  .side_nav, .footer_area{display: none;}

  .top_img{
    position: relative;
    width: 100%;
    height: auto;
  }
  .top_img img{
    position: relative;
  }
  .top_img .logo_tab{
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 20rem;
  }

  .address_mob{
    margin-top: 8rem;
    padding-right: 4rem;
    padding-left: 4rem;
  }
  .address_mob .name{
    color: #111;
    font-size: 120%;
    font-weight: 700;
  }
  .address_mob .address{
    margin-top: 1.5rem;
  }
  .info_flx{
    display: flex;
    margin-top: 1.5rem;
  }
  .address_mob .fax{
    margin-left: 2rem;
  }
  .address_mob .phone .telnum,
  .address_mob .fax .telnum{
    font-size: 110%;
  }
  .address_mob .phone a{
    color: #111;
  }



}/* end TAB only */
/* -------------------------------------------------------
for TAB landscape
---------------------------------------------------------- */
@media screen and (min-width:600px) and (max-width:1080px) and (orientation: landscape) {
  .body_mv_bg{display: none;}
  .mob_menu{display: none;}
  .logo_tab{display: none;}
  .footer_area{display: none;}

  .left_column .logo{
    width: 20rem;
  }

  .address_mob{
    margin-top: 8rem;
    padding-right: 4rem;
    padding-left: 4rem;
  }
  .address_mob .name{
    color: #111;
    font-size: 120%;
    font-weight: 700;
  }
  .address_mob .address{
    margin-top: 1.5rem;
  }
  .info_flx{
    display: flex;
    margin-top: 1.5rem;
  }
  .address_mob .fax{
    margin-left: 2rem;
  }
  .address_mob .phone .telnum,
  .address_mob .fax .telnum{
    font-size: 110%;
  }
  .address_mob .phone a{
    color: #111;
  }

}/* end smartphone landscape */
/* -------------------------------------------------------
for PC
---------------------------------------------------------- */
@media only screen and (min-width:1081px){
  .spv, .tab {display: none;}
  .mob_menu{display: none;}
  .logo_tab{display: none;}
  .address_mob{display: none;}

  .body_mv_bg{
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
  }
  .body_mv_bg video{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100vh;
    object-fit: cover;
    z-index: 0;
  }

  .footer_area{
    position: absolute;
    right: 4rem;
    bottom: 4rem;
    line-height: 1.6;
  }
  .footer_area .name{
    color: #111;
    font-size: 120%;
    font-weight: 700;
  }
  .footer_area .address{
    margin-top: 1rem;
  }
  .footer_area .address .zipcode{
    display: block;
  }
  .footer_area .phone{
    margin-top: 1rem;
  }
  .footer_area .phone .telnum,
  .footer_area .fax .telnum{
    font-size: 100%;
  }
  .footer_area .phone a{
    color: #111;
  }


}/* end PC */

