body {
  font-family:'Lucida Grande', Arial, 'Hiragino Kaku Gothic Pro', Meiryo, 'メイリオ', sans-serif;
  font-style: normal;
  margin: 0 !important;
}

@media screen and (max-width: 1024px) {
  body {
    padding-bottom: 30px;
  }

  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp {
    display: none !important;
  }
}

/*
@media screen and (max-width: 1024px) {
  header {
    height: 16vw;
  }
}
*/

/*
@media screen and (max-width: 375px) {
  header {
    height: 50px;
  }
}
*/

header a {
  text-decoration: none;
}

header .head {
  /*
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2%;*/
}

@media screen and (min-width: 1025px) {
  header .head {
    padding: 2vh;
  }
}

/*
@media screen and (max-width: 1024px) {
  header .head {
    padding: 3% 0;
  }
}
*/

header .head img {
  display: block;
  margin: 15px auto;
  padding: 0;
  width: 108px;
  /*display:none;*/
}

@media screen and (max-width: 1024px) {
  header .head img {
    width: 27%;
  }
}

header .head nav {
  display: block;
  position: absolute;
  top: 9px;
  left: 14px;
  /*width: 80%;*/
  /*padding-right: 3%;*/
}

header .head nav span {
  font-size: 9px;
  /*  font-family: futura-pt, sans-serif;
    font-style: normal;
    font-weight: 300;*/
}

header .head nav span a {
  color: #000;
  font-size: 10px;
  letter-spacing: 0;
  margin: 0 8px;
}

header .head_bottom {
  /*  background-color: #D4D3D2;
    padding: 1% 0;*/
  margin: 18px 0 0 0;
  padding: 10px 0 15px;
  /*border-top:1px solid #555;*/
  background: url(images/nav_bg.gif) repeat-x;
  background-position: top 0;
}

header .head_bottom nav {
  /*
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  */
  text-align: center;
}

header .head_bottom nav span {
  margin: 0 0.5vw;
  display: inline;
}

header .head_bottom nav span a {
  color: #333;
  font-family: 'arial';
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  transform: scale(1.5, 1);
}

header .head_bottom nav span a:hover {
  border-bottom: 1px solid #000;
}

header .head_bottom nav span a img {
  height: 9px;
  opacity: 0.9;
}

/*
header .head_hr {
  margin: 0;
  background-color: #D138B0;
  border-top: 6px dotted #D138B0;
}*/

@media screen and (max-width: 1024px) {

  header nav {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 300px;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all .5s;
    transition: all .5s;
    z-index: 4;
    opacity: 0;
  }
  header .open nav {
    left: 0;
    opacity: 1;
  }
  header nav .inner {
    padding: 25px;
  }
  header nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  header nav .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #333;
  }
  header nav .inner ul li a {
    display: block;
    color: #333;
    font-size: 14px;
    padding: 1em;
    text-decoration: none;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
  }
  header nav .inner ul li a:hover {
    background: #e4e4e4;
  }
  header nav {
    left: -220px;
    width: 220px;
  }
  .top a {
    background: url(/images/menu_top.png) no-repeat;
    width: 49px;
  }
  .concept a {
    background: url(/images/menu_concept_off.png) no-repeat;
    width: 79px;
  }
  .toggle_btn {
    display: block;
    position: fixed;
    top: 10px;
    right: 12px;
    width: 30px;
    height: 30px;
    -webkit-transition: all .5s;
    transition: all .5s;
    cursor: pointer;
    z-index: 4;
  }
  .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #333;
    border-radius: 4px;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  .open .toggle_btn span {
    background-color: #fff;
  }
  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
  }
  header #mask {
    display: none;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  header .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .8;
    z-index: 3;
    cursor: pointer;
  }
}

footer .box-footer {
  background-color: #FFF;
  color: #000;
  text-align: center;
  background: url(images/nav_bg1.gif) repeat-x;
}

@media screen and (min-width: 1025px) {
  footer .box-footer {
    padding-top: 3%;
    padding-bottom: 1%;
  }
}

@media screen and (max-width: 1024px) {
  footer .box-footer {
    padding-top: 6%;
    padding-bottom: 10%;
  }
}

footer .box-footer .footer-logo img {
  width: 15%;
}

@media screen and (max-width: 1024px) {
  footer .box-footer .footer-logo img {
    width: 27%;
  }
}

footer .box-footer nav {
  margin: 3% 0;
}

footer .box-footer nav span {
  margin: 0 2%;
}

@media screen and (max-width: 1024px) {
  footer .box-footer nav span {
    font-size: 10px;
    margin: 0 1%;
  }
}

footer .box-footer nav span a {
  color: #000;
  text-decoration: none;
}

/* @media screen and (max-width: 1024px) {
  footer .box-footer .sns-img img {
    width: 10%;
  }
} */

.sns-img {
  display: inline-grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.sns-img img.add{
  margin:0 auto;
  padding:6px;
}

footer .box-footer .copyright {
  margin-top: 40px;
  font-size: 13px;
  color: #979797;
}

@media screen and (max-width: 1024px) {
  footer .box-footer .copyright {
    font-size: 0.1vw;
  }
}

@media screen and (min-width: 1025px) {
  .opt-left {
    float: left;
    padding: 10px 0;
  }
  .opt-right {
    min-height: 438px;
    padding: 3% 0;
    margin-left: 380px;
    font-size: 14px;
    line-height: 180%;
  }
}

span.opt-title {
  font-size: 18px;
  font-weight: bold;
}

.clearfix {
  clear: both;
}

div#down_line {
  padding: 15px;
  text-align: center;
  background: #02B903;
  color: #FFF;
  margin-bottom: 7%;
}

a {
  text-decoration: none;
  color: inherit;
}

#down_address {
  padding: 4% 3% !important;
}

/*TOP画像スライダー制御 ここから*/
#screen {
  height: 500px !important;
  overflow: hidden;
  object-fit: cover;
}

#screen img {
  position: relative;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  #screen {
    overflow: hidden;
    object-fit: cover;
    height: 50vw !important;
  }
}

/*TOP画像スライダー制御 ここまで*/

@media screen and (min-width: 1025px) {
  section.sec-white div.left {
    background: linear-gradient(113deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 69.5%, rgba(162, 162, 162, 0.8) 69.5%, rgba(162, 162, 162, 0.8) 20.5%, rgba(0, 0, 0, 0) 20.5%, rgba(0, 0, 0, 0));
    padding-right: 16%;
    padding-bottom: 2%;
  }
  section.sec-white div.left .down_btn input {
    font-size: 14px;
  }
}

@media screen and (max-width: 1024px) {
  section.sec-white div.left {
    background: rgba(255, 255, 255, 0.7);
    padding-bottom: 2%;
  }
}

header .head .top-link {
  cursor: pointer;
}

a {
  letter-spacing: 0.1em;
}

#toc_container {
  margin: 0 auto;
}

section#gr {
  background: #F6F6F6;
  padding: 40px 0 15px;
}

@media screen and (max-width: 1200px) {
  .bnr_img {
    width: 60%;
  }
}
