@charset "utf-8";

@charset "UTF-8";
/* =========================================================
　グロナビテキストsvg要素幅
========================================================= */
/* =========================================================
pxからemに変換する関数
  引数: 数値, または 数値px どちらも pxとして処理する
  返値: 変換値em
========================================================= */
/* =========================================================
定数
========================================================= */
/* =========================================================
汎用
========================================================= */
a,
button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, .3);
}

img {
  max-width: 100%;
  height: auto;
}

.onMouse {
  display: none;
}

a:hover .onMouse,
.isCurrent .onMouse,
.isActive .onMouse {
  display: inline-block;
}

a:hover .outMouse,
.isCurrent .outMouse,
.isActive .outMouse {
  display: none;
}

.inView {
  transition-timing-function: cubic-bezier(0, 0.05, 0.29, 1);
  transition-duration: 1s;
  transition-delay: 0.1s;
  transition-property: transform,opacity;
  transform: translateY(30px);
  -webkit-transform: translateY(30px);
  opacity: 0;
}

.inViewGroup:nth-child(1) {
  transition-delay: 0.1s;
}

.inViewGroup:nth-child(2) {
  transition-delay: 0.15s;
}

.inViewGroup:nth-child(3) {
  transition-delay: 0.2s;
}

.inViewGroup:nth-child(4) {
  transition-delay: 0.25s;
}

.inViewGroup:nth-child(5) {
  transition-delay: 0.3s;
}

.inViewGroup:nth-child(6) {
  transition-delay: 0.35s;
}

.inViewOn {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

/* =========================================================
PREFIX
========================================================= */
/* =========================================================
メディアクエリ
========================================================= */
@media (max-width: 480px) {
  .hiddenXS {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hiddenSM {
    display: none !important;
  }
}

@media (max-width: 1069px) {
  .hiddenMD {
    display: none !important;
  }
}

@media (max-width: 1360px) {
  .hiddenLD {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .visibleSP {
    display: none !important;
  }
  .hiddenPC {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hiddenSP {
    display: none !important;
  }
  .visiblePC {
    display: none !important;
  }
}

/* =========================================================
 DEFAULT STYLE
========================================================= */
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

html, body {
  height: 100%;
}

body {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #4c4c4c;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

p {
  margin-bottom: 1em;
}

ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
}

form label {
  cursor: pointer;
}

@keyframes animScale {
  0% {
    transform: scale(0.9, 0.9) translateX(0);
  }
  40% {
    transform: scale(1.07, 1.07) translateX(0);
  }
  100% {
    transform: scale(1, 1) translateX(0);
  }
}

a {
  text-decoration: none;
  color: #4c4c4c;
}

a:hover, a:active, a:focus {
  color: #b2b2b2;
}

a.fadeAlpha {
  color: #4c4c4c;
}

a img {
  border: none;
}

@media (min-width: 768px) {
  .fadeAlpha.over * {
    opacity: .7;
  }
  .fadeAlpha.out * {
    opacity: 1;
    transition: opacity .2s ease-in;
  }
}

/* =========================================================
 CLEARFIX
========================================================= */
/* =========================================================
 HELPER
========================================================= */
.pt30 {
  padding-top: 30px !important;
}

/* =========================================================
レイアウト
========================================================= */
.containerFluid {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  min-width: 1070px;
}

.container {
  width: 1070px;
  box-sizing: border-box;
  position: relative;
}

.headerRow,
.footerRow {
  max-width: 1360px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.footerRow {
  max-width: none;
  max-width: initial;
}

.searchRow {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  height: 60px;
}

.searchRow > div {
  padding: 10px 30px;
  position: relative;
}

.animateButton {
  display: inline-block;
  position: relative;
  z-index: 0;
  font-size: 1.4rem;
  letter-spacing: .2em;
  line-height: 40px;
  color: #1d1d1d;
}

@media (max-width: 767px) {
  .animateButton {
    line-height: 30px;
    font-size: 1.05rem;
  }
}

.animateButton::before, .animateButton::after {
  z-index: 2;
  content: '';
  height: 1px;
  width: 100%;
  position: absolute;
  background: #b2b2b2;
}

.animateButton::before {
  right: 0;
  top: 0;
}

.animateButton::after {
  left: 0;
  bottom: 0;
}

.animateButton > span {
  padding: 0 47px 0 38px;
  background: url(/image/button_right.svg) no-repeat center right 17px #fff;
  display: inline-block;
}

@media (max-width: 767px) {
  .animateButton > span {
    padding: 0 33px 0 27px;
    background-size: 6px 12px;
  }
}

.animateButton > span::before, .animateButton > span::after {
  z-index: 2;
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  background: #b2b2b2;
}

.animateButton > span::before {
  top: 0;
  left: 0;
}

.animateButton > span::after {
  bottom: 0;
  right: 0;
}

.animateButton:hover {
  color: #1d1d1d;
  outline: none;
}

.animateButton:hover::before, .animateButton:hover::after {
  animation: bdHorizontal .7s ease 0s 1;
  -webkit-animation: bdHorizontal .7s ease 0s 1;
}

.animateButton:hover > span::before,
.animateButton:hover > span::after {
  animation: bdVertical .7s ease 0s 1;
  -webkit-animation: bdVertical .7s ease 0s 1;
}

@keyframes bdHorizontal {
  0% {
    width: 100%;
  }
  5% {
    width: 0;
  }
  20% {
    width: 0;
  }
  60% {
    width: 100%;
  }
}

@keyframes bdVertical {
  0% {
    height: 100%;
  }
  5% {
    height: 0;
  }
  60% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

.secNews .secNewsButton {
  padding-top: 43px;
  text-align: center;
}

@media (max-width: 767px) {
  .secNews .secNewsButton {
    padding-top: 20px;
  }
}

/* =========================================================
ヘッダPC
========================================================= */
@media (min-width: 768px) {
  header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
  }
  .headerMain {
    height: 75px;
    background: #fff;
    border: 1px solid #ccc;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1069px) {
  .headerMain {
    height: 56px;
  }
}

@media (min-width: 768px) {
  .headerLogo {
    width: 97.242px;
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-42%);
    line-height: 0;
  }
  .headerLogo img {
    width: 100%;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1069px) {
  .headerLogo {
    left: 10px;
    width: 87px;
  }
}

@media (min-width: 768px) {
  .headerLogo a.headerSalvaLogo {
    display: block;
    position: absolute;
    left: 126px;
    top: 50%;
    width: 64.836px;
    height: 51.256px;
    transform: translateY(-50%);
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1069px) {
  .headerLogo a.headerSalvaLogo {
    width: 47.97864px;
    height: 37.92944px;
    left: 107px;
  }
}

@media (min-width: 768px) {
  .headerLogo a.headerSalvaLogo img {
    width: 100%;
    height: 100%;
    display: block;
  }
  .headerNav {
    float: right;
  }
  .headerNav > div > ul > li {
    float: left;
    margin-right: 60px;
  }
}

@media (min-width: 768px) and (min-width: 66.875em) and (max-width: 85em) {
  .headerNav > div > ul > li {
    margin-right: 30px;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1069px) {
  .headerNav > div > ul > li {
    margin-right: 25px;
  }
}

@media (min-width: 768px) {
  .headerNav > div > ul > li.catAbout {
    margin-right: 50px;
  }
}

@media (min-width: 768px) and (min-width: 66.875em) and (max-width: 85em) {
  .headerNav > div > ul > li.catAbout {
    margin-right: 30px;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1069px) {
  .headerNav > div > ul > li.catAbout {
    margin-right: 20px;
  }
}

@media (min-width: 768px) {
  .headerNav > div > ul > li.catShop {
    margin-left: 0;
    margin-right: 0;
    position: relative;
  }
  .headerNav > div > ul > li.catShop::before, .headerNav > div > ul > li.catShop::after {
    content: '';
    position: absolute;
    height: 40px;
    width: 1px;
    background: #bbb;
    top: 50%;
    transform: translateY(-41%);
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1069px) {
  .headerNav > div > ul > li.catShop::before, .headerNav > div > ul > li.catShop::after {
    height: 30px;
  }
}

@media (min-width: 768px) {
  .headerNav > div > ul > li.catShop::after {
    right: 0;
  }
  .headerNav > div > ul > li.catShop a {
    padding: 0 10px;
  }
}

@media (min-width: 768px) and (min-width: 66.875em) and (max-width: 85em) {
  .headerNav > div > ul > li.catShop a {
    padding: 0 2px;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1069px) {
  .headerNav > div > ul > li.catShop a {
    padding: 0 2px;
  }
}

@media (min-width: 768px) {
  .headerNav > div > ul > li.catSearch {
    margin-left: 0;
    margin-right: 0;
    position: relative;
  }
}

@media screen and (min-width: 768px) and (min-width: 86.25em) {
  .headerNav > div > ul > li.catSearch::after {
    content: '';
    position: absolute;
    height: 40px;
    width: 1px;
    background: #bbb;
    top: 50%;
    transform: translateY(-41%);
    right: 0;
  }
}

@media (min-width: 768px) {
  .headerNav > div > ul > li.catSearch span {
    padding: 0 10px;
  }
}

@media (min-width: 768px) and (min-width: 66.875em) and (max-width: 85em) {
  .headerNav > div > ul > li.catSearch span {
    padding: 0 2px;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1069px) {
  .headerNav > div > ul > li.catSearch span {
    padding: 0 2px;
  }
}

@media (min-width: 768px) {
  .headerNav > div > ul > li > span,
  .headerNav > div > ul > li > a {
    display: block;
    cursor: pointer;
    position: relative;
  }
  .headerNav > div > ul > li > span > img,
  .headerNav > div > ul > li > a > img {
    height: 73px;
    display: block;
    max-width: none;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1069px) {
  .headerNav > div > ul > li > span > img,
  .headerNav > div > ul > li > a > img {
    height: 54px;
  }
}

@media (min-width: 768px) {
  .headerNav > div > ul > li > span.withUnderbar::after,
  .headerNav > div > ul > li > a.withUnderbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background: #bbb;
    transition: height 0.4s cubic-bezier(0, 0, 0, 1);
  }
  .headerNav > div > ul > li.catSalva > span,
  .headerNav > div > ul > li.catSalva > a {
    display: block;
    cursor: pointer;
    position: relative;
  }
  .headerNav > div > ul > li.catSalva > span > img,
  .headerNav > div > ul > li.catSalva > a > img {
    height: 73px;
    display: block;
    max-width: none;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1069px) {
  .headerNav > div > ul > li.catSalva > span > img,
  .headerNav > div > ul > li.catSalva > a > img {
    height: 54px;
  }
}

@media (min-width: 768px) {
  .headerNav > div > ul > li.catSalva > span.withUnderbar::after,
  .headerNav > div > ul > li.catSalva > a.withUnderbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    background: #00a0e6;
    transition: height 0.4s cubic-bezier(0, 0, 0, 1);
  }
  .headerNav > div > ul > li.isCurrent .withUnderbar::after {
    height: 3px;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1069px) {
  .headerNav > div > ul > li.isCurrent .withUnderbar::after {
    height: 2px;
  }
}

@media (min-width: 768px) {
  .headerNav > div > ul > li:hover .withUnderbar::after {
    height: 3px;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1069px) {
  .headerNav > div > ul > li:hover .withUnderbar::after {
    height: 2px;
  }
}

@media (min-width: 768px) {
  #JSHeaderChildBG {
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid #bbb;
    box-sizing: border-box;
    height: auto;
    max-height: 0;
    margin-top: -1px;
    width: 100%;
  }
  .navDropDown {
    width: 100%;
    position: fixed;
    left: 0;
    overflow: hidden;
    height: auto;
    max-height: 0;
  }
  .navDropDown ul {
    font-size: 0;
    text-align: center;
    vertical-align: top;
  }
  .navDropDown ul li {
    display: inline-block;
    vertical-align: top;
    font-size: 1.5rem;
    line-height: 1.4;
    border-right: 1px solid #bbb;
    box-sizing: border-box;
    padding: 9px;
    position: relative;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1069px) {
  .navDropDown ul li {
    font-size: 1.3rem;
    padding: 7px;
  }
}

@media (min-width: 768px) {
  .navDropDown ul li:first-child {
    border-left: 1px solid #bbb;
  }
  .navDropDown ul li a {
    width: 174px;
    height: 163px;
    display: table;
    background: url(/image/arrow_right.svg) no-repeat center right 9px;
    background-size: 9.1px 16.7px;
    transition: background-color .2s;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1069px) {
  .navDropDown ul li a {
    width: 130.5px;
    height: 122.25px;
    background-position: center right 6px;
    background-size: 6.37px 11.69px;
  }
}

@media (min-width: 768px) {
  .navDropDown ul li a:hover, .navDropDown ul li a:focus {
    color: #1d1d1d;
    background-color: #e5e5e5;
  }
  .navDropDown ul li a span {
    display: table-cell;
    vertical-align: middle;
    background-repeat: no-repeat;
  }
  .navDropDown ul li.isCurrent a {
    background-color: #e5e5e5;
  }
  .navDropDown ul.navSubAbout li a {
    width: 125px;
    height: 135px;
    font-size: 1.3rem;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1069px) {
  .navDropDown ul.navSubAbout li a {
    width: 85px;
    height: 103.95px;
    font-size: 10px;
  }
}

@media (min-width: 768px) {
  .SPText {
    display: none;
  }
  .navSubItemCat {
    border-left: none !important;
    background-position: left center;
    background-repeat: no-repeat;
  }
  .navSubItemCatHome {
    width: 144px;
    height: 181px;
    background-image: url(/image/subcat_home.svg);
    margin-left: 20px;
  }
  .navSubItemCatMed {
    width: 232px;
    height: 181px;
    background-image: url(/image/subcat_med.svg);
    margin-left: 20px;
  }
  .navSubItemCatComp {
    width: 160px;
    height: 153px;
    background-image: url(/image/subcat_comp.svg);
    background-position: center center;
    background-size: 66px auto;
    margin-left: 20px;
  }
  .navSubItemSalva {
    background-image: url(/image/logo_salva.svg);
    background-position: center bottom 29px;
    padding-bottom: 27px;
  }
  .navSubItemKizu {
    background-image: url(/image/logo_kizu.svg);
    background-position: center bottom 46px;
    padding-bottom: 27px;
  }
  .navSubItemKarada {
    background-image: url(/image/logo_familycare.svg);
    background-position: center bottom 42px;
    padding-bottom: 42px;
  }
  .navSubItemHomeInfo span {
    display: inline-block !important;
    margin-bottom: 5px;
    font-size: 1.2rem;
  }
  .navSubItemMed {
    background-image: url(/image/logo_medialproducts.svg);
    background-position: center bottom 50px;
    padding-bottom: 39px;
  }
  .navSubItemKaigo {
    background-image: url(/image/logo_healthcareproducts.svg);
    background-position: center bottom 50px;
    padding-bottom: 39px;
  }
  .navSubItemKaigoInfo {
    padding-bottom: 16px;
  }
  .navSubItemKaigoInfo span {
    display: inline-block !important;
    margin-bottom: 5px;
    font-size: 1.2rem;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1069px) {
  .navSubItemCat {
    background-position: center center;
  }
  .navSubItemCatHome {
    width: 140px;
    height: 136.25px;
    background-size: 83.8865px 57.8px;
  }
  .navSubItemCatMed {
    width: 200px;
    height: 136.25px;
    background-size: 156.6125px 56.8395px;
  }
  .navSubItemCatComp {
    width: 123px;
    height: 117px;
    background-size: 56.1px auto;
  }
  .navSubItemSalva {
    background-position: center bottom 20.3px;
    background-size: 39.78px 31.45px;
    padding-bottom: 25px;
  }
  .navSubItemKizu {
    background-position: center bottom 32.2px;
    background-size: 91.8px 17px;
    padding-bottom: 25px;
  }
  .navSubItemKarada {
    background-position: center bottom 30px;
    background-size: 70.55px 20.4px;
    padding-bottom: 45px;
  }
  .navSubItemKHomeInfo span {
    font-size: 1rem;
  }
  .navSubItemMed {
    background-position: center bottom 35px;
    background-size: 66.3px 20.4px;
    padding-bottom: 33px;
  }
  .navSubItemKaigo {
    background-position: center bottom 35px;
    background-size: 70.55px 20.4px;
    padding-bottom: 33px;
  }
  .navSubItemKaigoInfo {
    padding-bottom: 14px;
  }
  .navSubItemKaigoInfo span {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .searchClose {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 30px;
    top: 0;
    background: url(/image/close.svg) no-repeat center center;
    cursor: pointer;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1069px) {
  .searchClose {
    background-size: 20px 20px;
  }
}

@media (min-width: 768px) {
  .searchForm {
    margin-right: 80px;
    margin-left: 80px;
  }
  .searchForm .cse .gsc-control-cse, .searchForm .gsc-control-cse {
    padding: 0;
    border: none;
    background-color: transparent;
  }
  .searchForm .gsc-search-button {
    display: none;
  }
  .searchForm .gsc-input {
    padding: 0;
  }
  .searchForm .gsc-input-box {
    border: none;
    background: transparent;
  }
  .searchForm .gsib_b {
    display: none;
  }
  .searchForm .gsc-search-box .gsc-input > input:hover,
  .searchForm .gsc-input-box-hover {
    border: none;
    box-shadow: none;
    outline: none;
  }
  .searchForm .gsc-search-box .gsc-input > input:focus,
  .searchForm .gsc-input-box-focus {
    border: none;
    box-shadow: none;
    outline: none;
  }
  .searchForm input.gsc-input {
    font-size: 2.3rem;
    padding: 3px 0px !important;
    border: none !important;
    width: 99%;
    background-image: none !important;
    background-color: transparent !important;
    background-position: center center !important;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .catHome img {
    width: 98.69px;
  }
  .catMed img {
    width: 184.22px;
  }
  .catWish img {
    width: 97.16px;
  }
  .catAbout img {
    width: 65.58px;
  }
  .catShop img {
    width: 80px;
  }
  .catSearch img {
    width: 67px;
  }
  .catSalva1 img {
    width: 150px;
  }
  .catSalva2 img {
    width: 162.61px;
  }
  .catSalva3 img {
    width: 124.293px;
  }
  .catSalva4 img {
    width: 101.06px;
  }
  .salvaLogo {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1069px) {
  .catHome img {
    width: 73.0306px;
  }
  .catMed img {
    width: 136.3228px;
  }
  .catWish img {
    width: 71.8984px;
  }
  .catAbout img {
    width: 48.5292px;
  }
  .catShop img {
    width: 59.2px;
  }
  .catSearch img {
    width: 49.58px;
  }
  .catSalva1 img {
    width: 111px;
  }
  .catSalva2 img {
    width: 120.3314px;
  }
  .catSalva3 img {
    width: 91.97682px;
  }
  .catSalva4 img {
    width: 74.7844px;
  }
}

/* =========================================================
ヘッダスマホ
========================================================= */
@media (max-width: 767px) {
  header {
    width: 100%;
    z-index: 200;
    position: relative;
  }
  .headerLogo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, .8);
    border-bottom: 1px solid transparent;
    transition: border-bottom-color .5s;
    box-sizing: border-box;
  }
  .headerLogo a {
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .headerLogo a img {
    width: 105.3px;
    height: 24.15px;
    display: block;
  }
  .salva .headerLogo a:not(.headerSalvaLogo) {
    left: 10px;
  }
  .salva .headerLogo a:not(.headerSalvaLogo) img {
    width: 63.21px;
    height: 14.49px;
  }
  .salva .headerLogo a.headerSalvaLogo {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  .salva .headerLogo a.headerSalvaLogo img {
    width: 49.99px;
    height: 39.52px;
    display: block;
  }
  .siteTop .headerLogo a {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .headerNav {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    transform: translateX(100%);
    transition-timing-function: cubic-bezier(0, 0.05, 0.29, 1);
    transition-duration: .5s;
    transition-property: transform;
    opacity: 0;
    background: #fff;
  }
  .headerNavScroller {
    position: absolute;
    min-width: 320px;
    width: 100%;
    height: 100%;
  }
  .isSideMenuOpened .headerLogo {
    border-bottom-color: #b2b2b2;
  }
  .isSideMenuOpened .headerNav {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(0);
  }
  .headerNav .headerNavScroller > ul {
    margin-top: 12px;
  }
  .headerNav .navItem {
    cursor: pointer;
  }
  .headerNav .navItem > a,
  .headerNav .navItem > span {
    display: block;
    border-bottom: 1px solid #ccc;
    height: 45px;
    position: relative;
  }
  .headerNav .navItem > a:hover {
    color: #4c4c4c;
  }
  .headerNav .navItem > a::before,
  .headerNav .navItem > span::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: url(/image/link_right_bold.svg) center center no-repeat;
  }
  .headerNav .navItem.hasDropDown > span::before {
    background-image: url(/image/plus.svg);
  }
  .headerNav .navItem.hasDropDown > span.isOpened::before {
    background-image: url(/image/minus.svg);
  }
  .headerNav .navItem > a[target="_blank"]::before {
    background-image: url(/image/link_external.svg);
  }
  .headerNav .navItem > a img,
  .headerNav .navItem > span img {
    display: none;
  }
  .headerNav .navDropDown > div {
    display: none;
  }
  .headerNav .navDropDown > div ul {
    padding-left: 45px;
    background: #f2f2f2;
    border-bottom: 1px solid #d9d9d9;
  }
  .headerNav .navDropDown > div ul li {
    font-size: 1.35rem;
    letter-spacing: .09rem;
    line-height: 44px;
    border-bottom: 1px solid #d9d9d9;
  }
  .headerNav .navDropDown > div ul li:last-child {
    border-bottom: none;
  }
  .headerNav .navDropDown > div ul li a {
    display: block;
    position: relative;
    padding-left: 22px;
  }
  .headerNav .navDropDown > div ul li a:hover {
    color: #4c4c4c;
  }
  .headerNav .navDropDown > div ul li a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: url(/image/link_right_thin.svg) center center no-repeat;
  }
  .headerNav .navDropDown > div ul li a[target="_blank"]::after {
    background-image: url(/image/link_external.svg);
  }
  .headerNav .catHome li.hasHead a:before,
  .headerNav .catMed li.hasHead a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(/image/list_home.svg) center center no-repeat;
    width: 20px;
    height: 44px;
  }
  .headerNav .catMed li.hasHead a:before {
    background-image: url(/image/list_med.svg);
  }
  .headerNav .navSubItemCat {
    display: none;
  }
  .headerNav .catSearch .navDropDown > div {
    display: block;
  }
  .headerNav .SPText {
    display: none;
  }
  .headerNav .navItem > span,
  .headerNav .navItem > a {
    background-repeat: no-repeat;
    background-position: 25px center;
  }
}

@media (max-width: 767px) and (max-width: 23.375em) {
  .headerNav .navItem > span,
  .headerNav .navItem > a {
    background-position: 16px center;
  }
  .headerNav .navDropDown > div > ul {
    padding-left: 28px;
  }
}

@media (max-width: 767px) {
  .headerNav .catHome > span {
    background-image: url(/image/sp_home.svg);
  }
  .headerNav .catMed > span {
    background-image: url(/image/sp_med.svg);
  }
  .headerNav .catWish > a {
    background-image: url(/image/sp_wish.svg);
  }
  .headerNav .catAbout > span {
    background-image: url(/image/sp_about.svg);
  }
  .headerNav .catInquiry > a {
    background-image: url(/image/sp_inquiry.svg);
  }
  .headerNav .catShop > a {
    background-image: url(/image/sp_shop.svg);
  }
  .headerNav .catSalva1 > a {
    background-image: url(/image/sp_salva_1.svg);
  }
  .headerNav .catSalva2 > a {
    background-image: url(/image/sp_salva_2.svg);
  }
  .headerNav .catSalva3 > a {
    background-image: url(/image/sp_salva_3.svg);
  }
  .headerNav .catSalva4 > a {
    background-image: url(/image/sp_salva_4.svg);
  }
  .headerNav .navDropDown li a span {
    display: block;
    background-repeat: no-repeat;
  }
  .headerNav .navSubItemSalva {
    background-image: url(/image/logo_salva.svg);
    background-position: center right 62px;
    background-size: 23px 18.18px;
  }
  .headerNav .navSubItemKizu {
    background-image: url(/image/logo_kizu.svg);
    background-position: center right 46px;
    background-size: 56px 10.37px;
  }
  .headerNav .navSubItemKarada {
    background-image: url(/image/logo_familycare.svg);
    background-position: center right 48px;
    background-size: 48px 13.5px;
  }
  .headerNav .navSubItemHomeInfo span {
    display: inline-block !important;
  }
  .headerNav .navSubItemMed {
    background-image: url(/image/logo_medialproducts.svg);
    background-position: center right 50px;
    background-size: 43px 13px;
  }
  .headerNav .navSubItemKaigo {
    background-image: url(/image/logo_healthcareproducts.svg);
    background-position: center right 49px;
    background-size: 46px 13px;
  }
  .headerNav .navSubItemKaigoInfo span {
    display: inline-block !important;
  }
  .searchRow {
    max-width: none;
    width: 100%;
    height: auto;
  }
  .searchRow > div {
    padding: 10px 22px 10px 30px;
  }
  .catSearch .navDropDown > div {
    display: block;
    border-bottom: 1px solid #ccc;
  }
  form.gsc-search-box,
  table.gsc-search-box {
    margin: 0 !important;
    line-height: 0;
  }
  .gsc-input-box {
    border-color: #ccc !important;
    height: 30px !important;
  }
  .gsib_a {
    padding-top: 0 !important;
  }
  .gsc-input {
    padding-right: 9px !important;
  }
  input.gsc-input {
    font-size: 1.5rem;
    border: none !important;
    background-image: none !important;
    background-color: transparent !important;
    background-position: center center !important;
    height: 30px !important;
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  }
  .gsc-search-box .gsc-input > input:focus, .gsc-input-box-focus {
    border: 1px solid #3ec5fd !important;
  }
  .cse .gsc-search-button input.gsc-search-button-v2, input.gsc-search-button-v2 {
    width: 30px !important;
    height: 30px !important;
    background: url(/image/magnify.svg) center center no-repeat !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
  }
}

@media (max-width: 23.375em) {
  .navSubItemKarada {
    letter-spacing: 0;
  }
}

/** ハンバーガー **/
.hamburger {
  height: 49px;
  width: 49px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.burgertime {
  width: 49px;
  height: 49px;
  cursor: pointer;
  box-sizing: border-box;
  padding: 14.5px;
  overflow: hidden;
}

.burger-buns {
  position: relative;
  height: 100%;
  vertical-align: middle;
}

.burger {
  width: 100%;
  height: 2px;
  background: #1d1d1d;
  position: absolute;
  transition: .2s;
}

.bgr-1 {
  top: 3px;
  transition-delay: .2s;
}

.bgr-2 {
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.bgr-3 {
  bottom: 3px;
  transition-delay: .2s;
}

.burger-to-cross.is-opened {
  background-color: #fff;
}

.burger-to-cross.is-opened .bgr-1 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
}

.burger-to-cross.is-opened .bgr-2 {
  opacity: 0;
  /*            transform: scaleX( 0 );
    -webkit-transform: scaleX( 0 );*/
}

.burger-to-cross.is-opened .bgr-3 {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
  -webkit-transform: translateY(50%) rotate(-45deg);
}

/* =========================================================
パンくず
========================================================= */
.breadCrumb {
  width: 100%;
  height: 45px;
  border-bottom: 1px solid;
  background-color: #f5f4f4;
}

.breadCrumbInner {
  padding: 15px 0 0 42px;
  box-sizing: border-box;
  letter-spacing: -.4em;
}

.breadCrumbInner > * {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: normal;
}

.breadCrumbInner .catIcon {
  position: relative;
  bottom: 0;
  width: 32px;
  margin: 0px 17px 0 0;
  -ms-transform: translateY(2px);
}

.breadCrumbInner .catIcon img {
  display: block;
}

.breadCrumbInner ul li {
  display: inline-block;
  font-size: 1.2rem;
}

.breadCrumbInner ul li:not(:last-child):after {
  content: "＞";
  padding: 0 8px 0 15px;
}

.breadCrumbInner ul li a:hover {
  text-decoration: underline;
}

.breadCrumb.catHome {
  border-bottom-color: #00afec;
}

.breadCrumb.catHome * {
  color: #00afec;
}

.breadCrumb.catMedical .breadCrumbInner {
  padding-top: 17px;
}

.breadCrumb.catMedical .breadCrumbInner .catIcon {
  width: 36px;
}

@media (max-width: 767px) {
  .breadCrumb {
    display: none;
  }
}

/* =========================================================
フッタ
========================================================= */
.goTopPC {
  height: 90px;
}

.goTopPC a {
  width: 85px;
  height: 90px;
  display: block;
  margin: 0 auto;
  background: url(/image/goto_top_pc.svg) center center no-repeat;
}

.goTopPC a:hover {
  opacity: .6;
}

#goTopSP {
  position: fixed;
  bottom: 50px;
  right: 15px;
  width: 31px;
  height: 31px;
  border-radius: 31px;
  opacity: .5;
  background: url(/image/goto_top_sp.svg) center center no-repeat #fff;
  transition: .2s;
  z-index: 1;
  transform: scale(0);
  -webkit-transform: scale(0);
  visibility: none;
}

#goTopSP:hover {
  opacity: 0.8;
}

#goTopSP.isVisible {
  visibility: visible;
  transform: scale(1);
  -webkit-transform: scale(1);
}

.footerNav {
  background-color: #f2f2f2;
  color: #1d1d1d;
}

.footerNav a {
  color: #1d1d1d;
}

.footerNav .footerNavInner {
  padding: 12.5px 35px;
  position: relative;
}

@media (min-width: 40.0625em) {
  .footerNav .footerNavInner .footerNavLeft ul li {
    display: inline-block;
    position: relative;
    margin: 0 16px;
  }
  .footerNav .footerNavInner .footerNavLeft ul li:first-child {
    margin-left: 0;
  }
  .footerNav .footerNavInner .footerNavLeft ul li::after {
    content: '';
    right: -19px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    height: 11px;
    width: 1px;
    background: #1d1d1d;
    position: absolute;
  }
  .footerNav .footerNavInner .footerNavLeft ul li:last-child {
    margin-right: 0;
  }
  .footerNav .footerNavInner .footerNavLeft ul li:last-child::after {
    content: none;
  }
  .footerNav .footerNavInner .footerNavLeft ul li a {
    line-height: 30px;
    font-size: 1.2rem;
    display: inline-block;
  }
  .footerNav .footerNavInner .footerNavLeft ul li a:hover {
    color: #a1a1a1;
  }
  .footerNav .footerNavInner .footerNavLeft ul li a[target="_blank"] {
    background: url(/image/link_external.svg) no-repeat right center;
    padding-right: 28px;
  }
}

.footerNav .footerNavInner .footerNavRight {
  position: absolute;
  right: 35px;
  top: 12.5px;
  font-size: 0;
}

.footerNav .footerNavInner .footerNavRight li {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 30px;
}

.footerNav .footerNavInner .footerNavRight li span,
.footerNav .footerNavInner .footerNavRight li a {
  display: inline-block;
  vertical-align: top;
}

@media (min-width: 40.0625em) and (max-width: 62.4375em) {
  .footerNav .footerNavInner {
    padding: 17px 0 30px 0;
  }
  .footerNav .footerNavInner .footerNavLeft {
    position: static;
    text-align: center;
  }
  .footerNav .footerNavInner .footerNavLeft ul {
    margin-bottom: 23px;
  }
  .footerNav .footerNavInner .footerNavLeft ul li:first-child {
    margin-right: 0;
    display: block;
  }
  .footerNav .footerNavInner .footerNavLeft ul li:first-child::after {
    content: none;
  }
  .footerNav .footerNavInner .footerNavLeft ul li:first-child a {
    line-height: 27px;
  }
  .footerNav .footerNavInner .footerNavLeft ul li:nth-child(2) {
    margin-left: 0;
  }
  .footerNav .footerNavInner .footerNavRight {
    position: static;
    text-align: center;
  }
}

@media (max-width: 40em) {
  .footerNav {
    background: #fff;
  }
  .footerNav .footerNavInner {
    padding: 0;
    display: table;
    width: 100%;
  }
  .footerNav .footerNavInner .footerNavLeft {
    display: table-footer-group;
    position: static;
  }
  .footerNav .footerNavInner .footerNavLeft ul {
    border-top: 1px solid #b2b2b2;
  }
  .footerNav .footerNavInner .footerNavLeft ul li {
    border-bottom: 1px solid #b2b2b2;
  }
  .footerNav .footerNavInner .footerNavLeft ul li a {
    display: block;
    padding: 10px 40px 10px 25px;
    line-height: 20px;
    font-size: 1.25rem;
    background: url(/image/link_right_mid.svg) no-repeat center right 20px;
  }
  .footerNav .footerNavInner .footerNavLeft ul li a[target="_blank"] {
    background: url(/image/link_external.svg) no-repeat center right 15px;
  }
  .footerNav .footerNavInner .footerNavLeft ul li:hover {
    background-color: #f2f2f2;
  }
  .footerNav .footerNavInner .footerNavRight {
    display: table-header-group;
    position: static;
    text-align: center;
  }
  .footerNav .footerNavInner .footerNavRight ul {
    padding: 25px 0 35px;
  }
  .footerNav .footerNavInner .footerNavRight .FIInfo {
    display: block;
    position: relative;
    height: 50px;
    margin-bottom: 35px;
  }
  .footerNav .footerNavInner .footerNavRight .FIInfo span {
    display: block;
    position: absolute;
    font-size: 1.2rem;
    line-height: 1.2;
    width: 100%;
    bottom: 0;
  }
  .footerNav .footerNavInner .footerNavRight .FIFacebook {
    margin-right: 46px;
  }
}

.footerIcon a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(/image/footer_icons.svg) no-repeat;
  background-size: 90px 60px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: 0;
}

.FIInfo a {
  background-position: 0 0;
}

.FIInfo a:hover, .FIInfo a:focus {
  background-position: 0 -30px;
}

.FIFacebook a {
  background-position: -30px 0;
}

.FIFacebook a:hover, .FIFacebook a:focus {
  background-position: -30px -30px;
}

.FITwitter a {
  background-position: -60px 0;
}

.FITwitter a:hover, .FITwitter a:focus {
  background-position: -60px -30px;
}

@media (min-width: 40.0625em) {
  .FIInfo {
    margin-right: 33px;
  }
  .FIInfo span {
    margin-right: 15px;
  }
  .FIFacebook {
    margin-right: 12px;
  }
}

@media (max-width: 40em) {
  .footerIcon a {
    width: 28px;
    height: 28px;
    background-size: 84px 56px;
  }
  .FIInfo a {
    background-position: 0 0;
  }
  .FIInfo a:hover, .FIInfo a:focus {
    background-position: 0 -28px;
  }
  .FIFacebook a {
    background-position: -28px 0;
  }
  .FIFacebook a:hover, .FIFacebook a:focus {
    background-position: -28px -28px;
  }
  .FITwitter a {
    background-position: -56px 0;
  }
  .FITwitter a:hover, .FITwitter a:focus {
    background-position: -56px -28px;
  }
}

.footerBottom {
  background-color: #fff;
  position: relative;
  height: 84px;
}

.footerBottom .logo {
  position: absolute;
  top: 29px;
  left: 35px;
}

.footerBottom .copy {
  font-size: 1rem;
  letter-spacing: .15rem;
  position: relative;
  color: #1D1D1D;
  position: absolute;
  right: 37px;
  top: 30px;
}

@media (max-width: 40em) {
  .footerBottom {
    background-color: #f2f2f2;
    height: auto;
    text-align: center;
    padding: 30px 5px 16px 5px;
  }
  .footerBottom .logo {
    position: static;
    margin-bottom: 11px;
  }
  .footerBottom .logo img {
    width: 122px;
  }
  .footerBottom .copy {
    position: static;
    left: 0;
    right: 0;
    font-size: 0.7rem;
    letter-spacing: .1rem;
  }
}

/*============================

  header salva

============================*/
.salva {
  /*============================

  footer salva

============================*/
}

@media (min-width: 768px) and (max-width: 1069px) {
  .salva .headerNav > div > ul > li.catSalva {
    margin-right: 2vw;
  }
}

.salva header {
  /*============================
#JSHeaderChildBG
============================*/
}

.salva header div.headerMain {
  border-color: #fff;
  border-bottom: none;
}

.salva header div.headerMain div.headerRow div.headerLogo div.hamburger.visibleSP {
  /*============================
#JSHamburger
============================*/
}

.salva header div.headerMain div.headerRow nav.headerNav div.headerNavScroller ul {
  /*============================
#tglSearch
============================*/
}

.salva header div.headerMain div.headerRow nav.headerNav div.headerNavScroller ul li {
  padding-top: 2px;
}

.salva header div.headerMain div.headerRow nav.headerNav div.headerNavScroller ul .mod1 {
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .salva header div.headerMain div.headerRow nav.headerNav div.headerNavScroller ul li.navItem.hasDropDown.catSalva.catSalva1 div.navDropDown div ul.navSubHome {
    padding-left: 0;
  }
}

.salva header div.headerMain div.headerRow nav.headerNav div.headerNavScroller ul li.navItem.hasDropDown.catSalva.catSalva1 div.navDropDown div ul.navSubHome li.navSubItemCat.navSubItemCatHome {
  background-image: none;
}

@media (max-width: 767px) {
  .salva header div.headerMain div.headerRow nav.headerNav div.headerNavScroller ul li.navItem.hasDropDown.catSalva.catSalva1 div.navDropDown div ul.navSubHome li.hasHead {
    padding-left: 45px;
  }
}

.salva header div.headerMain div.headerRow nav.headerNav div.headerNavScroller ul li#tglSearch.navItem.catSearch div.navDropDown div.searchRow div {
  /*============================
#searchForm
============================*/
}

.salva footer.salva {
  /*============================
#goTopSP
============================*/
}

@media (min-width: 40.0625em) {
  .salva footer.salva {
    margin-top: 170px;
  }
}

@media (min-width: 40.0625em) {
  .salva footer.salva div.goTopPC.visiblePC {
    z-index: 100;
    width: 102px;
    height: 102px;
    display: block;
    -webkit-filter: drop-shadow(0 10px 6px rgba(0, 0, 0, .1));
    -moz-filter: drop-shadow(0 10px 6px rgba(0, 0, 0, .1));
    -o-filter: drop-shadow(0 10px 6px rgba(0, 0, 0, .1));
    -ms-filter: drop-shadow(0 10px 6px rgba(0, 0, 0, .1));
    background-color: rgba(255, 255, 255, .8);
    border-radius: 102px;
    overflow: hidden;
    background-image: url(/image/icon_arrow_gotop.svg);
    background-size: 14.9px auto;
    background-position: center center;
    background-repeat: no-repeat;
    position: fixed;
    right: 50px;
    bottom: 50px;
    transition: .2s;
    transform: scale(0);
    -webkit-transform: scale(0);
    visibility: none;
  }
  .salva footer.salva div.goTopPC.visiblePC a {
    background-image: none;
    display: block;
    width: 100%;
    height: 100%;
  }
  .salva footer.salva div.goTopPC.visiblePC:hover {
    opacity: 0.8;
  }
  .salva footer.salva div.goTopPC.visiblePC.isVisible {
    visibility: visible;
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@media (max-width: 40em) {
  .salva footer.salva a#goTopSP.visibleSP {
    z-index: 100;
    width: 13.6vw;
    height: 13.6vw;
    display: block;
    -webkit-filter: drop-shadow(0 10px 6px rgba(0, 0, 0, .1));
    -moz-filter: drop-shadow(0 10px 6px rgba(0, 0, 0, .1));
    -o-filter: drop-shadow(0 10px 6px rgba(0, 0, 0, .1));
    -ms-filter: drop-shadow(0 10px 6px rgba(0, 0, 0, .1));
    background-color: rgba(255, 255, 255, .8);
    border-radius: 13.6vw;
    overflow: hidden;
    background-image: url(/image/icon_arrow_gotop.svg);
    background-size: 14.9px auto;
    background-position: center center;
    background-repeat: no-repeat;
    position: fixed;
    right: 6.67vw;
    bottom: 6.67vw;
  }
  .salva footer.salva a#goTopSP.visibleSP a {
    background-image: none;
    display: block;
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 40.0625em) {
  .salva footer.salva nav.footerNav div.footerRow div.footerNavInner {
    padding: 0;
  }
}

@media (min-width: 40.0625em) {
  .salva footer.salva nav.footerNav div.footerRow div.footerNavInner div.footerNavLeft {
    text-align: center;
  }
}

@media (min-width: 40.0625em) {
  .salva footer.salva nav.footerNav div.footerRow div.footerNavInner div.footerNavLeft ul {
    padding: 10px 35px;
  }
}

@media (max-width: 40em) {
  .salva footer.salva nav.footerNav div.footerRow div.footerNavInner div.footerNavLeft ul:not(:first-of-type) {
    border-top: none;
  }
}

.salva footer.salva nav.footerNav div.footerRow div.footerNavInner div.footerNavLeft ul:first-of-type {
  background-color: #f9f9f9;
}

@media (min-width: 40.0625em) and (max-width: 62.4375em) {
  .salva footer.salva nav.footerNav div.footerRow div.footerNavInner div.footerNavLeft ul:first-of-type {
    padding: 10px 0;
  }
}

@media (min-width: 40.0625em) {
  .salva footer.salva nav.footerNav div.footerRow div.footerNavInner div.footerNavLeft ul:first-of-type {
    margin-bottom: 0;
  }
}

@media (min-width: 40.0625em) {
  .salva footer.salva nav.footerNav div.footerRow div.footerNavInner div.footerNavLeft ul:first-of-type li {
    margin: 0 32.5px;
  }
  .salva footer.salva nav.footerNav div.footerRow div.footerNavInner div.footerNavLeft ul:first-of-type li::after {
    content: none;
  }
}

@media (min-width: 40.0625em) and (min-width: 40.0625em) and (max-width: 62.4375em) {
  .salva footer.salva nav.footerNav div.footerRow div.footerNavInner div.footerNavLeft ul:first-of-type li {
    margin: 0 20px;
  }
}

@media (min-width: 40.0625em) {
  .salva footer.salva nav.footerNav div.footerRow div.footerNavInner div.footerNavLeft ul:first-of-type li {
    display: inline-block;
    margin-left: 16px;
  }
}

@media (min-width: 40.0625em) {
  .salva footer.salva nav.footerNav div.footerRow div.footerNavInner div.footerNavRight {
    position: absolute;
    width: 100%;
    left: 0;
    top: -64px;
    text-align: center;
  }
}

@media (min-width: 40.0625em) {
  .salva footer.salva nav.footerNav div.footerRow div.footerNavInner div.footerNavRight {
    position: absolute;
    width: 100%;
    left: 0;
    top: -64px;
    text-align: center;
  }
}

.salva footer.salva section.footerBottom {
  height: auto;
}

@media (min-width: 40.0625em) {
  .salva footer.salva section.footerBottom {
    padding-top: 46px;
    padding-bottom: 130px;
  }
}

@media (max-width: 40em) {
  .salva footer.salva section.footerBottom {
    padding-top: 70px;
    padding-bottom: 45px;
  }
}

.salva footer.salva section.footerBottom div.footerRow {
  text-align: center;
}

.salva footer.salva section.footerBottom div.footerRow div.logo {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.salva footer.salva section.footerBottom div.footerRow div.copy {
  margin-top: 5px;
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

/* =========================================================
medical unique
========================================================= */
#contents.medical {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

#contents.medical.isHide {
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.secConf {
  color: #1d1d1d;
}

.secConf .row {
  width: 90%;
  max-width: 936px;
  margin: 0 auto;
  padding: 100px 0 250px;
}

.secConf .frontSecTitle {
  margin-bottom: 30px;
  font-size: 2.1rem;
  text-align: center;
  letter-spacing: .12rem;
}

.secConf .frontSecTitle span {
  font-size: .7em;
  letter-spacing: .5rem;
}

.secConf .cautionBlock {
  margin-bottom: 35px;
  padding: 25px 9.6% 50px;
  border: 1px solid #dddddd;
}

.secConf .cautionBlock .cautionHead {
  margin-bottom: 50px;
  color: #0b7bbf;
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: .12rem;
}

.secConf .cautionBlock .cautionTxt {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.secConf .btnHead {
  margin-bottom: 35px;
  color: #0b7bbf;
  font-size: 1.9rem;
  text-align: center;
}

.secConf .btnUnit {
  text-align: center;
  letter-spacing: -.4em;
}

.secConf .btn {
  display: inline-block;
  width: 280px;
  margin-left: 40px;
  border: 1px solid #b2b2b2;
  box-sizing: border-box;
  background: url(/medical/images/conf_btn_arrow.svg) 255px center no-repeat;
  background-size: 8px 17px;
  vertical-align: top;
  font-size: 1.4rem;
  letter-spacing: .21rem;
  line-height: 38px;
  cursor: pointer;
  transition: opacity .3s ease-out;
}

.secConf .btn:first-child {
  margin-left: 0;
}

.secConf .btn:hover {
  opacity: .5;
}

.secConf .btn a,
.secConf .btn a:hover {
  color: #1d1d1d;
}

@media (max-width: 767px) {
  .secConf .row {
    width: 90%;
    max-width: 936px;
    margin: 0 auto;
    padding: 30px 0 35px;
  }
  .secConf .frontSecTitle {
    margin-bottom: 20px;
    font-size: 1.4rem;
    letter-spacing: .12rem;
  }
  .secConf .frontSecTitle span {
    font-size: .7em;
    letter-spacing: .2rem;
  }
  .secConf .cautionBlock {
    margin-bottom: 35px;
    padding: 15px 7% 30px;
  }
  .secConf .cautionBlock .cautionHead {
    margin-bottom: 10px;
    font-size: 1.46em;
    text-align: center;
    letter-spacing: .12rem;
  }
  .secConf .cautionBlock .cautionTxt {
    font-size: 1.15rem;
  }
  .secConf .btnHead {
    font-size: 1.2rem;
  }
  .secConf .btn {
    display: block;
    width: 250px;
    margin: 0 auto 18px !important;
    background: url(/medical/images/conf_btn_arrow.svg) 230px center no-repeat;
    background-size: 9px 15px;
    vertical-align: top;
    font-size: 1.05rem;
    line-height: 38px;
  }
}

@media (min-width: 62.5em) {
  div.buttonClose.upper.visibleSP img {
    cursor: pointer;
  }
  div.buttonClose.lower.visibleSP img {
    cursor: pointer;
  }
  div.floatProduct {
    transform: translateX(-100%);
    z-index: 200;
    position: absolute;
    width: 100%;
    height: calc(100vh - 73px);
  }
  div.floatProduct:not(.onresize) {
    transition: transform .5s ease-out;
  }
  div.floatProduct div.buttonClose.visiblePC {
    z-index: 1;
    position: absolute;
    width: 100px;
    height: 100px;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
  }
  div.floatProduct div.buttonClose.visiblePC img {
    cursor: pointer;
  }
  div.floatProduct.open {
    transform: translateX(0);
  }
  div.floatProduct.open div.buttonOpen.pc.visiblePC {
    right: 15px;
  }
  div.floatProduct div.buttonOpen.pc.visiblePC {
    transition: right .5s ease-out;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateX(100%) translateY(-50%);
    height: 176px;
  }
  div.floatProduct div.buttonOpen.pc.visiblePC img {
    cursor: pointer;
    height: 100%;
    width: auto;
    transform: translateX(-100%);
    transition: transform .5s ease-out;
  }
  div.floatProduct div.buttonOpen.pc.visiblePC img:hover {
    animation: animScale 0.7s ease-out;
    transform-origin: left center;
    -webkit-animation: animScale 0.7s ease-out;
    -webkit-transform-origin: left center;
    -moz-animation: animScale 0.7s ease-out;
    -moz-transform-origin: left center;
  }
  div.floatProduct div.buttonOpen.pc.visiblePC img.active {
    transform: translateX(0);
  }
  div.floatProduct div.floatProductInner {
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    padding: 100px 0;
    top: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(0%);
    background-color: #e5fbff;
    text-align: center;
  }
  div.floatProduct div.floatProductInner div.floatProductBody {
    display: inline-block;
    margin: 0 auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group:not(:first-of-type) {
    margin-top: 20px;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group p.heading {
    padding: 0;
    margin: 0 0 15px 10px;
    text-align: left;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group p.heading img {
    height: 16px;
    width: auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol {
    overflow: hidden;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li {
    box-sizing: content-box !important;
    border: 10px solid #ccecfa;
    border-radius: 20px;
    overflow: hidden;
    float: left;
    height: 158px;
    background-color: #fff;
    transition: background-color .25s ease-out;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li:not(:first-of-type) {
    margin-left: -10px;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li:hover {
    background-color: #ccecfa;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li a {
    display: block;
    width: 100%;
    height: 100%;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li a img {
    height: 100%;
    width: auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li.mod1 {
    position: relative;
    overflow: hidden;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li.mod1 img {
    height: 100%;
    width: auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li.mod1 a {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    display: block;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li.mod1 a.male {
    left: 50%;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li.mod1 a.female {
    left: 0;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group2 ol li {
    border-color: #ccf7ff;
    background-color: #fff;
    border-color: #ccf7ff;
    transition: background-color .25s ease-out;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group2 ol li:hover {
    background-color: #ccf7ff;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group3 ol li {
    border-color: #fff6cc;
    border-color: #fff6cc;
    transition: background-color .25s ease-out;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group3 ol li:hover {
    background-color: #fff6cc;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 {
    text-align: left;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 p.heading {
    display: inline-block;
    text-align: left;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 p.heading:nth-of-type(1) {
    font-size: 0;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 p.heading:nth-of-type(2) {
    margin-left: 225px;
    font-size: 0;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 ol li {
    border-color: #fdebf5;
    background-color: #fff;
    border-color: #fdebf5;
    transition: background-color .25s ease-out;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 ol li:hover {
    background-color: #fdebf5;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 ol li:nth-of-type(3) {
    border-color: #ebebeb;
    margin-left: 50px;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 ol li:nth-of-type(3):hover {
    background-color: #ebebeb;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.info {
    margin-top: 20px;
    text-align: left;
    width: 363px;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.info img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  div.buttonClose.upper.visibleSP img {
    cursor: pointer;
  }
  div.buttonClose.lower.visibleSP img {
    cursor: pointer;
  }
  div.floatProduct {
    transform: translateX(-100%);
    z-index: 200;
    position: absolute;
    width: 100%;
    height: calc(100vh - 73px);
  }
  div.floatProduct:not(.onresize) {
    transition: transform .5s ease-out;
  }
  div.floatProduct div.buttonClose.visiblePC {
    z-index: 1;
    position: absolute;
    width: 10.01001vw;
    height: 10.01001vw;
    left: 2.002vw;
    top: 50%;
    transform: translateY(-50%);
  }
  div.floatProduct div.buttonClose.visiblePC img {
    cursor: pointer;
  }
  div.floatProduct.open {
    transform: translateX(0);
  }
  div.floatProduct.open div.buttonOpen.pc.visiblePC {
    right: 1.5015vw;
  }
  div.floatProduct div.buttonOpen.pc.visiblePC {
    transition: right .5s ease-out;
    position: absolute;
    right: 0vw;
    top: 50%;
    transform: translateX(100%) translateY(-50%);
    height: 17.61762vw;
  }
  div.floatProduct div.buttonOpen.pc.visiblePC img {
    cursor: pointer;
    height: 100%;
    width: auto;
    transform: translateX(-100%);
    transition: transform .5s ease-out;
  }
  div.floatProduct div.buttonOpen.pc.visiblePC img.active {
    transform: translateX(0);
  }
  div.floatProduct div.floatProductInner {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: absolute;
    width: calc(100% - 30px);
    height: calc(100% - 10px);
    padding: 10.01001vw 0;
    top: 1.5015vw;
    left: 50%;
    transform: translateX(-50%) translateY(0%);
    background-color: #e5fbff;
    text-align: center;
  }
  div.floatProduct div.floatProductInner div.floatProductBody {
    display: inline-block;
    margin: 0 auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group:not(:first-of-type) {
    margin-top: 2.002vw;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group p.heading {
    padding: 0;
    margin: 0 0 1.5015vw 1.001vw;
    text-align: left;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group p.heading img {
    height: 1.6016vw;
    width: auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol {
    overflow: hidden;
    text-align: left;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li {
    box-sizing: content-box !important;
    white-space: nowrap;
    border: 1.001vw solid #ccecfa;
    border-radius: 2.002vw;
    overflow: hidden;
    font-size: 0;
    display: inline-block;
    height: 15.81582vw;
    background-color: #fff;
    transition: background-color .25s ease-out;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li:not(:first-of-type) {
    margin-left: -1.001vw;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li:hover {
    background-color: #ccecfa;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li a {
    display: block;
    width: 100%;
    height: 100%;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li a img {
    height: 100%;
    width: auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li.mod1 {
    position: relative;
    overflow: hidden;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li.mod1 img {
    height: 100%;
    width: auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li.mod1 a {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    display: block;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li.mod1 a.male {
    left: 50%;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li.mod1 a.female {
    left: 0;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group2 ol li {
    border-color: #ccf7ff;
    transition: background-color .25s ease-out;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group2 ol li:hover {
    background-color: #ccf7ff;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group3 ol li {
    border-color: #fff6cc;
    transition: background-color .25s ease-out;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group3 ol li:hover {
    background-color: #fff6cc;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 {
    text-align: left;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 p.heading {
    display: inline-block;
    text-align: left;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 p.heading:nth-of-type(1) {
    font-size: 0;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 p.heading:nth-of-type(2) {
    margin-left: 22.52252vw;
    font-size: 0;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 ol li {
    border-color: #fdebf5;
    transition: background-color .25s ease-out;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 ol li:hover {
    background-color: #fdebf5;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 ol li:nth-of-type(3) {
    border-color: #ebebeb;
    margin-left: 5.00501vw;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 ol li:nth-of-type(3):hover {
    background-color: #ebebeb;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.info {
    margin-top: 2.002vw;
    text-align: left;
    width: 36.33634vw;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.info img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 767px) {
  div.buttonClose.upper.visibleSP {
    z-index: 1;
    position: fixed;
    left: 50%;
    top: 3.2vw;
    width: 18.66667vw;
    height: 18.66667vw;
    transform: translateX(-50%);
  }
  div.buttonClose.upper.visibleSP img {
    cursor: pointer;
  }
  div.buttonClose.lower.visibleSP {
    z-index: 1;
    position: fixed;
    left: 50%;
    bottom: 6.66667vw;
    width: 18.66667vw;
    height: 18.66667vw;
    transform: translateX(-50%);
  }
  div.buttonClose.lower.visibleSP img {
    transition: all .25s ease-out;
    transform: scale(0);
    cursor: pointer;
  }
  div.buttonClose.lower.visibleSP.active img {
    transform: scale(1);
  }
  div.floatProduct {
    transform: translateY(-100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
  }
  div.floatProduct * {
    box-sizing: border-box;
  }
  div.floatProduct:not(.onresize) {
    transition: transform .5s ease-out;
  }
  div.floatProduct.open {
    transform: translateY(0);
  }
  div.floatProduct div.buttonOpen.sp.visibleSP {
    transform: translateY(100%);
    position: absolute;
    bottom: 0;
    left: 2vw;
    height: 0;
  }
  div.floatProduct div.buttonOpen.sp.visibleSP img {
    cursor: pointer;
    height: 12vw;
    width: auto;
    transform: translateY(-100%);
    transition: transform .5s ease-out;
  }
  div.floatProduct div.buttonOpen.sp.visibleSP img.active {
    transform: translateY(0);
  }
  div.floatProduct div.floatProductInner {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 4vw 0 49.33333vw;
    top: 0vw;
    left: 0;
    background-color: #e5fbff;
    text-align: center;
  }
  div.floatProduct div.floatProductInner div.floatProductBody {
    display: inline-block;
    margin: 0 auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group:not(:first-of-type) {
    margin-top: 2.66667vw;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group p.heading {
    padding: 0;
    margin: 0 0 2vw 8vw;
    text-align: left;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group p.heading img {
    height: 3.33333vw;
    width: auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol {
    display: inline-block;
    overflow: hidden;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li {
    box-sizing: content-box !important;
    border: 1.33333vw solid #ccecfa;
    border-radius: 2.66667vw;
    overflow: hidden;
    float: left;
    width: 30.66667vw;
    background-color: #fff;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li:not(:first-of-type) {
    margin-left: -1.33333vw;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li a {
    display: block;
    width: 100%;
    height: 100%;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li a img {
    width: 100%;
    height: auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li.mod1 {
    position: relative;
    overflow: hidden;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li.mod1 img {
    height: 100%;
    width: auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li.mod1 a {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    display: block;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li.mod1 a.male {
    left: 50%;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group ol li.mod1 a.female {
    left: 0;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group2 ol li {
    border-color: #ccf7ff;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group3 ol {
    display: inline-block;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group3 ol li {
    border-color: #fff6cc;
    float: none;
    display: inline-block;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group3 ol li:nth-of-type(1) {
    height: 30.93333vw;
    width: auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group3 ol li:nth-of-type(1) a img.visibleSP {
    height: 100%;
    width: auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group3 ol li:nth-of-type(2) {
    height: 30.93333vw;
    width: auto;
    margin-left: -2.66667vw;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group3 ol li:nth-of-type(2) a img.visibleSP {
    height: 100%;
    width: auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group3 ol li:nth-of-type(3) {
    height: 30.93333vw;
    width: auto;
    margin-left: -2.66667vw;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group3 ol li:nth-of-type(3) a img.visibleSP {
    height: 100%;
    width: auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group3 ol li:nth-of-type(4) {
    padding: 0 0.26667vw;
    margin-left: 0;
    margin-top: -1.33333vw;
    height: 29.6vw;
    width: auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group3 ol li:nth-of-type(4) a img.visibleSP {
    height: 100%;
    width: auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group3 ol li:nth-of-type(5) {
    padding: 0 0.26667vw;
    margin-top: -1.33333vw;
    margin-left: -2.66667vw;
    height: 29.6vw;
    width: auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group3 ol li:nth-of-type(5) a img.visibleSP {
    height: 100%;
    width: auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 {
    text-align: left;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 p.heading:nth-of-type(1) {
    display: inline-block;
    width: 55%;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 p.heading:nth-of-type(2) {
    display: inline-block;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 ol {
    display: inline-block;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 ol li {
    float: none;
    display: inline-block;
    width: auto;
    height: 30.93333vw;
    border-color: #fdebf5;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 ol li:nth-of-type(1) {
    margin-right: -1.33333vw;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 ol li:nth-of-type(3) {
    border-color: #ebebeb;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.group.group4 ol li a img.visibleSP {
    height: 100%;
    width: auto;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.info {
    margin: 2.66667vw auto;
    text-align: center;
    width: 77.33333vw;
  }
  div.floatProduct div.floatProductInner div.floatProductBody div.info img {
    width: 100%;
    height: auto;
  }
}

/*# sourceMappingURL=common.css.map */
