@charset "utf-8";

@import url(ress.css);
@import url(base.css);



/*ボックスモデル*/
html {
  height: 100%;
}
body {
  height: 100vh;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
main {
  background-color: #FFFFFF;
  flex: 1 0 auto;
}
header,
main,
footer {
  -webkit-transition: 0.5s ease-in-out;
     -moz-transition: 0.5s ease-in-out;
       -o-transition: 0.5s ease-in-out;
          transition: 0.5s ease-in-out;
}
main .content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: auto;
  margin: 0 auto 30px auto;
}
main.home .content {
  margin: 30px auto;
}
main .content .inner article,
main .content article:not(:last-child) {
  margin-bottom: 30px;
}

body:not(.home) #top_img #pagetitle {
}
body.home #top_img {
}
body:not(.home) #top_img {
}
body:not(.home) .page_content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
body main section .page_content .main_area h3 {
  color:  #0071BC;
  border-bottom: 1px dotted #979797;
  font-size: 1.3em;
  line-height: 1em;
  padding-bottom: 5px;
}
body main section .page_content .main_area h3::before {
  background-color: #0071BC;
  border-radius: 50%;
  content: '';
  display: inline-table;
  width: 13px;
  height: 13px;
  margin-right: 3px;
  vertical-align: top;
}
/*tab*/
@media (min-width: 767px) {
  body.home #top_img {
  }
  main {
    background-position: right calc(100% + 207px);
    background-size: 80%;
    flex: 1 0 auto;
  }
  main.home .content {
    margin: 60px auto;
  }
  main:not(.home) .content {
    margin: 0 auto 60px auto;
  }
  main .content .inner article,
  main .content article:not(:last-child) {
    margin-bottom: 30px;
  }
  body .page_content {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  body .page_content .main_area {
  }
  body .page_content aside {
  }
  body main section .page_content .main_area h3 {
    color:  #0071BC;
    border-bottom: 1px dotted #979797;
    font-size: 1.4em;
    line-height: 1em;
    padding-bottom: 5px;
  }
  body main section .page_content .main_area h3::before {
    background-color: #0071BC;
    border-radius: 50%;
    content: '';
    display: inline-table;
    width: 18px;
    height: 18px;
    margin-right: 3px;
    vertical-align: top;
  }
}
/*pc*/
@media (min-width: 930px) {
  body.home #top_img {
  }
  main {
    background-position: right calc(100% + 207px);
    flex: 1 0 auto;
  }
  main.home .content {
    margin: 60px auto;
  }
  main:not(.home) .content {
    margin: 0 auto 60px auto;
  }
  main .content .inner article,
  main .content article:not(:last-child) {
    margin-bottom: 60px;
  }
  main .content .inner article.pagehead {
    margin-bottom: 40px;
  }
  body main .content .inner .page_content {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  body main .content .inner .page_content .main_area {
    width: calc(1028px - 165px - 20px);
  }
  body main section .page_content .main_area h3 {
    color:  #0071BC;
    border-bottom: 1px dotted #979797;
    font-size: 2rem;
    line-height: 1em;
    padding-bottom: 10px;
  }
  body main section .page_content .main_area h3::before {
    width: 20px;
    height: 20px;
  }
  body main .content .inner .page_content aside {
    width: 165px;
    height: auto;
  }
}

span {
  color: inherit;
  font-size:inherit;
  font-weight: inherit;
  line-height: inherit;
}
footer {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

/*基本*/
.center {
  text-align: center;
  margin: 0 auto;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.float_left {
  float: left;
  margin-right: 10px;
}
.float_right {
  float: right;
  margin-left: 10px !important;
}
ul.list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
ul.list li,
body.news main.news .main_area article ul li {
  background: url(../images/arrow_list.svg) 0 center no-repeat;
  background-size: 14px;
  list-style: none;
  list-style-position: inside;
  padding-left: 16px;
}
body.news main.news .main_area nav ul li {
  background: inherit;
  background-size: 0;
  list-style: none;
  list-style-position: inherit;
  padding-left: inherit;
}
ul.list li:not(:last-child) {
  margin-right: 20px;
}
@media (max-width: 699px) {
  .float_left,
  .float_right {
    display: block;
    float: none;
    margin: 10px 0 !important;
    text-align: center;
    width: 100%;
    height: auto;
  }
}
/*tab+pc*/
@media (min-width: 767px) {
  ul.list {
    display: block;
  }
  ul.list li:not(:last-child) {
    margin-right: none;
  }
}
/*clearfix*/
.clearfix:before,
.clearfix:after{
  content:"";
  display: table;
}
.clearfix:after{
  clear:both;
}


/*共通*/
/* タイトルh2,h3 */
main section h2 {
  color: #0071BC;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1em;
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}
main section h2::before,
main section h2::after {
  content: "";
  flex-grow: 1;
  height: 2px;
  background: #0071BC;
  display: block;
}
main section h2::before {
  margin-right: .4em;
}
main section h2::after {
  margin-left: .4em;
}
main section h3 {
  color: #4A4A4A;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1em;
  margin-bottom: 20px;
}
/*tab*/
@media (min-width: 767px) {
  main section h2 {
    color: #0071BC;
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1em;
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
  }
  main section h2::before,
  main section h2::after {
    content: "";
    flex-grow: 1;
    height: 2px;
    background: #0071BC;
    display: block;
  }
  main section h2::before {
    margin-right: .4em;
  }
  main section h2::after {
    margin-left: .4em;
  }
  main section h3 {
    font-size: 2rem;
  }
}
/*pc*/
@media (min-width: 930px) {
  main section h2 {
    color: #0071BC;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1em;
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
  }
  main section h2::before,
  main section h2::after {
    content: "";
    flex-grow: 1;
    height: 2px;
    background: #0071BC;
    display: block;
  }
  main section h2::before {
    margin-right: .4em;
  }
  main section h2::after {
    margin-left: .4em;
  }
  main section h3 {
    font-size: 2.4rem;
  }
}

/* ボタン */
.btn_more.blue a:link,
.btn_more.blue a:visited,
.btn_more.blue a:hover,
.btn_more.blue button[type="submit"],
button.btn_more.blue span,
button.disabled span,
a.gocart span {
  background: url(../images/arrow_right.svg) calc(100% - 10px) center no-repeat #0071BC;
  border-radius: 15px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
  color: #FFFFFF;
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  /* width: auto; */
  height: 30px;
  opacity: 1;
}
.btn_more.blue a:hover,
.btn_more.blue a:active,
.btn_more.blue button[type="submit"]:hover,
.btn_more.blue button[type="submit"]:active,
button.btn_more.blue span:hover,
button.btn_more.blue span:active,
button.disabled span,
a.gocart span:hover,
a.gocart span:active {
  opacity: .5;
}
button.btn_more.blue.add span,
button.disabled span {
  background: url(../images/icon_add.svg) calc(100% - 10px) center no-repeat #0071BC;
  font-weight: normal;
  padding: 0 50px 0 40px;
  margin: 0 3px 10px 3px;
}
button.btn_more.blue.add span:active,
a.gocart span:active {
  box-shadow: none;
  transform: translateY(3px);
}
a.gocart {
  text-decoration: none;
}
a.gocart span {
  background: url(../images/icon_cart.svg) 15px center no-repeat #0071BC !important;
  padding: 0 40px 0 50px;
  margin: 0 3px 10px 3px;
  width: 162px;
}
.btn_more.white a:link,
.btn_more.white a:visited,
.btn_more.white a:hover {
  background: url(../images/icon_arrow_r_blue.svg) calc(100% - 10px) center no-repeat #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
  color: #0071BC;
  display: block;
  font-size: 1.2rem;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  width: auto;
  height: 30px;
  opacity: 1;
}
.btn_more.white.mail a {
  background: url(../images/icon_mail_blue.svg) 15px center no-repeat #FFFFFF;
}
.btn_more.white a:hover,
.btn_more.white a:active {
  opacity: .5;
}
.btn_more.glay a:link,
.btn_more.glay a:visited,
.btn_more.glay a:hover {
  background: url(../images/arrow_close.svg) calc(100% - 10px) center no-repeat #B5B5B6;
  border-radius: 15px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
  color: #FFFFFF;
  display: block;
  font-size: 1.2rem;
  line-height: 30px;
  margin-top: 10px;
  text-align: center;
  text-decoration: none;
  width: auto;
  height: 30px;
  opacity: 1;
}
.btn_more.glay.mail a {
  background: url(../images/icon_mail.svg) 15px center no-repeat #B5B5B6;
}
.btn_more.glay a:hover,
.btn_more.glay a:active {
  opacity: .5;
}
.btn_more.glay a:active {
  box-shadow: none;
  transform: translateY(3px);
}
.btn_close.glay a:link,
.btn_close.glay a:visited,
.btn_close.glay a:hover {
  background: url(../images/arrow_close.svg) calc(100% - 10px) center no-repeat #B5B5B6;
  border-radius: 15px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
  color: #FFFFFF;
  display: block;
  font-size: 1.2rem;
  line-height: 30px;
  margin-top: 10px;
  text-align: center;
  text-decoration: none;
  width: auto;
  height: 30px;
  opacity: 1;
}
.btn_close.glay a:hover,
.btn_close.glay a:active {
  opacity: .5;
}
form.mfpcart button,
form.mfpcart a.gocart {
  display: inline-flex;
  flex-direction: row;
}
/*tab*/
@media (min-width: 767px) {
  .btn_more.blue a:link,
  .btn_more.blue a:visited,
  .btn_more.blue a:hover,
  .btn_more.blue button[type="submit"],
  button.btn_more.blue span,
  button.disabled span,
  a.gocart span {
    background: url(../images/arrow_right.svg) calc(100% - 10px) center no-repeat #0071BC;
    border-radius: 15px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    color: #FFFFFF;
    display: block;
    font-size: 1.4rem;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    /* width: auto; */
    height: 30px;
    opacity: 1;
  }
  .btn_more.blue a:hover,
  .btn_more.blue a:active,
  .btn_more.blue button[type="submit"]:hover,
  .btn_more.blue button[type="submit"]:active,
  button.btn_more.blue span:hover,
  button.btn_more.blue span:active,
  button.disabled span,
  a.gocart span:hover,
  a.gocart span:active {
    opacity: .5;
  }
  .btn_more.blue a:active {
    box-shadow: none;
    transform: translateY(3px);
  }
  .btn_more.white a:link,
  .btn_more.white a:visited,
  .btn_more.white a:hover {
    background: url(../images/icon_arrow_blue.svg) calc(100% - 10px) center no-repeat #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    color: #0071BC;
    display: block;
    font-size: 1.4rem;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    width: auto;
    height: 30px;
    opacity: 1;
  }
  .btn_more.white a:hover,
  .btn_more.white a:active {
    opacity: .5;
  }
  .btn_more.white a:active {
    box-shadow: none;
    transform: translateY(3px);
  }
  .btn_more.white.mail a {
    background: url(../images/icon_mail_blue.svg) 15px center no-repeat #FFFFFF;
  }
  .btn_more.glay a:link,
  .btn_more.glay a:visited,
  .btn_more.glay a:hover {
    background: url(../images/arrow_close.svg) calc(100% - 10px) center no-repeat #B5B5B6;
    border-radius: 15px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    color: #FFFFFF;
    display: block;
    font-size: 1.4rem;
    line-height: 30px;
    margin-top: 10px;
    text-align: center;
    text-decoration: none;
    width: auto;
    height: 30px;
    opacity: 1;
  }
  .btn_more.glay.mail a {
    background: url(../images/icon_mail.svg) 15px center no-repeat #B5B5B6;
  }
  .btn_more.glay a:hover,
  .btn_more.glay a:active {
    opacity: .5;
  }
  .btn_more.glay a:active {
    box-shadow: none;
    transform: translateY(3px);
  }
  .btn_close.glay a:link,
  .btn_close.glay a:visited,
  .btn_close.glay a:hover {
    background: url(../images/arrow_close.svg) calc(100% - 10px) center no-repeat #B5B5B6;
    color: #FFFFFF;
    display: block;
    border-radius: 15px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    color: #FFFFFF;
    display: block;
    font-size: 1.4rem;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    width: auto;
    height: 30px;
    opacity: 1;
  }
  .btn_close.glay a:hover,
  .btn_close.glay a:active {
    opacity: .5;
  }
  a.gocart span {
    background: url(../images/icon_cart.svg) 15px center no-repeat #0071BC !important;
    padding: 0 40px 0 50px;
    margin: 0 3px 10px 3px;
    width: 174px;
  }
}
/*pc*/
@media (min-width: 930px) {
  .btn_more.blue a:link,
  .btn_more.blue a:visited,
  .btn_more.blue a:hover,
  .btn_more.blue button[type="submit"],
  button.btn_more.blue span,
  button.disabled span,
  a.gocart span {
    background: url(../images/arrow_right.svg) calc(100% - 10px) center no-repeat #0071BC;
    border-radius: 18px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    color: #FFFFFF;
    display: block;
    font-size: 1.6rem;
    line-height: 36px;
    text-align: center;
    text-decoration: none;
    /* width: auto; */
    height: 36px;
    opacity: 1;
  }
  .btn_more.blue a:hover,
  .btn_more.blue a:active,
  .btn_more.blue button[type="submit"]:hover,
  .btn_more.blue button[type="submit"]:active,
  button.btn_more.blue span:hover,
  button.btn_more.blue span:active,
  button.disabled span,
  a.gocart span:hover,
  a.gocart span:active {
    opacity: .5;
  }
  .btn_more.blue a:active {
    box-shadow: none;
    transform: translateY(3px);
  }
  .btn_more.white a:link,
  .btn_more.white a:visited,
  .btn_more.white a:hover {
    background: url(../images/icon_arrow_blue.svg) calc(100% - 10px) center no-repeat #FFFFFF;
    border-radius: 18px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    color: #0071BC;
    display: block;
    font-size: 1.6rem;
    line-height: 36px;
    text-align: center;
    text-decoration: none;
    width: auto;
    height: 36px;
    opacity: 1;
  }
  .btn_more.white a:hover,
  .btn_more.white a:active {
    opacity: .5;
  }
  .btn_more.white a:active {
    box-shadow: none;
    transform: translateY(3px);
  }
  .btn_more.white.mail a {
    background: url(../images/icon_mail_blue.svg) 15px center no-repeat #FFFFFF;
  }
  .btn_more.glay a:link,
  .btn_more.glay a:visited,
  .btn_more.glay a:hover {
    background: url(../images/arrow_close.svg) calc(100% - 10px) center no-repeat #B5B5B6;
    border-radius: 18px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    color: #FFFFFF;
    display: block;
    font-size: 1.6rem;
    line-height: 36px;
    margin-top: 10px;
    text-align: center;
    text-decoration: none;
    width: auto;
    height: 36px;
    opacity: 1;
  }
  .btn_more.glay.mail a {
    background: url(../images/icon_mail.svg) 15px center no-repeat #B5B5B6;
  }
  .btn_more.glay a:hover,
  .btn_more.glay a:active {
    opacity: .5;
  }
  .btn_more.glay a:active {
    box-shadow: none;
    transform: translateY(3px);
  }
  .btn_close.glay a:link,
  .btn_close.glay a:visited,
  .btn_close.glay a:hover {
    background: url(../images/arrow_close.svg) calc(100% - 10px) center no-repeat #B5B5B6;
    color: #FFFFFF;
    border-radius: 18px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    display: block;
    font-size: 1.6rem;
    line-height: 36px;
    text-align: center;
    text-decoration: none;
    width: auto;
    height: 36px;
    opacity: 1;
  }
  .btn_close.glay a:hover,
  .btn_close.glay a:active {
    opacity: .5;
  }
  a.gocart span {
    width: 186px;
  }
}


/*--------------------------- ヘッダー ---------------------------*/
/*sp*/
header {
  background-color: #0071BC;
  width: 100%;
  height: auto;
}
header #headtop {
  background-color: #9B9B9B;
  display: block;
  height: 20px;
  width: 100%;
  padding: 0 5px;
}
header #headtop .inner {
  color: #FFFFFF;
  width: 100%;
}
header #headtop h1 {
  font-size: 1rem;
  font-weight: normal;
  line-height: 20px;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
header #headtop nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
header #headtop nav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: center;
  align-items: center;
  list-style: none;
  position: absolute;
  top: 50px;
  right: 55px;
}
header #headtop nav ul li:first-child {
  margin-right: 10px;
}
/*sp*/
@media (max-width: 767px) {
  header #headtop nav ul {
    position: absolute;
    top: 35px;
    right: 45px;
  }
  header #headtop nav ul li.tel a {
    background: url(../images/icon_tel.svg) center center no-repeat #1296FF;
    border-radius: 50%;
    color: #fff;
    display: block;
    font-size: 1rem;
    line-height: 1em;
    text-indent: -9999px;
    text-decoration: none;
    width: 35px;
    height: 35px;
    overflow: hidden;
    position: relative;
  }
}
/* ロゴ周り */
header #head_content .inner {
  width: calc(100% - 10px);
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
}
header #head_content a {
  text-decoration: none;
}
header #head_content a p {
  color: #FFF;
  font-size: 1rem;
}
header #head_content a#company_name p img {
  color: #000000;
  display: block;
  height: 30px;
  width: auto;
  text-decoration: none;
  -webkit-margin-before: 0em !important;
  -webkit-margin-after: 0em !important;
}
header #head_content a#company_name img {
  width: auto;
  height: auto;
}
/* 電話番号周り */
header #head_content #tel_number {
}
header #head_content #tel_number a {
}
header #head_content #tel_number span {
}
header #head_content span {
}
/* メインメニュー */
nav.gnav {
}
nav.gnav ul#main_menu {
}
nav.gnav ul#main_menu::before,
nav.gnav ul#main_menu::after {
  display: block;
}
nav.gnav ul#main_menu li {
  width: 100%;
  margin: 0;
}
nav.gnav ul#main_menu li a {
  display: block;
  width: 100%;
  padding: 10px;
}
nav.gnav ul#main_menu li a:link,
nav.gnav ul#main_menu li a:visited {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1rem;
  text-align: left;
}
nav.gnav ul#main_menu li strong a,
nav.gnav ul#main_menu li a:hover,
nav.gnav ul#main_menu li a:active {
  opacity: 1;
}
/*tab*/
@media (min-width: 767px) {
  header {
    width: 100%;
    height: auto;
    z-index: 100;
    top: 0;
  }
  header #headtop {
    height: 40px;
    width: 100%;
  }
  header #headtop .inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
    padding: 0;
  }
  header #headtop h1 {
    font-size: 1.2rem;
    line-height: 40px;
    text-align: left;
  }
  header #headtop nav {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
  }
  header #headtop nav ul,
  header #headtop nav ul li {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    list-style: none;
    height: 40px;
    position: inherit;
  }
  header #headtop nav ul li:not(:last-child) {
    margin-right: 10px;
  }
  header #headtop nav ul li a {
    color: #fff;
    font-size: 1.2rem;
    /* line-height: 1em; */
    text-decoration: none;
    width: auto;
    /* height: 40px; */
  }
  header #headtop nav ul li a::before {
    content: "";
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    float: left;
    height: 21px;
    margin-right: 5px;
    margin-top: -3.5px;
  }
  header #headtop nav ul li.tel a {
    /* padding-left: calc(14px + 5px); */
  }
  header #headtop nav ul li.tel a::before {
    background-image: url(../images/icon_tel.svg);
    background-size: contain;
    width: 14px;
  }
  header #headtop nav ul li.mail a {
    /* padding-left: calc(31px + 5px); */
  }
  header #headtop nav ul li.mail a::before {
    background-image: url(../images/icon_mail.svg);
    background-size: contain;
    width: 31px;
  }
  header #headtop nav ul li.mitsumori a {
    /* padding-left: calc(22px + 5px); */
  }
  header #headtop nav ul li.mitsumori a::before {
    background-image: url(../images/icon_cart.svg);
    background-size: contain;
    width: 22px;
  }
  /* ロゴ周り */
  header #head_content .inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    width: calc(100% - 10px);
    height: auto;
    margin: 0 auto;
    padding: 10px 0;
  }
  header #head_content a p {
    text-decoration: none;
    color: #FFF;
    font-size: 1.2rem;
  }
  header #head_content a#company_name p img {
    display: block;
    height: 40px;
    width: auto;
    text-decoration: none;
    -webkit-margin-before: 0em !important;
    -webkit-margin-after: 0em !important;
  }
  header #head_content a#company_name img {
    width: auto;
    height: auto;
  }
  /* メインメニュー */
  nav.gnav {
    width: auto;
    height: auto;
  }
  nav.gnav ul#main_menu {
    box-shadow: none;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    width: auto;
  }
  nav.gnav ul#main_menu::before,
  nav.gnav ul#main_menu::after {
    display: none;
  }
  nav.gnav ul#main_menu li {
    width: 90px;
    height: 30px;
    display: block;
  }
  nav.gnav ul#main_menu li.mitsumori {
    display: none;
  }
  nav.gnav ul#main_menu li a:link,
  nav.gnav ul#main_menu li a:visited {
    background-color: inherit;
    border-radius: 20px;
    color: #FFFFFF;
    font-size: 1.4rem;
    line-height: 30px;
    text-align: center;
    padding: 0;
  }
  nav.gnav ul#main_menu li strong a,
  nav.gnav ul#main_menu li a:hover,
  nav.gnav ul#main_menu li a:active {
    background-color: #A2CDFF !important;
    border-radius: 20px;
    color: #0071BC !important;
    font-weight: normal !important;
    opacity: 1;
  }
  nav.gnav ul#main_menu li:not(:nth-child(5)) {
    margin-right: 5px;
  }
}
/*pc*/
@media (min-width: 930px) {
  header {
    width: 100%;
    height: auto;
    z-index: 100;
    top: 0;
  }
  header #headtop {
    height: 50px;
    width: 100%;
  }
  header #headtop .inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 1028px;
    padding: 0;
  }
  header #headtop h1 {
    font-size: 1.4rem;
    line-height: 50px;
    text-align: left;
  }
  header #headtop nav {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
  }
  header #headtop nav ul,
  header #headtop nav ul li {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    list-style: none;
    height: 50px;
    position: inherit;
  }
  header #headtop nav ul li:not(:last-child) {
    margin-right: 20px;
  }
  header #headtop nav ul li a {
    color: #fff;
    font-size: 1.4rem;
    /* line-height: 1em; */
    text-decoration: none;
    width: auto;
    /* height: 50px; */
  }
  header #headtop nav ul li a::before {
    content: "";
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    float: left;
    height: 21px;
    margin-right: 5px;
    margin-top: -1px;
  }
  header #headtop nav ul li.tel a {
    /* padding-left: calc(14px + 5px); */
  }
  header #headtop nav ul li.tel a::before {
    background-image: url(../images/icon_tel.svg);
    background-size: contain;
    width: 14px;
  }
  header #headtop nav ul li.mail a {
    /* padding-left: calc(31px + 5px); */
  }
  header #headtop nav ul li.mail a::before {
    background-image: url(../images/icon_mail.svg);
    background-size: contain;
    width: 31px;
  }
  header #headtop nav ul li.mitsumori a {
    /* padding-left: calc(22px + 5px); */
  }
  header #headtop nav ul li.mitsumori a::before {
    background-image: url(../images/icon_cart.svg);
    background-size: contain;
    width: 22px;
  }
  /* ロゴ周り */
  header #head_content .inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    width: 1030px;
    height: auto;
    margin: 0 auto;
    padding: 20px 0;
  }
  header #head_content a p {
    text-decoration: none;
    color: #FFF;
    font-size: 1.6rem;
  }
  header #head_content a#company_name p img {
    display: block;
    height: 47px;
    width: auto;
    text-decoration: none;
    -webkit-margin-before: 0em !important;
    -webkit-margin-after: 0em !important;
  }
  header #head_content a#company_name img {
    width: auto;
    height: auto;
  }
  /* メインメニュー */
  nav.gnav {
    width: auto;
    height: auto;
  }
  nav.gnav ul#main_menu {
    box-shadow: none;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    width: auto;
    /* height: 1em; */
  }
  nav.gnav ul#main_menu::before,
  nav.gnav ul#main_menu::after {
    display: none;
  }
  nav.gnav ul#main_menu li {
    width: 120px;
    height: 40px;
    display: block;
  }
  nav.gnav ul#main_menu li a:link,
  nav.gnav ul#main_menu li a:visited {
    background-color: inherit;
    border-radius: 20px;
    color: #FFFFFF;
    font-size: 1.6rem;
    line-height: 40px;
    text-align: center;
    padding: 0;
  }
  nav.gnav ul#main_menu li strong a,
  nav.gnav ul#main_menu li a:hover,
  nav.gnav ul#main_menu li a:active {
    background-color: #A2CDFF !important;
    border-radius: 20px;
    color: #0071BC !important;
    font-weight: normal !important;
    opacity: 1;
  }
  nav.gnav ul#main_menu li:not(:nth-child(5n)) {
    margin-right: 20px;
  }
}

/*トップページ*/
#top_img {
  width: 100%;
  height: auto;
}
body.home div.content {
    margin: 0 auto 30px auto;
}
body.home article#search_area {
  width: 100%;
  height: auto;
}
body.home article#search_area form {
  /* background: url(../images/icon_search.svg) 0 0 no-repeat; */
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 20px 0;
}
body.home article#search_area form select {
  width: 80%;
  height: 30px;
  margin-bottom: 10px;
}
body.home article#search_area form input[type="text"] {
  background: #FFFFFF;
  border: 1px solid #979797;
  box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.50);
  border-radius: 100px;
  width: 80%;
  height: 30px;
  margin-bottom: 10px;
  padding: 5px 20px;
}
body.home article#search_area form input[type="submit"] {
  background: url(../images/icon_search.svg) 10px center no-repeat #0071BC;
  background-size: contain;
  border-radius: 18px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
  color: #FFF;
  letter-spacing: 1em;
  font-weight: normal;
  width: 140px !important;
  height: 30px !important;
  padding-left: 1.5em;
}
body.home article#search_area form input[type="submit"]:hover {
  opacity: .5;
}
body.home article#search_area form input[type="submit"]:active {
  box-shadow: none;
  transform: translateY(3px);
}
/* オススメ商品 */
body.home article#recommend {
  /* padding-top: 60px; */
}
body.home article#recommend #recommend-list {
  width: 100%;
  height: auto;
  margin: 0;
}
body.home article#recommend #recommend-list .slick-list {
  width: calc(100% - 70px);
  margin: 0 35px;
}
body.home article#recommend #recommend-list li {
  width: 100% !important;
  height: auto;
  padding-bottom: 5px;
  position: relative;
}
body.home article#recommend #recommend-list li .crop a {
  border: 1px solid #BBBBBB;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
   -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin: 0 auto 10px auto;
  text-align: center;
}
body.home article#recommend #recommend-list li .crop a img {
  max-width: 100%;
  max-height: 100%;
}
body.home article#recommend #recommend-list li h3 {
  margin-bottom: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
}
body.home article#recommend #recommend-list li h3 a {
  font-size: 1.6rem !important;
  font-weight: bold;
  line-height: 1em;
}
body.home article#recommend #recommend-list li p {
  font-size: 1.3rem !important;
  line-height: 1.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
}
body.home article#recommend #recommend-list li p span.price {
  color: #9B9B9B;
  display: block;
  font-size: 1.3rem;
  line-height: 1em;
  margin: 3px 0 5px 0;
  width: 100%;
}
body.home article#recommend #recommend-list li a {
  text-decoration: none;
}
body.home article#recommend #recommend-list li .btn_more.blue a {
  width: calc(100% - 6px);
  margin: 0 3px;
}
/* カテゴリーから探す */
body.home article#categories ul#category-list {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* -webkit-justify-content: space-between;
  justify-content: space-between; */
  list-style: none;
}
body.home article#categories ul#category-list li {
  margin-bottom: 10px;
}
body.home article#categories ul#category-list li a {
  background: url(../images/arrow_blue.svg) calc(100% - 5px) center no-repeat #FFFFFF;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  text-decoration: none;
  padding: 10px 20px 10px 10px;
}
body.home article#categories ul#category-list li a h3 {
  color: #0071BC;
  font-size: 1.8rem;
  font-weight: normal;
  margin-bottom: 10px;
}
body.home article#categories ul#category-list li a p {
  font-size: 1.2rem;
  line-height: 1.2em;
}
body.home article#categories ul#category-list li a img {
  border: 1px solid #D8D8D8;
  height: 60px;
  width: 60px;
  margin-right: 10px;
}
/* インフォメーション */
body.home article#news ul.list,
body.news article#news ul.list {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  width: 100%;
}
body.home article#news ul.list div,
body.news article#news ul.list div {
  display: table-cell;
  padding: 20px;
  vertical-align: middle;
}
body.home article#news ul.list li,
body.news article#news ul.list li {
  background: none;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  list-style-position: inside;
  padding-left: inherit;
}
body.home article#news ul.list li:nth-child(odd),
body.news article#news ul.list li:nth-child(odd) {
  background-color: #EFEFEF;
}
body.home article#news ul.list li:not(:last-child),
body.news article#news ul.list li:not(:last-child) {
  margin-right: 0;
}
body.home article#news ul.list .date,
body.news article#news ul.list .date {
  width: 100%;
  height: 100%;
  padding: 20px 20px 10px;
  white-space: nowrap;
}
body.home article#news ul.list .body,
body.news article#news ul.list .body {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 0 20px 20px;
  width: 100%;
}
body.home article#news ul.list span.label,
body.news article#news ul.list span.label {
  color: #FFF;
  display: block;
  font-size: 1.2rem;
  line-height: 21px;
  margin-right: 10px;
  text-align: center;
  height: 21px;
  width: 80px;
}
body.home article#news ul.list span.label.info,
body.news article#news ul.list span.label.info {
  background-color: #4A90E2;
}
body.home article#news ul.list span.label.newproduct,
body.news article#news ul.list span.label.newproduct {
  background-color: #7BBC35;
}
body.home article#news ul.list .body a,
body.news article#news ul.list .body a {
  display: block;
  width: 100%;
}
/*sp〜tab*/
@media (min-width: 414px) and (max-width: 767px) {
  /* オススメ商品 */
  body.home article#recommend {
    /* padding-top: 60px; */
  }
  body.home article#recommend #recommend-list {
    width: calc(100% - 45px);
    height: auto;
    margin: 0 calc(45px / 2);
  }
  body.home article#recommend #recommend-list .slick-list {
    width: 100%;
    margin: 0 auto 0 3px;
  }
  body.home article#recommend #recommend-list li {
    width: calc(100% - 10px) !important;
    height: auto;
    margin-right: 10px;
    padding-bottom: 5px;
  }
  body.home article#recommend #recommend-list li .crop {
    /* height: 160px; */
  }
  body.home article#recommend #recommend-list li img {
    /* border: 1px solid #BBBBBB;
    margin-bottom: 5px;
    width: 100% !important;
    height: 160px; */
  }
  body.home article#recommend #recommend-list li h3 {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1em;
    margin-bottom: 0;
  }
  body.home article#recommend #recommend-list li p {
    font-size: 1.3rem;
    line-height: 1.2em;
  }
  body.home article#recommend #recommend-list li p span.price {
    color: #9B9B9B;
    display: block;
    font-size: 1.2rem;
    line-height: 1em;
    margin: 3px 0 5px 0;
    width: 100%;
  }
  body.home article#recommend #recommend-list li a {
    text-decoration: none;
  }
}
/*tab*/
@media (min-width: 767px) {
  #top_img {
    margin-top: 0;
  }
  body.home div.content {
      margin: 0 auto 30px auto;
  }
  body.home article#search_area {
    width: 100%;
    height: auto;
  }
  body.home article#search_area form {
    background: url(../images/icon_search.svg) 0 0 no-repeat;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 20px 0;
  }
  body.home article#search_area form select {
    width: 220px;
    height: 36px;
    margin-left: 46px;
  }
  body.home article#search_area form input[type="text"] {
    background: #FFFFFF;
    border: 1px solid #979797;
    box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.50);
    border-radius: 100px;
    width: 320px;
    height: 36px;
    padding: 5px 20px;
  }
  body.home article#search_area form input[type="submit"] {
    background-color: #0071BC;
    background-image: none;
    border-radius: 18px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    color: #FFF;
    letter-spacing: 1em;
    font-weight: normal;
    width: 140px !important;
    height: 36px !important;
    padding-left: 1.2em;
  }
  body.home article#search_area form input[type="submit"]:hover {
    opacity: .5;
  }
  body.home article#search_area form input[type="submit"]:active {
    box-shadow: none;
    transform: translateY(3px);
  }
  /* オススメ商品 */
  body.home article#recommend {
    /* padding-top: 60px; */
  }
  body.home article#recommend #recommend-list {
    width: calc(100% - 45px);
    height: auto;
    margin: 0 calc(45px / 2);
  }
  body.home article#recommend #recommend-list .slick-list {
    width: 100%;
    margin: 0 auto 0 3px;
  }
  body.home article#recommend #recommend-list li {
    width: calc(100% - 10px) !important;
    height: auto;
    margin-right: 10px;
    padding-bottom: 5px;
  }
  body.home article#recommend #recommend-list li .crop {
    /* height: 180px; */
  }
  body.home article#recommend #recommend-list li img {
    /* border: 1px solid #BBBBBB;
    margin-bottom: 5px;
    width: 100% !important;
    height: 160px; */
  }
  body.home article#recommend #recommend-list li h3 {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1em;
    margin-bottom: 0;
  }
  body.home article#recommend #recommend-list li p {
    font-size: 1.3rem;
    line-height: 1.2em;
  }
  body.home article#recommend #recommend-list li p span.price {
    color: #9B9B9B;
    display: block;
    font-size: 1.2rem;
    line-height: 1em;
    margin: 3px 0 5px 0;
    width: 100%;
  }
  body.home article#recommend #recommend-list li a {
    text-decoration: none;
  }
  /* カテゴリーから探す */
  body.home article#categories ul#category-list li {
    margin-bottom: 20px;
  }
  body.home article#categories ul#category-list li:not(:nth-child(2n)) {
    margin-right: 20px;
  }
  body.home article#categories ul#category-list li a {
  }
  body.home article#categories ul#category-list li a h3 {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  body.home article#categories ul#category-list li a p {
    font-size: 1.3rem;
  }
  body.home article#categories ul#category-list li a img {
    height: 60px;
    width: 60px;
  }
  /* インフォメーション */
  body.home article#news ul.list,
  body.news article#news ul.list {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    width: 100%;
  }
  body.home article#news ul.list div,
  body.news article#news ul.list div {
    display: table-cell;
    padding: 20px;
    vertical-align: middle;
  }
  body.home article#news ul.list li,
  body.news article#news ul.list li {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
  }
  body.home article#news ul.list li:nth-child(odd),
  body.news article#news ul.list li:nth-child(odd) {
    background-color: #EFEFEF;
  }
  body.home article#news ul.list .date,
  body.news article#news ul.list .date {
    width: 175px;
    height: 100%;
    white-space: nowrap;
  }
  body.home article#news ul.list .body,
  body.news article#news ul.list .body {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 20px 20px 20px 0;
    width: calc(100% - 175px);
  }
  body.home article#news ul.list span.label,
  body.news article#news ul.list span.label {
    color: #FFF;
    display: block;
    font-size: 1.2rem;
    line-height: 21px;
    margin-right: 10px;
    text-align: center;
    height: 21px;
    width: 80px;
  }
  body.home article#news ul.list .body a,
  body.news article#news ul.list .body a {
    display: block;
    width: 100%;
  }
}
/*pc*/
@media (min-width: 930px) {
  #top_img {
    margin-top: 0;
  }
  body.home div.content {
      margin: 0 auto 30px auto;
  }
  body.home article#search_area {
    background-image: linear-gradient(-180deg, #F3F4F9 0%, #FFFFFF 50%);
    border-radius: 100px;
    margin-top: -50px;
    position: absolute;
    z-index: 10;
    width: 1028px;
    height: 100px;
  }
  body.home article#search_area form {
    background: url(../images/icon_search.svg) 0 0 no-repeat;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 32px 73px 32px 73px;
  }
  body.home article#search_area form select {
    width: 300px;
    height: 36px;
    margin-left: 56px;
  }
  body.home article#search_area form input[type="text"] {
    background: #FFFFFF;
    border: 1px solid #979797;
    box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.50);
    border-radius: 100px;
    width: 330px;
    height: 36px;
    padding: 5px 20px;
  }
  body.home article#search_area form input[type="submit"] {
    background-color: #0071BC;
    border-radius: 18px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    color: #FFF;
    letter-spacing: 1em;
    font-weight: normal;
    width: 150px !important;
    height: 36px !important;
    padding-left: 1.2em;
  }
  body.home article#search_area form input[type="submit"]:hover {
    opacity: .5;
  }
  body.home article#search_area form input[type="submit"]:active {
    box-shadow: none;
    transform: translateY(3px);
  }
  /* オススメ商品 */
  body.home article#recommend {
    padding-top: 60px;
  }
  body.home article#recommend #recommend-list {
    width: 958px;
    height: auto;
    margin: 0 calc(99px / 2);
  }
  body.home article#recommend #recommend-list .slick-list {
    width: 935px;
    margin: 0;
  }
  body.home article#recommend #recommend-list li {
    width: calc((949px - 40px) / 3) !important;
    height: auto;
    margin-right: 20px;
    padding-bottom: 5px;
  }
  body.home article#recommend #recommend-list li .crop {
    /* height: 200px; */
  }
  body.home article#recommend #recommend-list li img {
    /* border: 1px solid #BBBBBB;
    margin-bottom: 10px;
    height: 190px; */
  }
  body.home article#recommend #recommend-list li h3 {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1em;
    margin-bottom: 5px;
  }
  body.home article#recommend #recommend-list li p {
    font-size: 1.6rem;
    line-height: 1.2em;
  }
  body.home article#recommend #recommend-list li p span.price {
    color: #9B9B9B;
    display: block;
    font-size: 1.4rem;
    line-height: 1em;
    margin: 5px 0 10px 0;
    width: 100%;
  }
  body.home article#recommend #recommend-list li a {
    text-decoration: none;
  }
  /* カテゴリーから探す */
  body.home article#categories ul#category-list li {
    margin-bottom: 20px;
  }
  body.home article#categories ul#category-list li:not(:nth-child(2n)) {
    margin-right: 0;
  }
  body.home article#categories ul#category-list li:not(:nth-child(3n)) {
    margin-right: 20px;
  }
  body.home article#categories ul#category-list li a {
  }
  body.home article#categories ul#category-list li a h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  body.home article#categories ul#category-list li a p {
    font-size: 1.4rem;
  }
  body.home article#categories ul#category-list li a img {
    height: 80px;
    width: 80px;
  }
  /* インフォメーション */
  body.home article#news ul.list,
  body.news article#news ul.list {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    width: 1028px;
  }
  body.home article#news ul.list div,
  body.news article#news ul.list div {
    display: table-cell;
    padding: 20px;
    vertical-align: middle;
  }
  body.home article#news ul.list li,
  body.news article#news ul.list li {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  body.home article#news ul.list li:nth-child(odd),
  body.news article#news ul.list li:nth-child(odd) {
    background-color: #EFEFEF;
  }
  body.home article#news ul.list .date,
  body.news article#news ul.list .date {
    width: 175px;
    height: 100%;
    white-space: nowrap;
  }
  body.home article#news ul.list .body,
  body.news article#news ul.list .body {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 20px 20px 20px 0;
    width: calc(1028px - 175px);
  }
  body.home article#news ul.list span.label,
  body.news article#news ul.list span.label {
    color: #FFF;
    display: block;
    font-size: 1.2rem;
    line-height: 21px;
    margin-right: 10px;
    text-align: center;
    height: 21px;
    width: 80px;
  }
  body.home article#news ul.list .body a,
  body.news article#news ul.list .body a {
    display: block;
    width: calc(1028px - 175px - 90px);
  }
}

/*下層ページ共通*/
article.pagehead {
  margin: 20px 0;
}
nav.pannavi ul {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
nav.pannavi ul li,
nav.pannavi ul li a {
  font-size: 1.2rem !important;
  line-height: 1em;
  text-decoration: none;
}
nav.pannavi ul li:not(:last-child) {
  background: url(../images/arrow_pannavi.svg) right center no-repeat;
  padding-right: 15px;
  margin-right: 5px;
}
main aside h2 {
  background-color: #9B9B9B;
  color: #FFF;
  display: block;
  font-size: 1.6rem !important;
  font-weight: normal;
  line-height: 30px;
  margin-bottom: 0;
}
main aside h2::before,
main aside h2::after {
  content: none;
}
main aside nav.sidemenu ul {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  list-style: none;
  /* -webkit-justify-content: space-between;
  justify-content: space-between; */
  margin-top: 5px;
}
main aside nav.sidemenu ul li ul {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 0 !important;
}
main aside nav.sidemenu ul li {
  background: #FFFFFF;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
  width: calc((100% - 5px) / 2);
  margin-bottom: 5px;
}
main aside nav.sidemenu ul li ul li {
  box-shadow: none;
  width: 100%;
  margin-bottom: 0 !important;
}
main aside nav.sidemenu ul li:nth-child(odd) {
  margin-right: 5px;
}

main aside nav.sidemenu ul li a {
  display: block;
  text-decoration: none;
  width: auto;
  height: auto;
  padding: 5px;
}
main aside nav.sidemenu ul li ul li a {
  background: url(../images/arrow_pannavi.svg) 10px center no-repeat;
  background-size: 8px;
  font-size: 0.9em;
  line-height: 1.2em;
  padding: 5px 5px 5px 20px;
}
main aside nav.sidemenu ul li strong a {
  background: #0071BC;
  color: #FFFFFF;
  font-weight: normal;
}
main aside nav.sidemenu ul li ul li strong a {
  background: url(../images/arrow_pannavi.svg) 10px center no-repeat #0071BC;
  background-size: 8px;
  color: #FFFFFF;
}
/*tab*/
@media (min-width: 767px) {
  article.pagehead {
    margin: 40px 0;
  }
  main aside h2 {
    font-size: 1.6rem;
    line-height: 30px;
  }
  main aside nav.sidemenu ul li {
    width: calc((100% - 15px) / 4);
    /* height: 30px; */
    margin-bottom: 5px;
  }
  main aside nav.sidemenu ul li ul li {
    width: 100%;
    /* height: 30px; */
    margin-bottom: 0 !important;
  }
  main aside nav.sidemenu ul li:not(:nth-child(4n)) {
    margin-right: 5px;
  }
  main aside nav.sidemenu ul li a {
    /* background: #FFFFFF;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    display: inline-flex; */
    font-size: 1.4rem;
    line-height: 20px;
    text-decoration: none;
    /* width: 100%;
    height: 100%;
    padding: 5px; */
  }
}
/*pc*/
@media (min-width: 930px) {
  article.pagehead {
    margin: 60px 0;
  }
  main aside h2 {
    font-size: 2rem;
    line-height: 40px;
  }
  main aside nav.sidemenu ul li {
    width: 100%;
    /* height: 40px; */
    margin-bottom: 5px;
  }
  main aside nav.sidemenu ul li:not(:nth-child(4n)) {
    margin-right: 0;
  }
  main aside nav.sidemenu ul li a {
    /* background: #FFFFFF;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    display: inline-flex; */
    font-size: 1.6rem;
    line-height: 30px;
    text-decoration: none;
    /* width: 100%;
    height: 100%;
    padding: 5px; */
  }
}

/* 会社概要 */
#gmap iframe {
  width: 100%;
  height: 300px;
}
/*tab*/
@media (min-width: 767px) {
}
/*pc*/
@media (min-width: 930px) {
  #gmap iframe {
    width: 100%;
    height: 400px;
  }
}

/* インフォメーション */
body.news .main_area article p img {
  width: 100%;
  height: auto;
  float: none;
  margin-right: 0 !important;
}
body.news nav.pager ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  list-style: none;
  width: auto;
  height: auto;
}
body.news nav.pager ul li {
  border: 1px solid #4A90E2;
}
body.news nav.pager ul li:not(:last-child) {
  margin-right: 10px;
}
body.news nav.pager ul li,
body.news nav.pager ul li a {
  color: #4A90E2;
  display: block;
  font-size: 1.2rem;
  line-height: 25px;
  text-align: center;
  width: 25px;
  height: 25px;
}
body.news nav.pager ul li.now {
  background-color: #4A90E2 !important;
  color: #FFF;
}
body.news nav.pager ul li.prev,
body.news nav.pager ul li.next {
  background: url(../images/arrow_blue.svg) center center no-repeat !important;
  background-size: contain !important;
  border: none !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
}
body.news nav.pager ul li.prev {
  transform: rotateZ(180deg);
}
/*tab*/
@media (min-width: 767px) {
  body.news .main_area article p img {
    width: inherit;
    height: auto;
    float: inherit;
    margin-right: 20px !important;
  }
}
/*pc*/
@media (min-width: 930px) {
  body.news article#news ul.list {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    width: 100%;
  }
  body.news article#news ul.list .body {
    width: calc(100% - 175px);
  }
  body.news article#news ul.list .body a {
    width: 100%;
  }
}

/* 取扱商品 */
body.product .main_area .info {
  text-align: center;
}
body.product .main_area .info .btn_more {
  margin: 0 auto 20px auto;
}
body.product main.product #fs-result-msg h3 {
  display: none;
}
body.product article#product_list ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* -webkit-justify-content: space-between;
  justify-content: space-between; */
  list-style: none;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
body.product article#product_list ul li {
  margin-bottom: 20px;
}
body.product article#product_list ul li a {
  text-decoration: none;
}
/* body.product article#product_list ul li a img {
  border: 1px solid #BBBBBB;
  width: 100%;
  height: auto;
} */
body.product article#product_list ul li:hover {
  opacity: .5;
}
body.product article#product_list ul li {
  width: calc((100% - 5px) / 2);
  height: auto;
  margin-bottom: 10px;
}
body.product article#product_list ul li:not(:nth-child(even)) {
  margin-right: 5px;
}
body.product article#product_list ul li a h3 {
  color: #4A90E2;
  border-bottom: none;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.2em;
  margin-bottom: 5px;
  padding-bottom: 0;
}
body.product article#product_list ul li a h3::before {
  content: none;
}
body.product article#product_list ul li a p {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.2em;
  max-height: calc(1.2em * 3 - 0.2em);
  overflow: hidden;
}
body.product article#product_list ul li a p.price {
  color: #9B9B9B;
}
body.product .main_area .info .btn_more {
  width: 100%;
}
body.product .main_area nav.pager ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  list-style: none;
  width: auto;
  height: auto;
}
body.product .main_area nav.pager #fs-paginate {
  margin-bottom: 40px;
}
body.product .main_area nav.pager ul li {
  border: 1px solid #4A90E2;
}
body.product .main_area nav.pager ul li:not(:last-child) {
  margin-right: 10px;
}
body.product .main_area nav.pager ul li,
body.product .main_area nav.pager ul li a {
  color: #4A90E2;
  display: block;
  font-size: 1.2rem;
  line-height: 25px;
  text-align: center;
  text-decoration: none;
  width: 25px !important;
  height: 25px !important;
}
body.product .main_area nav.pager ul li.now,
body.product .main_area nav.pager ul li.fs-current {
  color: #FFF;
  background-color: #4A90E2;
}
body.product .main_area nav.pager ul li.now a,
body.product .main_area nav.pager ul li.fs-current a {
  color: #FFF;
}
body.product .main_area nav.pager ul li.prev,
body.product .main_area nav.pager ul li.next {
  background: url(../images/arrow_blue.svg) center center no-repeat;
  background-size: contain;
  border: none;
  text-indent: -9999px;
  overflow: hidden;
}
body.product .main_area nav.pager ul li.prev {
  transform: rotateZ(180deg);
}
body.product article#product_details {
  width: 100%;
  height: auto;
}
body.product article#product_details section.pageheader {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
body.product article#product_details section.pageheader h1 {
  border-top: 1px solid #979797;
  border-bottom: 1px solid #979797;
  font-size: 1.8rem;
  line-height: 1em;
  padding: 20px 0;
}
body.product article#product_details section.pageheader .sns ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  list-style: none;
  margin: 10px 0;
}
body.product article#product_details section.pageheader .sns ul li:not(:last-child) {
  margin-right: 5px;
}
body.product article#product_details section.pageheader .sns ul li.copy img {
  cursor: pointer;
}
body.product article#product_details section.pageheader .sns ul li.copy img:hover,
body.product article#product_details section.pageheader .sns ul li.copy img:active {
  opacity: .5;
}
body.product article#product_details section.main_detail {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
body.product article#product_details section.main_detail .photo {
  border: 1px solid #BBBBBB;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
   -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100vmin - 80px);
  height: calc(100vmin - 80px);
  margin: 0 auto 10px auto;
  text-align: center;
  overflow: hidden;
}
body.product article#product_details section.main_detail .photo img {
  max-width: 100%;
  max-height: 100%;
}
body.product article#product_details section.main_detail .read {
  color: #000;
  line-height: 1.2em;
}
body.product article#product_details section.main_detail .item {
  border: 1px solid #979797;
  border-radius: 5px;
  margin: 10px 0 20px 0;
  padding: 10px;
}
body.product article#product_details section.main_detail .item .item_price {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
body.product article#product_details section.main_detail .item .item_price input[type="number"] {
  margin-top: 5px;
  width: 100%;
}
body.product article#product_details section.main_detail .item .num {
  color: #F5A623;
  font-size: 2.4rem;
  font-weight: bold;
}
body.product article#product_details section.main_detail .item .num::after {
  /* content: '円（税別）';
  color: #4A4A4A;
  font-size: 1.2rem;
  font-weight: normal; */
}
body.product article#product_details section.main_detail .more {
  margin-top: 20px;
}
body.product article#product_details section#more_products ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* -webkit-justify-content: space-between;
  justify-content: space-between; */
  list-style: none;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
body.product article#product_details section#more_products ul li {
  width: calc((100% - 5px) / 2);
  height: auto;
  margin-bottom: 10px;
}
body.product article#product_details section#more_products ul li:not(:nth-child(even)) {
  margin-right: 5px;
}
body.product article#product_details section#more_products ul li:hover {
  opacity: .5;
}
body.product article#product_details section#more_products ul li a {
  text-decoration: none;
}
body.product article#product_list ul li a .photo,
body.product article#product_details section#more_products ul li a .photo {
  border: 1px solid #BBBBBB;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
   -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(50vmin - 10px);
  height: calc(50vmin - 10px);
  margin-bottom: 5px;
  text-align: center;
  overflow: hidden;
}
body.product article#product_list ul li a .photo img,
body.product article#product_details section#more_products ul li a .photo img {
  max-width: 100%;
  max-height: 100%;
}
body.product article#product_details section#more_products ul li a h4 {
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.2em;
  margin-bottom: 5px;
  padding-bottom: 0;
}
body.product article#product_details section#more_products ul li a p {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.2em;
  max-height: calc(1.2em * 3 - 0.2em);
  overflow: hidden;
}
body.product article#product_details section#more_products ul li a p.price {
  color: #9B9B9B;
}
/*tab*/
@media (min-width: 767px) {
  body.product .main_area nav.pager #fs-paginate {
    margin-bottom: 60px;
  }
  body.product article#product_list ul li {
    width: calc((100% - 30px) / 4);
    height: auto;
    margin-bottom: 20px;
  }
  body.product article#product_list ul li a h3 {
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.2em;
  }
  body.product article#product_list ul li a p {
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1.2em;
  }
  body.product .main_area .info .btn_more {
    width: 50%;
  }
  body.product article#product_details section.pageheader h1 {
    font-size: 2.2rem;
    line-height: 1em;
  }
  body.product article#product_details section.main_detail {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  body.product article#product_details section.main_detail .summary {
    width: calc(100% - 260px - 10px);
  }
  body.product article#product_details section.main_detail .photo {
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
     -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px;
    width: 260px;
    height: 260px;
    overflow: hidden;
  }
  body.product article#product_details section.main_detail img {
  }
  body.product article#product_details section.main_detail .item {
    padding: 20px;
  }
  body.product article#product_details section.main_detail .item .item_price input[type="number"] {
    margin-top: 0;
    width: 10em;
  }
  body.product article#product_details section.main_detail .item .num::after {
    font-size: 1.3rem;
  }
  body.product article#product_details section.main_detail .more {
    display: block;
    width: 100%;
    height: auto;
  }
  body.product article#product_details section#more_products ul li {
    width: calc((100% - 30px) / 4);
    height: auto;
    margin-bottom: 10px;
  }
  body.product article#product_list ul li:not(:nth-child(4n)) {
    margin-right: 10px;
  }
  body.product article#product_details section#more_products ul li:not(odd) {
    margin-right: 0;
  }
  body.product article#product_details section#more_products ul li:not(:nth-child(4n)) {
    margin-right: 10px;
  }
  body.product article#product_details section#more_products ul li:hover {
    opacity: .5;
  }
  body.product article#product_details section#more_products ul li a {
    text-decoration: none;
  }
  body.product article#product_list ul li a .photo,
  body.product article#product_details section#more_products ul li a .photo {
    border: 1px solid #BBBBBB;
    width: calc(25vmin - 10px);
    height: calc(25vmin - 10px);
    margin-bottom: 5px;
    text-align: center;
    overflow: hidden;
  }
  body.product article#product_list ul li a .photo img,
  body.product article#product_details section#more_products ul li a .photo img {
    max-width: 100%;
    max-height: 100%;
  }
  body.product article#product_details section#more_products ul li a h4 {
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.2em;
  }
  body.product article#product_details section#more_products ul li a p {
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1.2em;
  }
}
/*pc*/
@media (min-width: 930px) {
  body.product .main_area nav.pager #fs-paginate {
    margin-bottom: 80px;
  }
  body.product article#product_list ul li {
    width: calc((100% - 30px) / 4);
    height: auto;
    margin-bottom: 20px;
  }
  body.product article#product_list ul li a h3 {
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.2em;
  }
  body.product article#product_list ul li a p {
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.2em;
  }
  body.product article#product_details section.pageheader h1 {
    font-size: 2.4rem;
    line-height: 1em;
  }
  body.product article#product_details section.main_detail .summary {
    width: calc(100% - 330px - 20px);
  }
  body.product article#product_details section.main_detail .photo {
    border: 1px solid #BBBBBB;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
     -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 20px;
    width: 330px;
    height: 330px;
    overflow: hidden;
    text-align: center;
  }
  body.product article#product_details section.main_detail img {
    /* margin: auto; */
    max-width: 330px;
    max-height: 330px;
  }
  body.product article#product_details section.main_detail .item .num::after {
    font-size: 1.6rem;
  }
  body.product article#product_list ul li a .photo,
  body.product article#product_details section#more_products ul li a .photo {
    border: 1px solid #BBBBBB;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
     -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 203px;
    height: 203px;
    margin-bottom: 5px;
    text-align: center;
    overflow: hidden;
  }
  body.product article#product_list ul li a .photo img,
  body.product article#product_details section#more_products ul li a .photo img {
    max-width: 100%;
    max-height: 100%;
  }
}

/* 取扱メーカー */
/*tab*/
@media (min-width: 767px) {
  nav#categories ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    list-style: none;
  }
  nav#categories ul li,
  nav#categories ul li a {
    font-size: 0.95em !important;
  }
  nav#categories ul li:not(:last-child) {
    margin-right: 20px;
  }
  nav#categories ul li::before {
    content: '▼';
  }
}
/*pc*/
@media (min-width: 930px) {
}

/* フォーム類共通 */
span.hissu {
  background-color: #F5A623;
  border-radius: 10px;
  color: #FFFFFF;
  display: inline-block;
  float: right;
  font-size: 1rem;
  font-weight: 400 !important;
  line-height: 10px;
  padding: 3px 5px;
  transform: translateY(2px);
}
#tel_fax #numbers {
  border: 1px solid #979797;
  border-radius: 5px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
#tel_fax #numbers p {
  padding: 10px;
  text-align: center;
}
#tel_fax #numbers p,
#tel_fax #numbers p a {
  font-size: 2.6rem;
  line-height: 1em;
}
#tel_fax #numbers p.tel {
  border-bottom: 1px dotted #979797;
}
#tel_fax #numbers p span.label {
  color: #FFF;
  display: inline-table;
  font-size: 0.6em;
  line-height: 1em;
  margin-right: 5px;
  padding: 5px 7px;
  transform: translateY(-5px);
}
#tel_fax #numbers p.tel span.label {
  background-color: #4F9B68;
}
#tel_fax #numbers p.fax span.label {
  background-color: #5484BD;
}
#tel_fax #numbers p span.caption {
  display: block;
}
form#mailformpro {
  padding: 0 !important;
}
form#mailformpro table {
  margin-top: 10px;
}
div#mfp_phase_confirm h4 {
  color: #0071BC;
  font-size: 2.4rem;
}
div#mfp_phase_confirm h4::before {
  content: "【";
}
div#mfp_phase_confirm h4::after {
  content: "】";
}
/* table#mfp_confirm_table::after {
  content: '※お見積合計金額には送料・その他手数料は含まれていません。ご注文確定後にお知らせ致します。';
  display: block;
  width: 100%;
  margin-top: 10px;
} */
select#deliverydate {
  margin-bottom: 10px;
}
div.mfp_buttons {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
div.mfp_buttons button:not(:last-child) {
  margin-bottom: 10px;
}
button#mfp_button_send {
  background: url(../images/arrow_right.svg) calc(100% - 10px) center no-repeat #0071BC;
  border-radius: 15px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
  color: #FFFFFF;
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  height: 30px;
  opacity: 1;
}
button#mfp_button_send:hover,
button#mfp_button_send:active {
  opacity: .5;
}
button#mfp_button_send:active {
  box-shadow: none;
  transform: translateY(3px);
}
button#mfp_element_print {
  background: url(../images/icon_printer.svg) 10px center no-repeat #0071BC;
  border-radius: 15px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
  color: #FFFFFF;
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  height: 30px;
  opacity: 1;
  order: -1;
}
button#mfp_element_print:hover,
button#mfp_element_print:active {
  opacity: .5;
}
button#mfp_element_print:active {
  box-shadow: none;
  transform: translateY(3px);
}
button#mfp_button_cancel {
  background: url(../images/arrow_close.svg) calc(100% - 10px) center no-repeat #B5B5B6;
  border-radius: 18px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
  color: #FFFFFF;
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  height: 30px;
  opacity: 1;
}
button#mfp_button_cancel:hover,
button#mfp_button_cancel:active {
  opacity: .5;
}
button#mfp_button_cancel:active {
  box-shadow: none;
  transform: translateY(3px);
}
div.mfp_thanks {
  padding: 0 !important;
}
div#mfp_thanks {
  background-color: #A2CDFF;
  border: 1px solid #0071BC;
  text-align: center;
  /* font-size: 1.8rem; */
  margin-bottom: 20px;
  padding: 10px;
}
div#mfp_thanks strong {
  color: #0071BC;
  font-size: 2rem;
  display: block;
}
/*tab*/
@media (min-width: 767px) {
  #tel_fax #numbers {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  #tel_fax #numbers p {
    width: 50%;
    padding: 20px;
  }
  #tel_fax #numbers p,
  #tel_fax #numbers p a {
    font-size: 2.8rem;
    line-height: 1em;
  }
  #tel_fax #numbers p:not(:last-child) {
    margin-bottom: 0;
  }
  #tel_fax #numbers p.tel {
    border-bottom: none;
    border-right: 1px dotted #979797;
  }
  div.mfp_buttons {
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  div.mfp_buttons button:not(:last-child) {
    margin-bottom: 0;
  }
  table#mfp_confirm_table {
    margin: 10px 0 20px 0;
  }
  /* table#mfp_confirm_table::before {
    content: '<p id="today"><script type="text/javascript"> var theDate=new Date(); document.write(today.getFullYear() + "/" +  today.getMonth() + 1 + "/"+ today.getDate()  + "/" + today.getDay());</script></p>';
  } */
  button#mfp_button_send {
    background: url(../images/arrow_right.svg) calc(100% - 10px) center no-repeat #0071BC;
    border-radius: 15px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    color: #FFFFFF;
    display: block;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    width: calc((100% - 40px) / 3);
    height: 30px;
    opacity: 1;
    order: 2;
  }
  button#mfp_button_send:hover,
  button#mfp_button_send:active {
    opacity: .5;
  }
  button#mfp_button_send:active {
    box-shadow: none;
    transform: translateY(3px);
  }
  button#mfp_element_print {
    background: url(../images/icon_printer.svg) 10px center no-repeat #0071BC;
    border-radius: 15px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    color: #FFFFFF;
    display: block;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    width: calc((100% - 40px) / 3);
    height: 30px;
    opacity: 1;
    order: inherit !important;
  }
  button#mfp_element_print:hover,
  button#mfp_element_print:active {
    opacity: .5;
  }
  button#mfp_element_print:active {
    box-shadow: none;
    transform: translateY(3px);
  }
  button#mfp_button_cancel {
    background: url(../images/arrow_close.svg) calc(100% - 10px) center no-repeat #B5B5B6;
    border-radius: 18px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    color: #FFFFFF;
    display: block;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    width: calc((100% - 40px) / 3);
    height: 30px;
    opacity: 1;
    order: -2;
  }
  button#mfp_button_cancel:hover,
  button#mfp_button_cancel:active {
    opacity: .5;
  }
  button#mfp_button_cancel:active {
    box-shadow: none;
    transform: translateY(3px);
  }
  div#mfp_thanks strong {
    display: inline-block;
    font-size: 3rem;
  }
}
/*pc*/
@media (min-width: 930px) {
  #tel_fax #numbers p,
  #tel_fax #numbers p a {
    font-size: 3rem;
    line-height: 1em;
  }
  button#mfp_button_send {
    background: url(../images/arrow_right.svg) calc(100% - 10px) center no-repeat #0071BC;
    border-radius: 18px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    color: #FFFFFF;
    display: block;
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 36px;
    text-align: center;
    text-decoration: none;
    width: calc((100% - 40px) / 3);
    height: 36px;
    opacity: 1;
  }
  button#mfp_button_send:hover,
  button#mfp_button_send:active {
    opacity: .5;
  }
  button#mfp_button_send:active {
    box-shadow: none;
    transform: translateY(3px);
  }
  button#mfp_element_print {
    background: url(../images/icon_printer.svg) 10px center no-repeat #0071BC;
    border-radius: 18px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    color: #FFFFFF;
    display: block;
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 36px;
    text-align: center;
    text-decoration: none;
    width: calc((100% - 40px) / 3);
    height: 36px;
    opacity: 1;
  }
  button#mfp_element_print:hover,
  button#mfp_element_print:active {
    opacity: .5;
  }
  button#mfp_element_print:active {
    box-shadow: none;
    transform: translateY(3px);
  }
  button#mfp_button_cancel {
    background: url(../images/arrow_close.svg) calc(100% - 10px) center no-repeat #B5B5B6;
    border-radius: 18px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    color: #FFFFFF;
    display: block;
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 36px;
    text-align: center;
    text-decoration: none;
    width: calc((100% - 40px) / 3);
    height: 36px;
    opacity: 1;
  }
  button#mfp_button_cancel:hover,
  button#mfp_button_cancel:active {
    opacity: .5;
  }
  button#mfp_button_cancel:active {
    box-shadow: none;
    transform: translateY(3px);
  }
  div#mfp_thanks strong {
    display: inline-block;
    font-size: 3rem;
  }
}

/* その他 */
/*tab*/
@media (min-width: 767px) {
}
/*pc*/
@media (min-width: 930px) {
}


/* フッター */
footer p#pagetop a {
  bottom: calc(345px - 20px);
  background:  url(../images/btn_pagetop.png) center center no-repeat;
  background-size: cover;
  display: block;
  position: fixed;
  text-indent: 100%;
  overflow: hidden;
  right: 10px;
  width: 40px;
  height: 40px;
  text-indent: 100%;
  opacity: 1;
  overflow: hidden;
  white-space: nowrap;
  z-index: 10;
}
footer p#pagetop a:hover {
  opacity: .5;
}
footer {
  background-color: #0071BC;
}
footer a {
  text-decoration: none;
}
footer ul li {
  list-style: none;
}
footer {
  width: 100%;
  height: auto;
}
footer .inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 10px 0;
}
footer .info {
  color: #FFFFFF;
  width: auto;
  height: auto;
}
footer .info address {
  font-style: normal;
}
footer .info address .company-info {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer .info address img {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5px;
  margin-top: 0;
  height: auto;
  width: 188px;
}
footer .info address p {
  color: #FFFFFF;
  font-size: 1.2rem;
  line-height: 1em;
  margin-bottom: 5px;
  text-align: center;
}
footer .contact .btn_more.white.mail a {
  padding: 0 30px;
  margin-bottom: 10px;
}
footer .contact p.tel,
footer .contact p.fax {
  text-align: center;
}
footer .contact p.tel a,
footer .contact p.fax {
  color: #FFFFFF;
  /* display: inline-block; */
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1em;
}
footer .contact p.tel .label,
footer .contact p.fax .label {
  background-color: #FFF;
  border-radius: 10px;
  color: #0071BC;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 21px;
  height: 21px;
  padding: 0 10px;
  margin-right: 10px;
  transform: translateY(-5px);
}
footer .contact p.tel .business-day {
  display: block;
  margin-bottom: 5px;
}
footer .contact p.tel .business-day,
footer .contact p.tel .business-hours {
  color: #FFFFFF;
  font-size: 1.2rem;
  line-height: 1em;
}
footer nav#page_menu ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
  height: auto;
  margin: 5px 5px 15px 5px;
  width: calc(100% - 10px);
}
footer nav#page_menu ul li {
  background: #FFFFFF;
  background-size: 0;
  text-align: center;
  width: 50%;
  /* margin-bottom: 10px; */
}
footer nav#page_menu ul li:nth-child(2n) {
  /* margin-left: 10px; */
}
footer nav#page_menu ul li a {
  border: 1px solid #0071BC;
  color: #0071BC;
  font-size: 1.2rem;
  display: block;
  width: auto;
  height: auto;
  padding: 5px;
}
footer nav#page_menu ul li:hover,
footer nav#page_menu ul li:active {
  opacity: .5;
}
footer nav#cat_menu ul {
  display: none;
}
footer #copyright {
  background-color: #000000;
  color: #FFFFFF;
  font-size: 1.2rem;
  line-height: 1em;
  text-align: center;
  width: 100%;
  padding: 10px;
}
/*tab*/
@media (min-width: 767px) {
  footer p#pagetop a {
    bottom: calc(261px + 10px);
    width: 50px;
    height: 50px;
  }
  footer {
    width: 100%;
    height: auto;
  }
  footer .inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 20px auto;
    width: calc(100% - 10px);
  }
  footer .info {
    color: #FFFFFF;
    width: 40%;
    height: auto;
  }
  footer .info address .company-info {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
  footer .info address img {
    width: auto;
    height: 35px;
    margin: 0 auto 10px 0;
  }
  footer .info address p {
    color: #FFFFFF;
    font-size: 1.2rem;
    line-height: 1em;
  }
  footer .contact {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  footer .info address p {
    color: #FFFFFF;
    font-size: 1.2rem;
    line-height: 1em;
    margin-bottom: 5px;
    text-align: left;
  }
  footer .contact .btn_more.white.mail a {
    margin-right: 20px;
    padding: 0 30px 0 60px;
  }
  footer .contact p.tel {
    text-align: right;
  }
  footer .contact p.tel a,
  footer .contact p.fax {
    color: #FFFFFF;
    display: inline-block;
    font-size: 2rem;
    font-weight: normal;
    line-height: 1em;
  }
  footer .contact p.tel .label,
  footer .contact p.fax .label {
    background-color: #FFF;
    border-radius: 10px;
    color: #0071BC;
    display: inline-block;
    font-size: 1rem;
    font-weight: normal;
    line-height: 18px;
    height: 18px;
    padding: 0 10px;
    margin-right: 10px;
    transform: translateY(-5px);
  }
  footer .contact p.tel .business-day {
    display: block;
    margin-bottom: 10px;
  }
  footer .contact p.tel .business-day,
  footer .contact p.tel .business-hours {
    color: #FFFFFF;
    font-size: 1.2rem;
    line-height: 1em;
  }
  footer nav#page_menu ul {
    border-bottom: 1px solid #FFF;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: calc(100% - 10px);
    height: auto;
    margin: 0 auto;
    padding-bottom: 10px;
  }
  footer nav#page_menu ul li {
    background: none;
    text-align: left;
    width: calc(100% / 5);
  }
  footer nav#page_menu ul li a {
    color: #FFFFFF;
    font-size: 1.2rem;
    line-height: 1em;
    display: block;
    width: auto;
    height: auto;
    padding: 0;
  }
  footer nav#page_menu ul li a::before {
    background-color: #FFF;
    border-radius: 50%;
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: auto 5px auto 0;
    transform: translateY(2px);
  }
  footer nav#cat_menu ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: calc(100% - 10px);
    height: auto;
    margin: 10px auto 15px auto;
  }
  footer nav#cat_menu ul li a {
    color: #FFF;
    font-size: 1.2rem;
  }
  footer nav#cat_menu ul li a::before {
    background-color: #FFF;
    border-radius: 50%;
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: auto 5px auto 0;
    transform: translateY(2px);
  }
  footer nav#cat_menu ul li ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: calc(1028px - 12px + 5px);
    height: auto;
    margin: 0 auto 0 calc(12px + 5px);
  }
  footer nav#cat_menu ul li ul {
    background: none;
    width: auto;
  }
  footer nav#cat_menu ul li ul li {
    width: calc(100% / 5);
    margin-bottom: 5px;
  }
  footer nav#cat_menu ul li ul a {
    color: #FFFFFF;
    font-size: 1.2rem;
    line-height: 1em;
    display: block;
    height: auto;
  }
  footer nav#cat_menu ul li ul a::before {
    background-color: #A2CDFF;
    border-radius: 50%;
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: auto 5px auto 0;
    transform: translateY(2px);
  }
  footer #copyright {
    background-color: #000000;
    color: #FFFFFF;
    font-size: 1.2rem;
    line-height: 40px;
    text-align: center;
    width: 100%;
    height: 40px;
    padding: 0;
  }
}
/*pc*/
@media (min-width: 930px) {
  footer p#pagetop a {
    bottom: calc(306px + 10px);
  }
  footer {
    width: 100%;
    height: auto;
  }
  footer .inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 20px 0;
    width: 1028px;
  }
  footer .info {
    color: #FFFFFF;
    width: 33%;
    height: auto;
  }
  footer .info address .company-info {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
  footer .info address img {
    width: auto;
    height: 45px;
    margin: 0 auto 10px 0;
  }
  footer .info address p {
    color: #FFFFFF;
    font-size: 1.4rem;
    line-height: 1em;
  }
  footer .contact {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  footer .info address p {
    color: #FFFFFF;
    font-size: 1.2rem;
    line-height: 1em;
    margin-bottom: 5px;
    text-align: center;
  }
  footer .contact .btn_more.white.mail a {
    margin-right: 20px;
    padding: 0 30px 0 60px;
  }
  footer .contact p.tel {
    text-align: right;
  }
  footer .contact p.tel a,
  footer .contact p.fax {
    color: #FFFFFF;
    display: inline-block;
    font-size: 2.4rem;
    font-weight: normal;
    line-height: 1em;
  }
  footer .contact p.tel .label,
  footer .contact p.fax .label {
    background-color: #FFF;
    border-radius: 10px;
    color: #0071BC;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 21px;
    height: 21px;
    padding: 0 10px;
    margin-right: 10px;
    transform: translateY(-5px);
  }
  footer .contact p.tel .business-day {
    display: block;
    margin-bottom: 10px;
  }
  footer .contact p.tel .business-day,
  footer .contact p.tel .business-hours {
    color: #FFFFFF;
    font-size: 1.2rem;
    line-height: 1em;
  }
  footer nav#page_menu ul {
    border-bottom: 1px solid #FFF;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 1028px;
    height: auto;
    margin: 0 auto;
    padding-bottom: 10px;
  }
  footer nav#page_menu ul li {
    background: none;
    text-align: left;
    width: calc(100% / 5);
  }
  footer nav#page_menu ul li a {
    color: #FFFFFF;
    font-size: 1.4rem;
    line-height: 1em;
    display: block;
    width: auto;
    height: auto;
    padding: 0;
  }
  footer nav#page_menu ul li a::before {
    background-color: #FFF;
    border-radius: 50%;
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: auto 5px auto 0;
    transform: translateY(2px);
  }
  footer nav#cat_menu ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 1028px;
    height: auto;
    margin: 10px auto 15px auto;
  }
  footer nav#cat_menu ul li a {
    color: #FFF;
    font-size: 1.4rem;
  }
  footer nav#cat_menu ul li a::before {
    background-color: #FFF;
    border-radius: 50%;
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: auto 5px auto 0;
    transform: translateY(2px);
  }
  footer nav#cat_menu ul li ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: calc(1028px - 14px + 5px);
    height: auto;
    margin: 0 auto 0 calc(14px + 5px);
  }
  footer nav#cat_menu ul li ul {
    background: none;
    width: auto;
  }
  footer nav#cat_menu ul li ul li {
    width: calc(100% / 5);
    margin-bottom: 5px;
  }
  footer nav#cat_menu ul li ul a {
    color: #FFFFFF;
    font-size: 1.4rem;
    line-height: 1em;
    display: block;
    height: auto;
  }
  footer nav#cat_menu ul li ul a::before {
    background-color: #A2CDFF;
    border-radius: 50%;
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: auto 5px auto 0;
    transform: translateY(2px);
  }
  footer #copyright {
    background-color: #000000;
    color: #FFFFFF;
    font-size: 1.2rem;
    line-height: 40px;
    text-align: center;
    width: 100%;
    height: 40px;
    padding: 0;
  }
}
