@charset "UTF-8";
/* CSS Document */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

img {
  width: 100%;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

::selection {
  background: #ffe3e3; /* Safari用 */
}

::-moz-selection {
  background: #ffe3e3; /* Firefox用 */
}

@font-face {
  font-family: "ns-j";
  font-weight: 700;
  src: url("../noto_font/ns-j-Bold.woff") format("woff");
}
@font-face {
  font-family: "ns-j";
  font-weight: 500;
  src: url("../noto_font/ns-j-Medium.woff") format("woff");
}
@font-face {
  font-family: "ns-j";
  font-weight: 400;
  src: url("../noto_font/ns-j-Regular.woff") format("woff");
}
@font-face {
  font-family: "ns-j";
  font-weight: 300;
  src: url("../noto_font/ns-j-Light.woff") format("woff");
}
html {
  width: 100%;
}

body {
  font-family: "ns-j", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: subpixel-antialiased;
  overflow: hidden;
  overflow-y: scroll;
  color: #2b2b2b;
  -ms-overflow-style: none; /* IE対策 */
  overflow: -moz-scrollbars-none; /* Firefox対策 */
}

body:-webkit-scrollbar { /* Google Chrome対策 */
  display: none;
}

/* +++++++++++ ローディングのCSS +++++++++++ */
#loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%); /* Safari用 */
  transform: translate(-50%, -50%);
  width: 120px;
  z-index: 9999;
  opacity: 0;
  animation: road_fede_in 0.3s 0s ease-in;
  animation-fill-mode: forwards;
}
#loading img {
  width: 80px;
  display: block;
  margin: 0 auto 15px;
}
#loading p {
  font-family: Roboto;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  color: #ed0100;
  animation: road_anim 1s 0s ease-in-out;
  animation-iteration-count: infinite;
}

#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 9998;
}

@keyframes road_anim {
  0% {
    letter-spacing: 0.1em;
  }
  50% {
    letter-spacing: 0.15em;
  }
  100% {
    letter-spacing: 0.1em;
  }
}
@keyframes road_fede_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
a {
  color: #2b2b2b;
  text-decoration: none;
}

/* +++++++++++ カーソルのカスタマイズ +++++++++++ */
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  position: relative;
}

.follower {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.follower {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 5000;
  transition: transform ease 0.3s;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .follower {
    display: none;
  }
}
.follower span {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  transform: scale(0);
}
.follower.is-active {
  transform: scale(2);
}
.follower.is-active2 {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn {
  display: inline-block;
  width: 160px;
  margin: 16px;
  text-align: center;
  font-size: 16px;
  line-height: 1;
}
.btn a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 16px;
  background-color: #000;
  cursor: none;
}

#container {
  width: 100%;
}
@media only screen and (max-width:768px) {
  #container {
    min-width: 100%;
    overflow: hidden;
  }
}

/*#container*/
.content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  position: relative;
}

/* +++++++++++ サイドグローバルナビ +++++++++++ */
#side_bar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 220px;
  min-width: 220px;
  height: 100vh;
  min-height: 600px;
  background-color: #ffffff;
  border-right: 1px solid #dddddd;
  z-index: 1000;
  /*.inner*/
  /*h1*/
  /*nav*/
  /*.gn_bnr*/
}
@media only screen and (max-width:768px) {
  #side_bar {
    position: fixed;
    width: 100%;
    min-width: 100%;
    height: 60px;
    min-height: 60px;
    border-right: none;
    border-bottom: 1px solid #dddddd;
  }
}
#side_bar .inner {
  width: 100%;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width:768px) {
  #side_bar .inner {
    position: static;
    transform: none;
  }
}
#side_bar h1 {
  width: 154px;
  margin: 0 auto 70px;
}
@media only screen and (max-width:768px) {
  #side_bar h1 {
    width: auto;
    overflow: hidden;
    margin: 0;
    padding: 15px 0 0 10px;
  }
}
#side_bar h1 img {
  width: 115px;
  display: block;
  margin: 0 auto 15px;
}
@media only screen and (max-width:768px) {
  #side_bar h1 img {
    width: 70px;
    margin: 0;
    float: left;
    margin-right: 15px;
  }
}
#side_bar h1 p {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
@media only screen and (max-width:768px) {
  #side_bar h1 p {
    float: left;
    font-size: 12px;
    padding-top: 10px;
  }
}
#side_bar nav {
  font-size: 14px;
  width: 100%;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  /*ul li*/
}
@media only screen and (max-width:768px) {
  #side_bar nav {
    position: fixed;
    top: 61px;
    right: -100%;
    opacity: 0;
    transition: 0.3s;
    background-color: #fff;
    height: 100vh;
  }
}
#side_bar nav ul li {
  line-height: 2.8em;
  width: 100%;
  /*a*/
  /*a:hover*/
}
#side_bar nav ul li a {
  display: block;
  transition: 0.2s;
  position: relative;
  overflow: hidden;
}
#side_bar nav ul li a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff2f2;
  position: absolute;
  top: 0;
  left: -220px;
  z-index: -1;
  transition: 0.2s;
}
@media only screen and (max-width:768px) {
  #side_bar nav ul li a:before {
    content: "";
    display: none;
  }
}
#side_bar nav ul li a:hover {
  color: #ed0100;
}
#side_bar nav ul li a:hover:before {
  left: 0;
}
@media only screen and (max-width:768px) {
  #side_bar nav {
    /*ul*/
  }
  #side_bar nav ul {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  #side_bar nav ul li {
    line-height: 3.5em;
    font-size: 4.5vw;
  }
}
@media only screen and (max-width:768px) {
  #side_bar {
    /*nav.active*/
  }
  #side_bar nav.active {
    right: 0;
    opacity: 1;
    /*ul*/
  }
  #side_bar nav.active ul {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  #side_bar nav.active ul li {
    line-height: 3.5em;
    font-size: 4.5vw;
  }
}
#side_bar .info_btn {
  position: absolute;
  bottom: 140px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 180px;
  height: 52px;
  box-sizing: border-box;
  border: 2px solid #ff0000;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6em;
  letter-spacing: 0.1em;
  /*a*/
}
@media only screen and (max-width:768px) {
  #side_bar .info_btn {
    bottom: -70vh;
    left: auto;
    opacity: 0;
    right: -100%;
    transition: 0.3s;
  }
}
#side_bar .info_btn a {
  display: block;
  color: #ed0100;
  width: 100%;
  height: 30px;
  transition: 0.3s;
  /*p*/
}
#side_bar .info_btn a p {
  position: relative;
}
@media only screen and (max-width:768px) {
  #side_bar .info_btn.active {
    left: 0;
    opacity: 1;
    right: 0;
  }
}
#side_bar .gn_bnr {
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 180px;
  height: 80px;
  box-sizing: border-box;
  border: 8px solid #b8d8e5;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6em;
  letter-spacing: 0.1em;
  /*a*/
}
@media only screen and (max-width:768px) {
  #side_bar .gn_bnr {
    bottom: -85vh;
    left: auto;
    opacity: 0;
    right: -100%;
    transition: 0.3s;
  }
}
#side_bar .gn_bnr a {
  display: block;
  color: #ed0100;
  width: 100%;
  height: 56px;
  padding-top: 8px;
  transition: 0.3s;
  /*p*/
}
#side_bar .gn_bnr a p {
  position: relative;
}
#side_bar .gn_bnr a p:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8.7px;
  border-color: transparent transparent transparent #b4d5dd;
  position: absolute;
  right: 10px;
  top: 20px;
  transition: 0.3s;
}
#side_bar .gn_bnr a:hover {
  background-color: #ed0100;
  color: #fff;
}
#side_bar .gn_bnr a:hover p:after {
  content: "";
  right: 6px;
  border-color: transparent transparent transparent #ffffff;
}
@media only screen and (max-width:768px) {
  #side_bar .gn_bnr.active {
    left: 0;
    opacity: 1;
    right: 0;
  }
}

/* #side_bar*/
/*IEのみバグ対応*/
@media all and (-ms-high-contrast: none) {
  #container {
    overflow: hidden;
  }
  #side_bar {
    z-index: 15;
  }
}
/*ハンバーガーボタン*/
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu-trigger {
  display: none;
}
@media only screen and (max-width:768px) {
  .menu-trigger {
    display: block;
    position: absolute;
    top: 24px;
    right: 18px;
    z-index: 200;
    width: 25px;
    height: 15px;
  }
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 7px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-315deg);
  transform: translateY(7px) rotate(-315deg);
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-7px) rotate(315deg);
  transform: translateY(-7px) rotate(315deg);
}

/* +++++++++++++++++++++ ipad用ナビ ++++++++++++++++++++++*/
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #container {
    /*overflow: hidden;*/
  }
  .follower {
    display: none;
  }
  #side_bar {
    position: fixed;
    width: 100%;
    min-width: 100%;
    height: 80px;
    min-height: 80px;
    border-right: none;
    border-bottom: 1px solid #dddddd;
    /*.inner*/
    /*h1*/
    /*nav*/
    /*nav.active*/
    /*.gn_bnr*/
  }
  #side_bar .inner {
    position: static;
    transform: none;
  }
  #side_bar h1 {
    width: auto;
    overflow: hidden;
    margin: 0;
    padding: 25px 0 0 10px;
  }
  #side_bar h1 img {
    width: 90px;
    margin: 0;
    float: left;
    margin-right: 15px;
  }
  #side_bar h1 p {
    float: left;
    font-size: 18px;
    padding-top: 11px;
  }
  #side_bar nav {
    position: fixed;
    top: 81px;
    right: -100%;
    opacity: 0;
    transition: 0.3s;
    background-color: #fff;
    height: 100vh;
    font-size: 3vw;
    /*ul li*/
    /*ul*/
  }
  #side_bar nav ul li {
    line-height: 3em;
    width: 100%;
    font-size: 3vw;
    /*a*/
  }
  #side_bar nav ul li a {
    display: block;
    transition: 0.2s;
    position: relative;
    overflow: hidden;
    font-size: 3vw;
    line-height: 3em;
  }
  #side_bar nav ul li a:before {
    content: "";
    display: none;
  }
  #side_bar nav ul {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  #side_bar nav ul li {
    line-height: 3.5em;
    font-size: 4.5vw;
  }
  #side_bar nav.active {
    right: 0;
    opacity: 1;
    /*ul*/
  }
  #side_bar nav.active ul {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  #side_bar nav.active ul li {
    line-height: 3.5em;
    font-size: 4.5vw;
  }
  #side_bar .gn_bnr {
    bottom: -85vh;
    left: auto;
    opacity: 0;
    right: -100%;
    transition: 0.3s;
    width: 50%;
    height: 130px;
    font-size: 28px;
  }
  #side_bar .gn_bnr a {
    width: 100%;
    height: 76px;
    padding-top: 30px;
    /*p:after*/
  }
  #side_bar .gn_bnr a p br {
    display: none;
  }
  #side_bar .gn_bnr a p:after {
    content: "";
    display: none;
  }
  #side_bar .gn_bnr.active {
    left: 0;
    opacity: 1;
    right: 0;
  }
  /* #side_bar*/
  .menu-trigger {
    display: block;
    position: absolute;
    top: 35px;
    right: 35px;
    z-index: 200;
    width: 35px;
    height: 15px;
  }
  .in_menu {
    display: none;
  }
} /* ipadここまで */
/* サイドオープン時にメインコンテンツを覆う部分 */
.overlay {
  content: "";
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 9;
}
@media only screen and (max-width:768px) {
  .overlay {
    display: none;
  }
}

.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width:768px) {
  .side-open .overlay {
    display: none;
  }
}

/* +++++++++++ 事業紹介ナビ +++++++++++ */
.in_menu {
  width: 220px;
  opacity: 0;
  height: 100vh;
  min-height: 600px;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
  background: rgb(241, 12, 4);
  background: -moz-linear-gradient(45deg, rgb(241, 12, 4) 0%, rgb(252, 101, 36) 49%, rgb(247, 136, 67) 68%, rgb(252, 101, 36) 85%, rgb(238, 12, 4) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(241, 12, 4)), color-stop(49%, rgb(252, 101, 36)), color-stop(68%, rgb(247, 136, 67)), color-stop(85%, rgb(252, 101, 36)), color-stop(100%, rgb(238, 12, 4)));
  background: -webkit-linear-gradient(45deg, rgb(241, 12, 4) 0%, rgb(252, 101, 36) 49%, rgb(247, 136, 67) 68%, rgb(252, 101, 36) 85%, rgb(238, 12, 4) 100%);
  background: -o-linear-gradient(45deg, rgb(241, 12, 4) 0%, rgb(252, 101, 36) 49%, rgb(247, 136, 67) 68%, rgb(252, 101, 36) 85%, rgb(238, 12, 4) 100%);
  background: -ms-linear-gradient(45deg, rgb(241, 12, 4) 0%, rgb(252, 101, 36) 49%, rgb(247, 136, 67) 68%, rgb(252, 101, 36) 85%, rgb(238, 12, 4) 100%);
  background: linear-gradient(45deg, rgb(241, 12, 4) 0%, rgb(252, 101, 36) 49%, rgb(247, 136, 67) 68%, rgb(252, 101, 36) 85%, rgb(238, 12, 4) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f10c04", endColorstr="#ee0c04", GradientType=1 );
}
@media only screen and (max-width:768px) {
  .in_menu {
    display: none;
  }
}

/* .in_menu*/
.in_menu .im_inner {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 100%;
  /*p*/
  /*ul li a*/
}
.in_menu .im_inner p {
  margin-bottom: 40px;
  padding-left: 30px;
  box-sizing: border-box;
  padding-top: 70px;
  width: 100%;
  height: 100px;
  background: rgba(76, 76, 76, 0);
  background: -moz-linear-gradient(top, rgba(76, 76, 76, 0) 0%, rgba(87, 77, 68, 0) 12%, rgba(166, 82, 8, 0.2) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(76, 76, 76, 0)), color-stop(12%, rgba(87, 77, 68, 0)), color-stop(100%, rgb(166, 82, 8)));
  background: -webkit-linear-gradient(top, rgba(76, 76, 76, 0) 0%, rgba(87, 77, 68, 0) 12%, rgba(166, 82, 8, 0.2) 100%);
  background: -o-linear-gradient(top, rgba(76, 76, 76, 0) 0%, rgba(87, 77, 68, 0) 12%, rgba(166, 82, 8, 0.2) 100%);
  background: -ms-linear-gradient(top, rgba(76, 76, 76, 0) 0%, rgba(87, 77, 68, 0) 12%, rgba(166, 82, 8, 0.2) 100%);
  background: linear-gradient(to bottom, rgba(76, 76, 76, 0) 0%, rgba(87, 77, 68, 0) 12%, rgba(166, 82, 8, 0.2) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4c4c4c", endColorstr="#a65208", GradientType=0 );
  position: relative;
}
.in_menu .im_inner p:before {
  content: "Services";
  position: absolute;
  left: 0;
  bottom: 15px;
  font-size: 50px;
  letter-spacing: 0.03em;
  font-family: Roboto;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.2);
}
.in_menu .im_inner p a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  transition: 0.3s;
}
.in_menu .im_inner p a:hover {
  opacity: 0.8;
}
.in_menu .im_inner ul {
  margin-bottom: 20px;
}
.in_menu .im_inner ul li a {
  color: #fff;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.5em;
  letter-spacing: 0.05em;
  position: relative;
  transition: 0.2s;
}
.in_menu .im_inner ul li a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6.9px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: 8px;
  left: 20px;
}
.in_menu .im_inner ul li a:hover {
  opacity: 0.8;
  padding-left: 35px;
}
.in_menu .im_inner ul li ul {
  padding-left: 10px;
  border-left: 1px solid #ffb181;
  margin-left: 30px;
}
.in_menu .im_inner ul li ul li a {
  padding-left: 0;
  line-height: 2em;
  font-size: 14px;
}
.in_menu .im_inner ul li ul li a:before {
  content: "";
  display: none;
}
.in_menu .im_inner ul li ul li a:hover {
  opacity: 0.8;
  padding-left: 5px;
}

/*.in_menu .im_inner*/
/* サイドメニューオープン */
.side-open #main_area,
.side-open .overlay {
  transform: translate3d(70px, 0, 0);
}
@media only screen and (max-width:768px) {
  .side-open #main_area,
  .side-open .overlay {
    transform: none;
  }
}

.side-open .in_menu {
  transform: translate3d(220px, 0, 0);
  opacity: 1;
}
@media only screen and (max-width:768px) {
  .side-open .in_menu {
    transform: none;
  }
}

.side-open a.menu {
  color: #ed0100;
  position: relative;
  background-color: #fff2f2;
}
@media only screen and (max-width:768px) {
  .side-open a.menu {
    background-color: #ffffff;
  }
}

/* +++++++++++ メインコンテンツエリア +++++++++++ */
#main_area {
  flex: 1;
  width: 100%;
  　min-width: 1000px;
  background-color: #ffffff;
  position: relative;
  transition: all 0.5s ease;
  z-index: 2;
}
@media only screen and (max-width:768px) {
  #main_area {
    min-width: 100%;
  }
}

/*#main_area*/
@media all and (-ms-high-contrast: none) {
  #main_area {
    margin-left: 220px;
  }
}
.inner {
  width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width:768px) {
  .inner {
    width: 90%;
  }
}

/* +++++++++++ お問い合わせエリア +++++++++++ */
.contact_area {
  width: 100%;
  min-width: 1050px;
  padding: 80px 0;
  /*p*/
  /*dl*/
  /*.btn_contact*/
}
@media only screen and (max-width:768px) {
  .contact_area {
    padding: 40px 0;
    min-width: 100%;
  }
}
.contact_area .inner {
  overflow: hidden;
}
.contact_area p {
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1.8em;
  font-weight: 500;
  margin-bottom: 40px;
}
@media only screen and (max-width:768px) {
  .contact_area p {
    font-size: 16px;
    letter-spacing: 0.05em;
    text-align: left;
    margin-bottom: 30px;
  }
  .contact_area p br {
    display: none;
  }
}
.contact_area dl {
  width: 470px;
  border: 1px solid #dddddd;
  float: left;
  /*dt*/
  /*dd*/
}
@media only screen and (max-width:768px) {
  .contact_area dl {
    width: 100%;
    float: none;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}
.contact_area dl dt {
  font-weight: 500;
  padding: 0 10px 0 55px;
  background-color: #fff;
  letter-spacing: 0.05em;
  margin: -10px auto 15px;
  width: 250px;
  position: relative;
}
@media only screen and (max-width:768px) {
  .contact_area dl dt {
    font-size: 12px;
    width: 220px;
    margin-top: -5px;
    padding: 0 0 0 35px;
  }
}
.contact_area dl dt:before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url("../img/common/ico_phone.png") no-repeat;
  background-size: contain;
  position: absolute;
  left: 15px;
  top: -10px;
}
@media only screen and (max-width:768px) {
  .contact_area dl dt:before {
    width: 25px;
    height: 25px;
    left: 8px;
  }
}
.contact_area dl dd {
  margin: 0 auto;
  /*adress*/
}
.contact_area dl dd adress {
  font-size: 23px;
  color: #ed0100;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding-left: 45px;
  margin-bottom: 10px;
  float: left;
}
@media only screen and (max-width:768px) {
  .contact_area dl dd adress {
    text-align: center;
    font-size: 8vw;
    padding-left: 0;
    width: 100%;
  }
}
.contact_area dl dd adress span {
  font-size: 14px;
  letter-spacing: 0;
  display: block;
  color: #000;
  font-weight: 400;
  text-indent: -8px;
  margin-bottom: 3px;
}
@media only screen and (max-width:768px) {
  .contact_area dl dd adress span {
    font-size: 3vw;
  }
}
.contact_area dl dd p {
  font-size: 14px;
  letter-spacing: 0.05em;
  margin: 5px 0 10px;
}
@media only screen and (max-width:768px) {
  .contact_area dl dd p {
    font-size: 12px;
    text-align: center;
  }
}
.contact_area .btn_contact {
  width: 490px;
  height: 121px;
  float: right;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
  /*a*/
}
@media only screen and (max-width:768px) {
  .contact_area .btn_contact {
    width: 100%;
    height: 14vw;
    float: none;
    margin: 0 auto;
  }
}
.contact_area .btn_contact:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  transition: 0.5s;
  background: #fe7d2d;
  background: -moz-linear-gradient(bottom left, #ed0100 0%, #ffb405 100%, #fe7d2d 70%);
  background: -webkit-gradient(linear, left bottom, right top, from(#ed0100), color-stop(100%, #ffb405), to(#fe7d2d));
  background: -webkit-linear-gradient(bottom left, #ed0100 0%, #ffb405 100%, #fe7d2d 70%);
  background: -o-linear-gradient(bottom left, #ed0100 0%, #ffb405 100%, #fe7d2d 70%);
  background: linear-gradient(to top right, #ed0100 0%, #ffb405 100%, #fe7d2d 70%);
}
.contact_area .btn_contact:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  transition: 0.5s;
  background: #fe7d2d;
  background: -moz-linear-gradient(bottom left, #ffb405 0%, #ed0100 100%, #fe7d2d 70%);
  background: -webkit-gradient(linear, left bottom, right top, from(#ed0100), color-stop(100%, #ed0100), to(#ffb405));
  background: -webkit-linear-gradient(bottom left, #ffb405 0%, #ed0100 100%, #fe7d2d 70%);
  background: -o-linear-gradient(bottom left, #ffb405 0%, #ed0100 100%, #fe7d2d 70%);
  background: linear-gradient(to top right, #ffb405 0%, #ed0100 100%, #fe7d2d 70%);
}
.contact_area .btn_contact:hover:before {
  opacity: 0;
}
.contact_area .btn_contact a {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 50px;
  padding-left: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: block;
  transition: 0.3s;
}
@media only screen and (max-width:768px) {
  .contact_area .btn_contact a {
    padding-top: 5vw;
    padding-left: 3vw;
    font-size: 4vw;
  }
}
.contact_area .btn_contact a:before {
  content: "";
  display: block;
  width: 33px;
  height: 24px;
  background: url("../img/common/ico_mail.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: 49px;
  left: 55px;
}
@media only screen and (max-width:768px) {
  .contact_area .btn_contact a:before {
    width: 5vw;
    top: 5.2vw;
    left: 9vw;
  }
}
.contact_area .btn_contact a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8.7px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: 56px;
  right: 55px;
  transition: 0.3s;
}
@media only screen and (max-width:768px) {
  .contact_area .btn_contact a:after {
    top: 5.6vw;
    right: 8vw;
  }
}
.contact_area .btn_contact a:hover:after {
  content: "";
  right: 45px;
}
@media only screen and (max-width:768px) {
  .contact_area .btn_contact a:hover:after {
    right: 25px;
  }
}

/*.contact_area*/
/* +++++++++++ カタログpdfエリア +++++++++++ */
.bnr_area {
  width: 100%;
  min-width: 1050px;
  background-color: #f1f0ef;
  padding: 50px 0;
  /*.inner*/
  /*.pdf_area*/
  /* +++++++++++ カタログpdfエリア +++++++++++ */
  /*.online_area*/
}
@media only screen and (max-width:768px) {
  .bnr_area {
    min-width: 100%;
    padding: 30px 0;
  }
}
.bnr_area .pdf_area {
  overflow: hidden;
  margin-bottom: 20px;
  /*p*/
  /*.bnr_pdf a*/
}
.bnr_area .pdf_area p.title {
  margin-bottom: 20px;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.1em;
  font-size: 16px;
  position: relative;
  padding-left: 26px;
  padding-top: 5px;
}
.bnr_area .pdf_area p.title:before {
  content: "";
  width: 19px;
  height: 27px;
  background: url("../img/common/ico_book.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: 2px;
  left: 0;
}
.bnr_area .pdf_area .bnr_pdf a {
  display: block;
  width: 242px;
  padding-top: 10px;
  margin-right: 10px;
  margin-bottom: 15px;
  background-color: #fff;
  float: left;
  transition: 0.3s;
}
@media only screen and (max-width:768px) {
  .bnr_area .pdf_area .bnr_pdf a {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 10px;
  }
}
.bnr_area .pdf_area .bnr_pdf a:hover {
  opacity: 0.8;
}
.bnr_area .pdf_area .bnr_pdf a p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.4em;
  padding-bottom: 5px;
}
@media only screen and (max-width:768px) {
  .bnr_area .pdf_area .bnr_pdf a p {
    font-size: 2.5vw;
  }
}
.bnr_area .pdf_area .bnr_pdf a p span {
  display: block;
  color: #ed0100;
  font-size: 12px;
}
@media only screen and (max-width:768px) {
  .bnr_area .pdf_area .bnr_pdf a p span {
    font-size: 2vw;
  }
}
.bnr_area .pdf_area .bnr_pdf a p.category {
  font-size: 12px;
  width: 100%;
  color: #fff;
  background-color: #2b2b2b;
  padding: 4px 0;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .bnr_area .pdf_area .bnr_pdf a p.category {
    font-size: 2vw;
    padding: 2px 0;
  }
}
.bnr_area .pdf_area .bnr_pdf:nth-of-type(4n) a {
  margin-right: 0;
}
@media only screen and (max-width:768px) {
  .bnr_area .pdf_area .bnr_pdf:nth-of-type(2n) a {
    margin-right: 0;
  }
}
/* --- オンラインエリア（ここから丸ごと書き換え） --- */
.bnr_area .online_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  overflow: hidden;
}

.bnr_area .online_area p {
  width: 100%;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 16px;
  position: relative;
  padding-left: 34px;
  padding-top: 5px;
}

.bnr_area .online_area p:before {
  content: "";
  width: 27px;
  height: 28px;
  background: url("../img/common/ico_shop.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

/* 各バナーの基本設定 */
.bnr_area .online_area figure {
  box-sizing: border-box;
  margin: 0;
  float: none !important;
}

/* PCの設定：5列（バナー幅18.4% + 余白2% × 4個 = 100%） */
@media only screen and (min-width: 769px) {
  .bnr_area .online_area figure {
    width: 18.4%;
    margin-right: 2%;
    margin-bottom: 20px;
  }
  .bnr_area .online_area figure:nth-of-type(5n) {
    margin-right: 0;
  }
}

/* スマホの設定：2列（バナー幅48% + 余白4% = 100%） */
@media only screen and (max-width: 768px) {
  .bnr_area .online_area figure {
    width: 48% !important;
    margin-right: 4% !important;
    margin-bottom: 15px !important;
  }
  /* 2列目（右側）の余白を消す */
  .bnr_area .online_area figure:nth-of-type(2n) {
    margin-right: 0 !important;
  }
  /* PC用の5n設定がスマホで残らないように上書き */
  .bnr_area .online_area figure:nth-of-type(5n) {
    margin-right: 4% !important;
  }
  /* 10番目など、2nと5nが重なる場合は「右端」なので余白0 */
  .bnr_area .online_area figure:nth-of-type(10n) {
    margin-right: 0 !important;
  }
}

/* リンクと画像・キャプションの設定 */
.bnr_area .online_area figure a {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  transition: 0.3s;
}
.bnr_area .online_area figure a img {
  width: 100%;
  height: auto;
  display: block;
}
.bnr_area .online_area figure a:hover {
  opacity: 0.7;
}
.bnr_area .online_area figcaption {
  font-size: 12px;
  text-align: center;
  line-height: 1.5em;
}
/* --- オンラインエリア（ここまで） --- */
/*.btn_area*/
/* +++++++++++ topへ戻るボタン +++++++++++ */
#scroll {
  width: 72px;
  height: 72px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 500;
  /*a*/
}
@media only screen and (max-width:768px) {
  #scroll {
    width: 50px;
    height: 50px;
  }
}
#scroll a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #ed0100;
  transition: 0.3s;
}
#scroll a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 12.1px 7px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  top: 30px;
  margin: 0 auto;
  right: 0;
  left: 0;
  transition: 0.3s;
}
@media only screen and (max-width:768px) {
  #scroll a:before {
    top: 20px;
  }
}
#scroll a:hover {
  opacity: 0.8;
}
#scroll a:hover:before {
  content: "";
  top: 25px;
}
@media only screen and (max-width:768px) {
  #scroll a:hover:before {
    top: 20px;
  }
}

/*#scroll*/
/* +++++++++++ フッター +++++++++++ */
footer {
  width: 100%;
  background-color: #2b2b2b;
  color: #fff;
  padding-top: 70px;
  position: relative;
  z-index: 20;
  /*.footer_inner*/
  /*.corp_info*/
  /*.footer_nav*/
}
@media only screen and (max-width:768px) {
  footer {
    padding-top: 40px;
  }
}
footer .footer_inner {
  width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 50px;
}
@media only screen and (max-width:768px) {
  footer .footer_inner {
    width: 90%;
    margin-bottom: 0px;
  }
}
footer .footer_inner a {
  color: #fff;
}
footer .corp_info {
  width: 200px;
  padding-right: 60px;
  border-right: 1px solid #606060;
  float: left;
  /*img*/
  /*dl dt*/
  /*dd address p*/
}
@media only screen and (max-width:768px) {
  footer .corp_info {
    width: 100%;
    padding-right: 0;
    border: none;
    float: none;
  }
}
footer .corp_info img {
  width: 110px;
  display: block;
  margin: 0 auto 22px;
}
@media only screen and (max-width:768px) {
  footer .corp_info img {
    margin-bottom: 10px;
  }
}
footer .corp_info dl dt {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media only screen and (max-width:768px) {
  footer .corp_info dl dt {
    font-size: 14px;
  }
}
footer .corp_info dd address p {
  line-height: 1.5em;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:768px) {
  footer .corp_info dd address p {
    font-size: 12px;
    text-align: center;
  }
}
footer .footer_nav {
  width: 760px;
  float: right;
  overflow: hidden;
  letter-spacing: 0.05em;
  /*.area:first-of-type*/
  /*.area:nth-of-type(2)*/
  /*.area:nth-of-type(3)*/
  /*.area:nth-of-type(4)*/
}
@media only screen and (max-width:768px) {
  footer .footer_nav {
    width: 100%;
    float: none;
  }
}
footer .footer_nav .area:first-of-type {
  margin-bottom: 34px;
  /*p*/
}
@media only screen and (max-width:768px) {
  footer .footer_nav .area:first-of-type {
    display: none;
  }
}
footer .footer_nav .area:first-of-type p {
  position: relative;
  padding-left: 15px;
}
footer .footer_nav .area:first-of-type p:before {
  content: "";
  display: block;
  width: 12px;
  height: 11px;
  background: url("../img/common/ico_home.png") no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 1px;
}
footer .footer_nav .area:first-of-type p a {
  transition: 0.3s;
}
footer .footer_nav .area:first-of-type p a:hover {
  color: #ed0100;
}
footer .footer_nav .area:nth-of-type(2) {
  width: 290px;
  float: left;
  overflow: hidden;
  margin-right: 70px;
  /*p*/
  /*ul:first-of-type*/
  /*ul + ul*/
}
@media only screen and (max-width:768px) {
  footer .footer_nav .area:nth-of-type(2) {
    display: none;
  }
}
footer .footer_nav .area:nth-of-type(2) p {
  border-bottom: 1px solid #606060;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
footer .footer_nav .area:nth-of-type(2) p a {
  transition: 0.3s;
}
footer .footer_nav .area:nth-of-type(2) p a:hover {
  color: #ed0100;
}
footer .footer_nav .area:nth-of-type(2) ul:first-of-type {
  float: left;
  /*li*/
}
footer .footer_nav .area:nth-of-type(2) ul:first-of-type li {
  line-height: 2.8em;
  padding-left: 15px;
  position: relative;
  /*a*/
}
footer .footer_nav .area:nth-of-type(2) ul:first-of-type li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8.7px;
  border-color: transparent transparent transparent #ed0100;
}
footer .footer_nav .area:nth-of-type(2) ul:first-of-type li a {
  transition: 0.3s;
}
footer .footer_nav .area:nth-of-type(2) ul:first-of-type li a:hover {
  color: #ed0100;
}
footer .footer_nav .area:nth-of-type(2) ul:first-of-type ul {
  float: none;
  /*li*/
}
footer .footer_nav .area:nth-of-type(2) ul:first-of-type ul li {
  line-height: 2em;
  padding-left: 0;
  /*a*/
}
footer .footer_nav .area:nth-of-type(2) ul:first-of-type ul li:before {
  content: "";
  display: none;
}
footer .footer_nav .area:nth-of-type(2) ul:first-of-type ul li a {
  color: #ababab;
  transition: 0.3s;
}
footer .footer_nav .area:nth-of-type(2) ul:first-of-type ul li a:hover {
  color: #ffffff;
}
footer .footer_nav .area:nth-of-type(2) ul + ul {
  float: right;
  /*li*/
}
footer .footer_nav .area:nth-of-type(2) ul + ul li {
  line-height: 2.5em;
  position: relative;
  padding-left: 15px;
  /*a*/
}
footer .footer_nav .area:nth-of-type(2) ul + ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8.7px;
  border-color: transparent transparent transparent #ed0100;
}
footer .footer_nav .area:nth-of-type(2) ul + ul li a {
  transition: 0.3s;
}
footer .footer_nav .area:nth-of-type(2) ul + ul li a:hover {
  color: #ed0100;
}
footer .footer_nav .area:nth-of-type(3) {
  width: 162px;
  float: left;
  /*ul li*/
}
@media only screen and (max-width:768px) {
  footer .footer_nav .area:nth-of-type(3) {
    display: none;
  }
}
footer .footer_nav .area:nth-of-type(3) ul li {
  border-bottom: 1px solid #606060;
  padding-bottom: 10px;
  margin-bottom: 30px;
  /*a*/
}
footer .footer_nav .area:nth-of-type(3) ul li a {
  transition: 0.3s;
}
footer .footer_nav .area:nth-of-type(3) ul li a:hover {
  color: #ed0100;
}
footer .footer_nav .area:nth-of-type(4) {
  width: 190px;
  float: right;
  /*p*/
  /*li*/
  /*.other_contents*/
}
@media only screen and (max-width:768px) {
  footer .footer_nav .area:nth-of-type(4) {
    width: 100%;
    float: none;
    font-size: 12px;
  }
}
footer .footer_nav .area:nth-of-type(4) p {
  border-bottom: 1px solid #606060;
  padding-bottom: 10px;
  margin-bottom: 20px;
  /*a*/
}
@media only screen and (max-width:768px) {
  footer .footer_nav .area:nth-of-type(4) p {
    display: none;
  }
}
footer .footer_nav .area:nth-of-type(4) p a {
  transition: 0.3s;
}
footer .footer_nav .area:nth-of-type(4) p a:hover {
  color: #ed0100;
}
footer .footer_nav .area:nth-of-type(4) ul {
  margin-bottom: 25px;
}
@media only screen and (max-width:768px) {
  footer .footer_nav .area:nth-of-type(4) ul {
    display: none;
  }
}
footer .footer_nav .area:nth-of-type(4) li {
  line-height: 2.5em;
  padding-left: 15px;
  position: relative;
  /*a*/
}
footer .footer_nav .area:nth-of-type(4) li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8.7px;
  border-color: transparent transparent transparent #ed0100;
}
footer .footer_nav .area:nth-of-type(4) li a {
  transition: 0.3s;
}
footer .footer_nav .area:nth-of-type(4) li a:hover {
  color: #ed0100;
}
footer .footer_nav .area:nth-of-type(4) .other_contents {
  /*li*/
  /*li a*/
}
@media only screen and (max-width:768px) {
  footer .footer_nav .area:nth-of-type(4) .other_contents {
    display: block;
  }
}
footer .footer_nav .area:nth-of-type(4) .other_contents li {
  line-height: 1.8em;
  padding-left: 0;
}
footer .footer_nav .area:nth-of-type(4) .other_contents li:before {
  content: "";
  display: none;
}
@media only screen and (max-width:768px) {
  footer .footer_nav .area:nth-of-type(4) .other_contents li {
    text-align: center;
    line-height: 2em;
  }
}
footer .footer_nav .area:nth-of-type(4) .other_contents li a {
  color: #ababab;
  transition: 0.3s;
}
footer .footer_nav .area:nth-of-type(4) .other_contents li a:hover {
  color: #ffffff;
}
footer p small {
  display: block;
  width: 100%;
  min-width: 1080px;
  text-align: center;
  font-size: 12px;
  color: #ababab;
  padding: 30px 0;
  border-top: 1px solid #606060;
}
@media only screen and (max-width:768px) {
  footer p small {
    font-size: 11px;
    min-width: 100%;
    padding: 19px 0 19px 10px;
    text-align: left;
  }
}

/*footer*/
.fixedsticky {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
}

/* When position: sticky is supported but native behavior is ignored */
.fixedsticky-withoutfixedfixed .fixedsticky-off,
.fixed-supported .fixedsticky-off {
  position: static;
}

.fixedsticky-withoutfixedfixed .fixedsticky-on,
.fixed-supported .fixedsticky-on {
  position: fixed;
}

.fixedsticky-dummy {
  display: none;
}

.fixedsticky-on + .fixedsticky-dummy {
  display: block;
}/*# sourceMappingURL=common.css.map */