@charset "UTF-8";

/* カレンダー部分の外部cssを読み込み */
@import url("calendar.css");

.contactTel,
.kameyamado,
.sns,
#gNav,
main {
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

html {
  font-size: 62.5%; /* remの基準値 */
}
body {
  background-color: #fcfcfc;
  font-size: 1.4rem;
  /* font-family: 'Roboto', "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", "sans-serif"; */
  font-family: Roboto, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", "sans-serif";
  font-weight: 500;
  color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: #333;
}

ul,
ol {
  padding-left: 20px;
}

a {
  color: #007bff;
  text-decoration: none;
  outline: none;
}
a:hover {
  border: none;
  color: #ff0000;
  text-decoration: none;
}
a:focus {
  outline: none;
}
input {
  max-width: 100%;
  outline: none;
}
[type="radio"],
[type="checkbox"] {
  vertical-align: middle;
}

.container {
  max-width: 960px;
}
.no-gutters {
  padding: 0;
}
.breadcrumb {
  max-width: 960px;
  margin: auto;
  background-color: transparent;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: #666;
}
.breadcrumb a {
  color: #5bb7ae;
  text-decoration: underline;
}
.breadcrumb a:hover {
  color: #ff0000;
  text-decoration: underline;
}
.breadcrumb-item {
  font-size: 1.25rem;
  font-weight: 500;
}
.breadcrumb-item.active {
  color: #666;
}

.pageHeading {
  text-align: center;
  font-size: 3.5rem;
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN",
    HGS明朝E, メイリオ, Meiryo, serif;
}
.heading {
  margin: 0 auto;
  text-align: center;
}
.heading--jp {
  line-height: 70px;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  white-space: nowrap;
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN",
    HGS明朝E, メイリオ, Meiryo, serif;
  color: #333;
}
.subHeading--en {
  display: block;
  margin: auto;
}
hr.separaterWave {
  height: 12px;
  margin: 0 auto;
  background: url("../img/heading_bg_zigzag.png") repeat-x 0 0;
  border: 0;
}

.contentArea {
  max-width: 960px;
  margin: 15px auto auto auto;
  padding: 30px;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-bottom: 1px solid #999;
  border-radius: 0.5rem;
  background-color: #fff;
}
.contentArea__heading {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px dotted #333;
}
.contentArea__subHeading {
  margin-top: 40px;
  padding: 15px;
  line-height: 30px;
  border-left: 6px solid #ff8484;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  background-color: #fff2f2;
  color: #333;
  font-size: 2rem;
}

.table {
  display: table;
}
.thead {
  display: table-header-group;
}
.tbody {
  display: table-row-group;
}
.tfoot {
  display: table-footer-group;
}
.tr {
  display: table-row;
}
.td {
  display: table-cell;
}

.importantTxt {
  color: #ff0000;
}
.boldTxt {
  font-weight: 600;
}
.denyTxt {
  text-decoration: line-through;
}
.underlineTxt {
  text-decoration: underline;
}

#gHeader {
  position: relative;
  padding: 1.01vw 0 1.01vw 0;
  background: url("../../commons/img/bg_header.jpg");
  background-size: cover;
  overflow: hidden;
}

/* --- ocean wave アニメーション --- */
#gHeader .ocean {
  height: 4%;
  width: 100%;
  position: absolute;
  top: 115.8%;
  left: 0;
  background: #015871;
  z-index: 0;
  opacity: 0.8;
}
#gHeader .ocean__wave {
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/85486/wave.svg")
    repeat-x;
  position: absolute;
  top: -2084.3%;
  width: 656.41%;
  height: 2084.3%;
  animation: wave 28s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}
#gHeader .ocean__wave:nth-of-type(2) {
  top: -1842.2%;
  animation: wave 28s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite,
    swell 28s ease -5s infinite;
  opacity: 1;
}
@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
@keyframes swell {
  0%,
  100% {
    transform: translate3d(0, -25px, 0);
    -webkit-transform: translate3d(0, -25px, 0);
  }
  50% {
    transform: translate3d(0, 5px, 0);
    -webkit-transform: translate3d(0, 5px, 0);
  }
}
/* --- /ocean wave アニメーション --- */

#gHeader .contactTel {
  text-align: center;
  font-weight: 600;
  color: #333;
}
#gHeader .contactTel__bg {
  position: relative;
  width: 30.25vw;
  max-width: 300px;
}
#gHeader .contactTel__txt {
  position: absolute;
  top: 5.04vw;
  left: 1.01vw;
  right: 0;
  bottom: 0;
}
#gHeader .contactTel__num {
  font-size: 2.42vw;
}
#gHeader .contactTel__freeDialLogo {
  height: 2.02vw;
  margin: auto 0.51vw 0.51vw auto;
  background-color: #333;
}
#gHeader .contactTel__date {
  font-size: 1.31vw;
}

#gHeader .kameyamado {
  margin: 1.21vw 0 0 0;
  padding: 0;
  text-align: center;
}
#gHeader .kameyamado__logo {
  width: 21.1vw;
}

#gHeader .sns {
  margin-top: 3.75%;
}
#gHeader .sns__btn {
  display: none;
  position: relative;
  width: 3.84vw;
  height: 3.84vw;
  margin-right: 0.51vw;
  border-radius: 18px;
  background-color: #84cccb;
  box-shadow: 0.2vw 0.2vw 0 rgba(53, 158, 160, 1);
  color: #fff;
}
#gHeader .fa-facebook-f::before {
  font-size: 2.83vw;
  position: absolute;
  bottom: 0;
  right: 22%;
}
#gHeader .fa-twitter::before {
  font-size: 2.52vw;
  position: absolute;
  top: 24%;
  left: 20%;
}
#gHeader .fa-instagram::before {
  font-size: 2.83vw;
  position: absolute;
  top: 15%;
  left: 20%;
}
#gHeader .sns__btnLine {
  display: inline-block;
  position: relative;
  width: 84%;
  height: 30.65%;
  max-height: 38px;
  border-radius: 6px;
  background-color: #84cccb;
  box-shadow: 0.2vw 0.2vw rgba(53, 158, 160, 1);
}
#gHeader .sns__btnLine img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55.56%;
  max-height: 20px;
  margin: auto;
}

#gHeader .contactMail {
  position: relative;
  margin: 3.15% 0 0 0;
  text-shadow: 0.2vw 0.2vw 0.1vw #369798;
}
#gHeader .contactMail .contactMail__bg {
  width: 96.56%;
  max-width: 280px;
  margin-left: -6.71%;
}
#gHeader .contactMail > a {
  display: inline-block;
  position: absolute;
  top: 0.81vw;
  left: 2.02vw;
  height: 100%;
  width: 100%;
  max-width: 245px;
  line-height: 2.42vw;
  text-decoration: none;
}
#gHeader .contactMail .fa-envelope {
  margin: 0 0.5vw 0 0;
  line-height: 2.22vw;
  vertical-align: text-bottom;
  font-size: 2.02vw;
  font-weight: 300;
  color: #fff;
}
#gHeader .contactMail__txt {
  font-size: 1.82vw;
  font-weight: 600;
  color: #fff;
}
#gHeader .headerBnr__wrap {
  width: 100%;
  background-color: #e50012;
  margin-bottom: 10px;
}
#gHeader .headerBnr__img {
  max-width: 960px;
  margin: auto;
}
#gHeader .headerBnr__img img {
  margin: auto;
}

#gNav .navbar {
  position: relative;
  padding: 0;
  border-bottom: solid 3px #5bb7ae;
  background-color: #fff;
}
#gNav .navbar > .container {
  width: 100%;
  padding: 0;
}
#gNav .navbar .navbar-brand {
  position: absolute;
  top: 10px;
  display: inherit;
  max-width: 70px;
  height: 48.06px;
}
#gNav .navbar .kameyamado__logo {
  width: 100%;
  height: 100%;
}
#gNav .sns__inner {
  margin-bottom: 15px;
}
#gNav .navbar .sns__btn {
  line-height: 39px;
  margin-right: 10px;
  font-size: 28px;
  color: #333;
}
#gNav .navbar-toggler {
  margin-bottom: 15px;
  padding: 0.25rem 1.25rem;
  border: solid 2px #333;
  border-radius: 6px;
}
#gNav .navbar-toggler-icon {
  width: 40px;
  height: 30px;
  line-height: 30px;
  font-weight: 600;
  color: #333;
}
#gNav .navbar-nav {
  width: 100%;
}
#gNav .nav-item {
  height: 88px;
  padding: 0;
}
#gNav .nav-item:hover {
  background-color: #ffffe4;
  box-shadow: 0px 0px 2px 0px #999 inset;
}
#gNav .nav-item img {
  height: 34px;
  margin: 12px 0 2px 0;
}
#gNav .nav-item a {
  display: block;
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
}
#gNav .nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Roboto", "游ゴシック", "YuGothic", "Noto Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo",
    "sans-serif";
  color: #333;
}

#gFooter {
  margin-top: 60px;
  padding-top: 40px;
  background-color: #f5f5f5;
}
#gFooter a {
  color: #333;
}
#gFooter a:hover {
  color: #ff0000;
}
#gFooter .outer {
  background-color: #fff;
}
#gFooter .cal__heading {
  padding: 10px;
  font-weight: 600;
  font-size: 1.6rem;
  color: #333;
}
#gFooter .cal__note {
  margin-top: 15px;
  font-size: 1.2rem;
}
#gFooter .cal__holiday {
  margin-right: 4px;
  padding: 4px;
  border-radius: 3px;
  background-color: #fee;
  text-align: center;
  font-weight: 600;
  color: #f00;
}
#gFooter .cal__sat {
  margin-right: 4px;
  padding: 4px;
  border-radius: 3px;
  background-color: #c7e8ef;
  text-align: center;
  font-weight: 600;
  color: #00f;
}
#gFooter .orderInfo {
  letter-spacing: 0.1rem;
  font-weight: 600;
  color: #333;
}
#gFooter .orderInfo__heading {
  padding: 10px 0;
  border-bottom: 2px solid #333;
  font-size: 1.6rem;
}
#gFooter .orderInfo hr.separaterWave {
  width: 274px;
  height: 12px;
  background: url("../img/heading_bg_zigzag.png") repeat-x 0 0;
  border: 0;
}
#gFooter .orderInfo__online {
  padding: 20px 0 0 0;
}
#gFooter .orderInfo__online__iconBox {
  text-align: center;
}
#gFooter .orderInfo__tel {
  padding: 10px 0 0 0;
}
#gFooter .orderInfo__tel__iconBox {
  text-align: center;
}
#gFooter .orderInfo__fax {
  padding: 10px 0 0 0;
}
#gFooter .orderInfo__fax__iconBox {
  text-align: center;
}
#gFooter .orderInfo__online__iconBox img,
#gFooter .orderInfo__tel__iconBox img,
#gFooter .orderInfo__fax__iconBox img {
  display: block;
  width: 40px;
  margin: auto;
}
#gFooter .orderInfo__online__txt,
#gFooter .orderInfo__tel__txt,
#gFooter .orderInfo__fax__txt {
  font-size: 1.2rem;
  padding: 0;
}
#gFooter .orderInfo__online__txt span,
#gFooter .orderInfo__tel__txt span,
#gFooter .orderInfo__fax__txt span {
  font-size: 2rem;
  font-weight: 600;
}
#gFooter .orderInfo__freeDialLogo {
  height: 22px;
  margin-right: 5px;
  background-color: #333;
  vertical-align: text-bottom;
}
#gFooter .deliveryInfo {
  letter-spacing: 0.1rem;
  font-weight: 600;
  color: #333;
}
#gFooter .deliveryInfo__heading {
  margin-top: 20px;
  padding: 10px 0;
  border-bottom: 2px solid #333;
  font-size: 1.6rem;
}
#gFooter .deliveryInfo__heading__en {
  display: block;
  margin: 0 auto 20px auto;
}
#gFooter .deliveryInfo hr.separaterWave {
  width: 274px;
}
#gFooter .deliveryInfo__mail {
  padding: 20px 0 0 0;
}
#gFooter .deliveryInfo__mail__iconBox {
  text-align: center;
}
#gFooter .deliveryInfo__mail__iconBox img,
#gFooter .deliveryInfo__send__iconBox img {
  display: block;
  width: 40px;
  margin: auto;
}
#gFooter .deliveryInfo__mail__txt {
  padding: 0;
  font-size: 1.4rem;
  font-weight: 600;
}
#gFooter .deliveryInfo__send {
  padding: 20px 0 0 0;
}
#gFooter .deliveryInfo__send__txt {
  font-size: 1.2rem;
  padding: 0;
}
#gFooter .deliveryInfo__send__txt span {
  font-size: 2rem;
}
#gFooter .deliveryInfo__note {
  padding: 10px 0 0 0;
  list-style: none;
}
#gFooter .deliveryInfo__note li {
  line-height: 2.2rem;
  font-size: 1.2rem;
}

#gFooter .mainNav {
  margin-top: 60px;
}
#gFooter .mainNav .itemList {
  font-size: 1.4rem;
}
#gFooter .mainNav .itemList span {
  font-size: 1.4rem;
  font-weight: 600;
  color: #5bb7ae;
}
#gFooter .mainNav .itemList ul {
  margin: 5px 0 20px 0;
  padding-left: 0;
  list-style: none;
}
#gFooter .mainNav .itemList li {
  line-height: 2.4rem;
  font-weight: 500;
  text-decoration: underline;
}
#gFooter .mainNav .companyProf span {
  font-size: 1.6rem;
  font-weight: 600;
  color: #5bb7ae;
}
#gFooter .mainNav .companyProf ul {
  margin: 4px 0 20px 0;
  padding-left: 0;
  font-weight: 500;
  list-style: none;
}
#gFooter .mainNav .companyProf .kameyamado__logo {
  width: 80%;
}

#gFooter .subNav {
  margin-top: 40px;
  color: #fff;
}
#gFooter .subNav__inner {
  padding: 40px 0;
  background-color: #5bb7ae;
}
#gFooter .subNav ul {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  margin: auto;
  padding-left: 0;
  padding-bottom: 15px;
  list-style: none;
}
#gFooter .subNav ul:last-child {
  padding-bottom: 0;
}
#gFooter .subNav li {
  padding: 0 20px;
  text-align: center;
  border-left: solid 1px #18796f;
}
#gFooter .subNav li:first-child {
  border-left: none;
}
#gFooter .subNav a {
  color: #fff;
  text-decoration: none;
}
#gFooter .subNav a:hover {
  color: #18796f;
}
#gFooter .subNav .copyright {
  display: block;
  margin: auto;
  padding: 10px 0;
  font-size: 1rem;
  text-align: center;
  background-color: #18796f;
}

/* Extra small devices (スマホ縦画面, 575.98px以下への指定) */
@media (max-width: 575.98px) {
  .breadcrumbOuter {
    display: none;
  }
  .pageHeading {
    font-size: 3rem;
  }

  #gHeader {
    display: none;
  }
  #gHeader .ocean {
    height: 5%;
  }
  #gHeader .contactTel {
    display: none;
  }
  #gHeader .kameyamado {
    margin: 0;
  }
  #gHeader .kameyamado__logo {
    width: 24.4vw;
  }
  #gHeader .sns {
    display: none;
  }

  #gNav {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
  }
  #gNav .navbar {
    padding: 15px 15px 0 15px;
    border-bottom: none;
  }
  #gNav .nav-item {
    display: flex;
    display: -webkit-flex;
    height: auto;
    border-top: dotted 1px #333;
    text-align: left;
  }
  #gNav .nav-item img {
    height: 24px;
    margin: 0 14px 0 0;
  }
  #gNav .nav-item a {
    display: flex;
    top: 0;
    width: 200px;
    margin: auto;
    padding: 16px 0 16px 30px;
  }
  #gNav .nav-item div {
    margin: 0;
    font-size: 16px;
  }

  #gFooter {
    padding-top: 0;
  }
  .heading--jp {
    font-size: 2.6rem;
  }
  #gFooter .orderInfo {
    margin-bottom: 10px;
  }
  #gFooter .orderInfo hr.separaterWave {
    width: 196px;
  }
  #gFooter .orderInfo__heading {
    margin-top: 20px;
  }
  #gFooter .orderInfo__online__iconBox,
  #gFooter .orderInfo__tel__iconBox,
  #gFooter .orderInfo__fax__iconBox {
    font-size: 1rem;
  }
  #gFooter .orderInfo__online__txt,
  #gFooter .orderInfo__tel__txt,
  #gFooter .orderInfo__fax__txt {
    font-size: 1rem;
  }
  #gFooter .orderInfo__online__txt span,
  #gFooter .orderInfo__tel__txt span,
  #gFooter .orderInfo__fax__txt span {
    font-size: 1.8rem;
  }
  #gFooter .orderInfo__freeDialLogo {
    height: 18px;
  }
  #gFooter .deliveryInfo {
    padding-bottom: 60px;
  }
  #gFooter .deliveryInfo__mail__txt {
    font-size: 1.2rem;
  }
  #gFooter .deliveryInfo__send__txt {
    font-size: 1rem;
  }
  #gFooter .deliveryInfo__send__txt span {
    font-size: 1.8rem;
  }
  #gFooter .deliveryInfo__note {
    text-align: left;
    font-size: 1rem;
  }
  #gFooter .deliveryInfo hr.separaterWave {
    width: 196px;
  }
  #gFooter .mainNav {
    display: none;
  }
  #gFooter .subNav {
    margin-top: 0;
  }
  #gFooter .subNav__inner {
    padding: 0;
  }
  #gFooter .subNav .subNav__inner ul {
    display: contents;
  }
  #gFooter .subNav li {
    font-weight: 600;
    padding: 0;
    border-left: none;
    border-bottom: 1px dotted #18796f;
  }
  #gFooter .subNav__inner ul:last-child li:last-child {
    border-bottom: 0;
  }
  #gFooter .subNav a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
  }

  ._tablet {
    display: none;
  }
  ._pc {
    display: none;
  }
  ._sp {
    display: inherit;
  }
}
/* Small devices (スマホ横画面 576px　～　767.98pxへの指定) */
@media (min-width: 576px) and (max-width: 767.98px) {
  #gHeader .contactMail .fa-envelope {
    line-height: 2.6vw;
  }

  #gNav {
    position: inherit;
  }
  #gNav .navbar .navbar-brand {
    display: none;
  }
  #gNav .navbar .sns__inner {
    display: none;
  }
  #gNav .nav-link {
    font-size: 1.3rem;
  }
  .gNav__menu__inquiry {
    display: none;
  }

  #gFooter {
    margin-top: 100px;
    padding-top: 0;
  }
  #gFooter .mainNav {
    display: none;
  }
  #gFooter .orderInfo hr.separaterWave {
    width: 313px;
  }
  #gFooter .orderInfo__online__iconBox,
  #gFooter .orderInfo__tel__iconBox,
  #gFooter .orderInfo__fax__iconBox {
    font-size: 1rem;
  }
  #gFooter .orderInfo__online__txt,
  #gFooter .orderInfo__tel__txt,
  #gFooter .orderInfo__fax__txt {
    font-size: 1rem;
  }
  #gFooter .orderInfo__online__txt span,
  #gFooter .orderInfo__tel__txt span,
  #gFooter .orderInfo__fax__txt span {
    font-size: 1.6rem;
  }
  #gFooter .orderInfo__freeDialLogo {
    height: 18px;
  }
  #gFooter .deliveryInfo {
    padding-bottom: 60px;
  }
  #gFooter .deliveryInfo__mail__txt {
    font-size: 1.2rem;
  }
  #gFooter .deliveryInfo__send__txt {
    font-size: 1rem;
  }
  #gFooter .deliveryInfo__send__txt span {
    font-size: 1.6rem;
  }
  #gFooter .deliveryInfo__note {
    text-align: left;
    font-size: 1rem;
  }
  #gFooter .subNav {
    margin-top: 0;
  }
  #gFooter .subNav__inner {
    padding: 0;
  }
  #gFooter .subNav .subNav__inner ul {
    display: contents;
  }
  #gFooter .subNav li {
    font-weight: 600;
    padding: 0;
    border-left: none;
    border-bottom: 1px dotted #18796f;
  }
  #gFooter .subNav__inner ul:last-child li:last-child {
    border-bottom: 0;
  }
  #gFooter .subNav a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
  }

  ._pc {
    display: none;
  }
  ._tablet {
    display: none;
  }
  ._sp {
    display: inherit;
  }
}
/* Medium devices (タブレット 768px ～ 991.98pxへの指定) */
@media (min-width: 768px) and (max-width: 991.98px) {
  #gHeader .contactMail .fa-envelope {
    line-height: 2.57vw;
  }

  #gNav {
    position: inherit;
  }
  #gNav .navbar .navbar-brand {
    display: none;
  }
  #gNav .navbar .sns__inner {
    display: none;
  }
  .gNav__menu__inquiry {
    display: none;
  }

  #gFooter .deliveryInfo {
  }
  #gFooter .deliveryInfo__note {
    text-align: left;
  }
  #gFooter .deliveryInfo__note li {
    line-height: 2.2rem;
    font-size: 1rem;
  }

  ._sp {
    display: none;
  }
  ._pc {
    display: none;
  }
  ._tablet {
    display: inherit;
  }
}
/* Large devices (デスクトップ 992px以上への指定) */
@media (min-width: 992px) {
  #gHeader {
    padding: 0 0 10px 0;
  }
  #gHeader .contactTel__txt {
    position: absolute;
    top: 50px;
    left: 10px;
    right: 0;
    bottom: 0;
  }
  #gHeader .contactTel__num {
    font-size: 24px;
  }
  #gHeader .contactTel__freeDialLogo {
    height: 20px;
    margin: auto 5px 5px auto;
  }
  #gHeader .contactTel__date {
    font-size: 13px;
  }
  #gHeader .kameyamado {
    margin: 12px 0 0 0;
  }
  #gHeader .kameyamado__logo {
    width: 210px;
  }
  #gHeader .sns {
    margin-top: 36px;
  }
  #gHeader .sns__btn {
    width: 38px;
    height: 38px;
    margin-right: 5px;
    border-radius: 18px;
    box-shadow: 2px 2px 0 rgba(53, 158, 160, 1);
  }
  #gHeader .fa-facebook-f::before {
    position: absolute;
    font-size: 28px;
    bottom: 0;
  }
  #gHeader .fa-twitter::before {
    font-size: 25px;
  }
  #gHeader .fa-instagram::before {
    font-size: 28px;
  }
  #gHeader .sns__btnLine {
    box-shadow: 2px 2px rgba(53, 158, 160, 1);
    -webkit-box-shadow: 2px 2px rgba(53, 158, 160, 1);
  }
  #gHeader .contactMail {
    margin: 8px 0 0 0;
    text-shadow: 2px 2px 1px #369798;
  }
  #gHeader .contactMail .contactMail__bg {
    margin-left: -18px;
  }
  #gHeader .contactMail > a {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    line-height: 24px;
    padding: 8px 0 0 20px;
  }
  #gHeader .contactMail .fa-envelope {
    margin: 0 5px 0 0;
    line-height: 25px;
    font-size: 20px;
  }
  #gHeader .contactMail__txt {
    font-size: 18px;
  }

  #gNav {
    position: inherit;
  }
  #gNav .navbar .navbar-brand {
    display: none;
  }
  #gNav .navbar .sns__inner {
    display: none;
  }
  .gNav__menu__inquiry {
    display: none;
  }

  ._sp {
    display: none;
  }
  ._tablet {
    display: none;
  }
  ._pc {
    display: inherit;
  }
}
/* Extra large devices (デスクトップ大画面 1200px以上への指定) */
@media (min-width: 1200px) {
}
