@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@700&display=swap");
/* bootstrap.css基本の打消し（同じclass名での書き換え）
---------------------------------------------------- */
* {
  margin: 0px;
  padding: 0px;
}

html {
  font-size: 50%;
}
@media (min-width: 992px) {
  html {
    font-size: 62.5%;
  }
}

body {
  color: #000;
  margin: 0px;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 1.8rem;
  font-weight: 500;
}

h1,
h2,
h3,
h5,
h6 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
  line-height: 1.85;
}

img {
  border: 0px;
  max-width: 100%;
  vertical-align: top;
  height: auto;
}

dl,
ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

a {
  color: #00849a;
  text-decoration: underline;
}
a:hover {
  color: #00849a;
  text-decoration: none;
}

/*-------------------------------------------------------------------------------------------*
 *
 * Header
 *  
 *-------------------------------------------------------------------------------------------*/
#header {
  display: flex;
  justify-content: space-between;
  align-content: center;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0px;
  z-index: 100;
  transition: all 600ms 0s ease;
  align-items: center;
  padding: 0px 0px 0px 15px;
  background: #fff;
}
@media (min-width: 992px) {
  #header {
    padding: 0px 0px 0px 30px;
    height: 80px;
  }
}
@media (min-width: 1600px) {
  #header {
    height: 100px;
    padding: 0px 0px 0px 30px;
  }
}
#header #logo {
  display: block;
  transition: all 600ms 0s ease;
  width: 190px;
}
@media (min-width: 768px) {
  #header #logo {
    width: 210px;
  }
}
@media (min-width: 992px) {
  #header #logo {
    width: 240px;
  }
}
@media (min-width: 1600px) {
  #header #logo {
    width: 292px;
  }
}
#header #logo a {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
#header #header-Right {
  display: flex;
  align-items: center;
  height: 100%;
}
#header #mainNavi {
  display: none;
}
@media (min-width: 1200px) {
  #header #mainNavi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
#header #mainNavi > li {
  display: block;
}
#header #mainNavi > li > a {
  padding: 0px 1rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  position: relative;
  width: 100%;
  height: 100%;
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
}
@media (min-width: 1400px) {
  #header #mainNavi > li > a {
    font-size: 1.6rem;
    padding: 0px 1.5rem;
  }
}
@media (min-width: 1600px) {
  #header #mainNavi > li > a {
    font-size: 1.8rem;
    padding: 0px 2rem;
  }
}
#header #mainNavi > li > a .ja {
  margin-bottom: 0.4rem;
  transition: all 600ms 0s ease;
}
#header #mainNavi > li > a .en {
  padding-bottom: 0.4rem;
  transition: all 600ms 0s ease;
  letter-spacing: 0;
  font-size: 1.4rem;
  text-align: center;
}
@media (min-width: 1400px) {
  #header #mainNavi > li > a .en {
    font-size: 1.6rem;
  }
}
#header #mainNavi > li > a .en img {
  transition: all 600ms 0s ease;
  width: 1.8rem;
  margin-left: 0.4rem;
}
#header #mainNavi > li > a:after {
  width: 0%;
  content: "";
  display: block;
  background: #000;
  height: 1px;
  transition: all 600ms 0s ease;
  border: none;
}
#header #mainNavi li.active a,
#header #mainNavi li a:hover {
  color: #00849a;
}
#header #mainNavi li a:hover img {
  filter: invert(35%) sepia(85%) saturate(1160%) hue-rotate(157deg) brightness(87%) contrast(101%);
}
#header #mainNavi li.dropdown:hover:after {
  filter: invert(35%) sepia(85%) saturate(1160%) hue-rotate(157deg) brightness(87%) contrast(101%);
}
#header #contactButton {
  display: none;
}
@media (min-width: 1200px) {
  #header #contactButton {
    display: block;
    margin-left: 1.5rem;
    height: 100%;
  }
}
#header #contactButton a {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #fff;
  height: 100%;
  background: #00849a url(../images/bg_btn.jpg) no-repeat center/auto 100%;
  width: 210px;
  transition: all 600ms 0s ease;
  text-decoration: none;
  padding: 0px 20px;
  font-size: 1.6rem;
}
@media (min-width: 1600px) {
  #header #contactButton a {
    width: 220px;
    font-size: 1.8rem;
  }
}
#header #contactButton a:before {
  display: block;
  content: "";
  width: 45px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: solid 1px #fff;
  background: url(../images/icon_mail.svg) no-repeat center/2rem auto;
  margin-right: 1.4rem;
  filter: brightness(0) invert(1);
}
#header #contactButton a span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
#header #contactButton a:hover, #header #contactButton a.active a {
  opacity: 0.7;
}
#header.on {
  height: 60px;
}
@media (min-width: 992px) {
  #header.on {
    height: 80px;
  }
}
#header.on #logo {
  width: 190px;
}
@media (min-width: 768px) {
  #header.on #logo {
    width: 210px;
  }
}
@media (min-width: 992px) {
  #header.on #logo {
    width: 240px;
  }
}

.dropdown {
  position: relative;
}
.dropdown:after {
  content: "";
  display: block;
  clip-path: polygon(0 0, 100% 0, 50% 76%);
  background: #000;
  width: 8px;
  aspect-ratio: 1;
  position: absolute;
  top: calc(50% - 4px);
  right: 4px;
}

.dropdown-toggle {
  padding-right: 24px !important;
  position: relative;
}
.dropdown-toggle:before {
  position: absolute;
  right: 8px;
  top: 50%;
}

.dropdown-menu {
  border-radius: 0px;
  border: none;
}
.dropdown-menu a {
  display: block;
  text-decoration: none;
  padding: 0.8rem 0px;
  border-bottom: dashed 1px #acacac;
  line-height: 1.2;
  padding-right: 2.8rem;
  position: relative;
}
.dropdown-menu a:hover {
  background: #ececec;
}
.dropdown-menu a:before {
  content: "";
  display: block;
  background: url(../images/icon_arrow.png) no-repeat center;
  position: absolute;
  top: 1.6rem;
}

.dropdown-menu.show {
  width: 280px;
  font-size: 1.4rem;
  margin-top: 6px !important;
  padding: 8px 15px !important;
}
@media (min-width: 1400px) {
  .dropdown-menu.show {
    font-size: 1.6rem;
  }
}

/*-------------------------------------------------------------------------------------------*
     *
     * サイドメニュー
     *  
*-------------------------------------------------------------------------------------------*/
/* -------------------------------
          HambergerMenu
      -------------------------------- */
.menuWrapper {
  position: fixed;
  right: 0px;
  top: 0px;
  width: 60px;
  height: 60px;
  transform: translate3d(0, 0, 0);
  z-index: 103;
  display: block;
}
@media (min-width: 992px) {
  .menuWrapper {
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 1200px) {
  .menuWrapper {
    display: none;
  }
}

@media (min-width: 1200px) {
  .side-open .menuWrapper {
    display: block;
  }
}
.menuWrapper.on {
  right: 0px;
  top: 0px;
}
@media (min-width: 1200px) {
  .menuWrapper.on {
    right: 0px;
    top: 0px;
  }
}

#menuButton {
  background: #00849a;
  overflow: hidden;
  display: block;
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#menuButton span, #menuButton:before, #menuButton:after {
  display: block;
  position: absolute;
  top: -10px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 36px;
  height: 1px;
  margin: auto;
  background: #fff;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #fff;
}
#menuButton:before {
  z-index: 2;
  transform: translate(0, -9px);
  content: "";
}
#menuButton:after {
  z-index: 2;
  transform: translate(0, 9px);
  content: "";
}
#menuButton small {
  position: absolute;
  left: 0;
  width: 100%;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  display: block;
  font-size: 11px;
  bottom: 5px;
}
@media (min-width: 992px) {
  #menuButton small {
    font-size: 13px;
    bottom: 9px;
  }
}

body.side-open #menuButton {
  display: block;
}

/* アニメーション */
#menuButton {
  margin-right: 120px;
}
#menuButton span {
  opacity: 1;
  transition: opacity 150ms 50ms;
}
#menuButton::before, #menuButton::after {
  transition: transform 200ms;
}
.side-open #menuButton span {
  opacity: 0;
  transition: opacity 150ms;
}
.side-open #menuButton::before {
  transform: rotate(45deg);
}
.side-open #menuButton::after {
  transform: rotate(-45deg);
}

#sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 100%;
  text-align: left;
  background-color: #fff;
  transition: transform 0.5s ease;
  overflow-y: auto;
  z-index: 102;
  padding: 90px 15px 15px;
}
@media (min-width: 576px) {
  #sidebar {
    right: -360px;
    width: 360px;
  }
}
.side-open #sidebar {
  transform: translate3d(-100%, 0, 0);
}
#sidebar #side-logo {
  width: 280px;
  margin: 0px auto;
}
#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sidebar a {
  text-decoration: none;
}
#sidebar .list-sidenav {
  width: 100%;
  font-size: 1.8rem;
}
#sidebar .list-sidenav > li {
  text-align: left;
  margin-bottom: 0.5rem;
}
#sidebar .list-sidenav > li > a {
  color: #000;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  padding: 0px;
  position: relative;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  border: solid 1px #00849a;
  background: #f4f8f8;
  height: 64px;
}
#sidebar .list-sidenav > li > a .ja {
  font-size: 15px;
}
#sidebar .list-sidenav > li > a .en {
  font-size: 9px;
}
#sidebar .list-sidenav > li > a:after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1;
  background: url(../images/icon_arrow.svg) no-repeat center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
#sidebar .list-sidenav > li.active > a,
#sidebar .list-sidenav > li > a:hover {
  background: #f7f7f7;
  color: #00849a;
}
#sidebar .list-sidenav > li.has-submenu > a:after {
  width: 18px;
  right: 12px;
  background: url(../images/icon_plus.svg) no-repeat center/16px;
}
#sidebar .list-sidenav > li.has-submenu > a.on:after {
  right: 12px;
  background: url(../images/icon_minus.svg) no-repeat center/16px;
}
#sidebar .submenu {
  background: #fff;
  display: none;
}
#sidebar .submenu li {
  border-bottom: 1px dashed #cacaca;
}
#sidebar .submenu li a {
  height: 46px;
  padding: 0px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  text-align: center;
}
#sidebar .submenu li a:before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1;
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
}
#sidebar .submenu li a:hover {
  background: #f7f7f7;
}
#sidebar .submenu li a.active a {
  background: #f7f7f7;
}

.sidebar-bnr {
  text-align: center;
}
.sidebar-bnr img {
  width: 80%;
  margin: 0px auto;
}

body.side-open {
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
body.side-open::-webkit-scrollbar {
  display: none;
}

#sidebarContact {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 64px;
  background: #00849a url(../images/bg_btn.jpg) no-repeat center/auto 100%;
  width: 100%;
  transition: all 600ms 0s ease;
  text-decoration: none;
  padding: 0px;
  font-size: 1.8rem;
}
#sidebarContact:before {
  display: block;
  content: "";
  width: 45px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: solid 1px #fff;
  background: url(../images/icon_mail.svg) no-repeat center/2rem auto;
  margin-right: 0.6rem;
  filter: brightness(0) invert(1);
}
#sidebarContact span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
#sidebarContact:hover, #sidebarContact.active a {
  opacity: 0.7;
}

#sidebarTel {
  font-weight: 700;
  font-size: 7.2vw;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 576px) {
  #sidebarTel {
    font-size: 3rem;
  }
}
#sidebarTel .time {
  font-size: 1.3rem;
  line-height: 1.4;
}

/* -------------------------------
          オーバーレイ
      -------------------------------- */
.overlay {
  content: "";
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  transition: all 0.5s ease;
  z-index: 101;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
}

/*-------------------------------------------------------------------------------------------*
 *
 * FOOTER
 *  
 *-------------------------------------------------------------------------------------------*/
#footer {
  padding: 45px 0px;
  background: url(../images/bg_footer.jpg) repeat;
  font-weight: 700;
  font-size: 3vw;
  color: #fff;
}
@media (min-width: 576px) {
  #footer {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  #footer {
    padding: 90px 0px;
  }
}
#footer #f-logo a {
  color: #fff;
  text-decoration: none;
}
#footer #f-logo a:hover {
  text-decoration: none;
}
#footer #f-logo span {
  font-size: 5.55vw;
  line-height: 1.2;
}
@media (min-width: 576px) {
  #footer #f-logo span {
    font-size: 3.2rem;
  }
}
#footer .tel a {
  color: #fff;
  text-decoration: none;
}
#footer #copy {
  font-size: 2.4vw;
}
@media (min-width: 576px) {
  #footer #copy {
    font-size: 1.4rem;
  }
}

.bnr-Shop {
  width: 100%;
  height: 220px;
  background: url(../images/bg_shop.jpg) no-repeat center/auto 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 600ms 0s ease;
}
@media (min-width: 576px) {
  .bnr-Shop {
    height: 260px;
  }
}
@media (min-width: 768px) {
  .bnr-Shop {
    height: 300px;
  }
}
.bnr-Shop:hover {
  opacity: 0.8;
}
.bnr-Shop h3 {
  color: #fff;
  font-size: 5.2vw;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.4;
}
@media (min-width: 576px) {
  .bnr-Shop h3 {
    font-size: 3rem;
  }
}
.bnr-Shop h3 span {
  display: block;
  width: 50px;
  aspect-ratio: 1;
  background: #00849a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}
.bnr-Shop h3 span img {
  width: 20px;
  height: auto;
  filter: brightness(0) invert(1);
}

.amazon {
  display: flex;
  padding: 15px;
  align-items: center;
  background-image: linear-gradient(to right, #fff, #fff 10px, transparent 10px, transparent 15px), linear-gradient(to bottom, #fff, #fff 10px, transparent 10px, transparent 15px), linear-gradient(to left, #fff, #fff 10px, transparent 10px, transparent 15px), linear-gradient(to top, #fff, #fff 10px, transparent 10px, transparent 15px); /* 左の線 */
  background-size: 15px 1px, 1px 15px, 15px 1px, 1px 15px; /* 左の線 */
  background-position: left top, right top, right bottom, left bottom; /* 左の線 */
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y; /* 左の線 */
}
@media (min-width: 768px) {
  .amazon {
    padding: 30px;
  }
}
.amazon img {
  width: 35%;
  height: auto;
}
@media (min-width: 1400px) {
  .amazon img {
    width: 25%;
  }
}
.amazon dl {
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 1400px) {
  .amazon dl {
    width: 75%;
  }
}
.amazon dl dd {
  display: flex;
  width: 100%;
}
.amazon dl dd ul {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 100%;
}
@media (min-width: 768px) {
  .amazon dl dd ul {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .amazon dl dd ul {
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .amazon dl dd ul {
    flex-direction: column;
  }
}
@media (min-width: 1400px) {
  .amazon dl dd ul {
    flex-direction: row;
    justify-content: space-evenly;
  }
}
.amazon dl dd ul li {
  display: flex;
  text-align: center;
  justify-content: center;
  margin: 10px 0px;
}
.amazon dl dd ul li a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.amazon dl dd ul li a span {
  display: block;
  width: 6.8vw;
  aspect-ratio: 1;
  background: #00849a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1vw;
}
@media (min-width: 576px) {
  .amazon dl dd ul li a span {
    width: 40px;
    margin-left: 0.6rem;
  }
}
.amazon dl dd ul li a span img {
  width: 3.125vw;
  height: auto;
  filter: brightness(0) invert(1);
}
@media (min-width: 576px) {
  .amazon dl dd ul li a span img {
    width: 18px;
  }
}

#pagetop {
  border: solid 1px #fff;
}

/*-------------------------------------------------------------------------------------------*
 *
 * index.html
 *  
 *-------------------------------------------------------------------------------------------*/
#mainVisual {
  width: 100%;
  height: calc(90vh - 60px);
  padding: 0px 2.5vw;
  background: url(../images/bg_mainvisual.jpg) no-repeat center/auto 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: "Shippori Mincho", serif;
  margin-top: 60px;
}
@media (min-width: 576px) {
  #mainVisual {
    height: calc(100vh - 60px);
  }
}
@media (min-width: 992px) {
  #mainVisual {
    height: calc(100vh - 80px);
    margin-top: 80px;
  }
}
@media (min-width: 1600px) {
  #mainVisual {
    background: url(../images/bg_mainvisual.jpg) no-repeat center/100% auto;
    height: calc(100vh - 100px);
    margin-top: 100px;
  }
}
#mainVisual #catch {
  display: inline-flex;
  padding: 2px;
  background-image: linear-gradient(to right, #909091, #909091 10px, transparent 10px, transparent 15px), linear-gradient(to bottom, #909091, #909091 10px, transparent 10px, transparent 15px), linear-gradient(to left, #909091, #909091 10px, transparent 10px, transparent 15px), linear-gradient(to top, #909091, #909091 10px, transparent 10px, transparent 15px); /* 左の線 */
  background-size: 15px 2px, 2px 15px, 15px 2px, 2px 15px; /* 左の線 */
  background-position: left top, right top, right bottom, left bottom; /* 左の線 */
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y; /* 左の線 */
  width: 100%;
  letter-spacing: 0.1em;
}
@media (min-width: 576px) {
  #mainVisual #catch {
    width: initial;
  }
}
#mainVisual .inr {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 4vw 0px;
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
@media (min-width: 576px) {
  #mainVisual .inr {
    padding: 5.2vw;
    width: initial;
  }
}
@media (min-width: 768px) {
  #mainVisual .inr {
    padding: 50px 80px;
  }
}
#mainVisual .inr .ja {
  font-size: 5.4vw;
  line-height: 1.4;
}
@media (min-width: 576px) {
  #mainVisual .inr .ja {
    font-size: 3rem;
  }
}
#mainVisual .inr .en {
  font-size: 2.4vw;
  letter-spacing: 0;
}
@media (min-width: 576px) {
  #mainVisual .inr .en {
    font-size: 2rem;
  }
}
#mainVisual #catch2 {
  position: absolute;
  color: #fff;
  line-height: 1;
  font-size: 14vw;
  letter-spacing: 0;
  bottom: -0.08em;
  left: 0px;
  right: 0;
  text-align: center;
}
@media (min-width: 576px) {
  #mainVisual #catch2 {
    font-size: 9vw;
  }
}

.about-Wrap {
  padding: 100px 0px;
  background: url(../images/bg_line.jpg) no-repeat center bottom;
}
@media (min-width: 992px) {
  .about-Wrap {
    padding: 200px 0px;
  }
}

.aboutCont01 {
  position: relative;
}
.aboutCont01 .img01 {
  position: initial;
  top: 0;
  right: 0px;
  max-width: 100%;
  transform: translate(0, 0);
}
@media (min-width: 768px) {
  .aboutCont01 .img01 {
    width: 350px;
    position: absolute;
    transform: translate(110%, 0);
  }
}
@media (min-width: 1400px) {
  .aboutCont01 .img01 {
    transform: translate(140%, 0);
  }
}

.aboutCont02 {
  position: relative;
}
.aboutCont02 .img02 {
  position: initial;
  top: 0;
  left: 0px;
  transform: translate(0, 0);
  max-width: 48%;
}
@media (min-width: 768px) {
  .aboutCont02 .img02 {
    width: 350px;
    position: absolute;
    transform: translate(-120%, 0);
  }
}
@media (min-width: 1400px) {
  .aboutCont02 .img02 {
    transform: translate(-180%, 0);
  }
}
.aboutCont02 .img03 {
  position: initial;
  top: 0;
  left: 0px;
  transform: translate(0, 0);
  max-width: 48%;
}
@media (min-width: 768px) {
  .aboutCont02 .img03 {
    width: 350px;
    position: absolute;
    transform: translate(-110%, 110%);
  }
}
@media (min-width: 1400px) {
  .aboutCont02 .img03 {
    transform: translate(-140%, 110%);
  }
}

.gallery-Wrap {
  padding-top: 160px;
  background: url(../images/bg_galerry.jpg) no-repeat center top/auto 160px;
  text-align: center;
}
@media (min-width: 576px) {
  .gallery-Wrap {
    background: url(../images/bg_galerry.jpg) no-repeat center top;
  }
}
@media (min-width: 992px) {
  .gallery-Wrap {
    padding-top: 200px;
  }
}
@media (min-width: 1200px) {
  .gallery-Wrap {
    padding-top: 300px;
  }
}
@media (min-width: 1400px) {
  .gallery-Wrap {
    padding-top: 400px;
  }
}
.gallery-Wrap .inr {
  padding: 30px 0px;
  background: #fff;
  display: inline-block;
  margin: 0px auto;
}
@media (min-width: 1500px) {
  .gallery-Wrap .inr {
    padding: 30px 45px;
  }
}
@media (min-width: 1600px) {
  .gallery-Wrap .inr {
    padding: 30px 90px;
  }
}

.link-Banner {
  text-decoration: none;
  color: #000;
}
.link-Banner:hover img {
  opacity: 0.8;
}
.link-Banner:hover .link-Title:after {
  animation: rotation-icon 2.5s linear 1;
}
@keyframes rotation-icon {
  0% {
    transform: translate(0, -50%) rotateY(0deg);
  }
  100% {
    transform: translate(0, -50%) rotateY(360deg);
  }
}

.link-Title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 78px;
  text-decoration: none;
  background-image: linear-gradient(to right, #cccccc 10px, transparent 5px);
  background-size: 15px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  position: relative;
  transition: all 600ms 0s ease;
}
.link-Title:after {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: solid 1px #000;
  background: url(../images/icon_arrow.svg) no-repeat center/20px auto;
  filter: invert(31%) sepia(77%) saturate(1688%) hue-rotate(162deg) brightness(92%) contrast(102%);
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(0, -50%);
  transition: all 600ms 0s ease;
}

.bluelather-Wrap {
  padding: 50px 0px;
  background: #fff url(../images/bg_bluelather.jpg) repeat-y;
}
.bluelather-Wrap.right {
  background-position: top left 30vw;
}
.bluelather-Wrap.left {
  background-position: top right 30vw;
}

.bluelather-Wrap100 {
  padding: 50px 0px;
  background: #f5fbff;
}

.textBox {
  padding: 25px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.05);
}
@media (min-width: 992px) {
  .textBox {
    padding: 50px;
  }
}
.textBox.white {
  background: #fff;
}
.textBox.gray {
  background: #f4f4f4;
}

.imgShadow {
  position: relative;
}
.imgShadow img {
  position: relative;
  z-index: 2;
}
.imgShadow:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/bg_leather.jpg) repeat;
  position: absolute;
  top: 0;
  right: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.imgShadow.right:after {
  transform: translate(10px, -10px);
}
@media (min-width: 992px) {
  .imgShadow.right:after {
    transform: translate(20px, -20px);
  }
}

.heightCont {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  justify-content: center;
}

.top-Banner {
  width: 100%;
  height: 100%;
  padding: 4.34vw;
  display: flex;
  text-decoration: none;
  color: #000;
  font-size: 3.125vw;
}
@media (min-width: 576px) {
  .top-Banner {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  .top-Banner {
    padding: 50px;
  }
}
.top-Banner:hover {
  text-decoration: none;
  color: #00849a;
}
.top-Banner:hover .inr .icon-Arrow {
  animation: rotation-y 2.5s linear 1;
}
@keyframes rotation-y {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.top-Banner.institute {
  background: url(../images/bg_institute.jpg) no-repeat center/cover;
}
.top-Banner.method {
  background: url(../images/bg_method.jpg) no-repeat center/cover;
}
.top-Banner .inr {
  transition: all 600ms 0s ease;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  padding: 50px 15px;
}
@media (min-width: 992px) {
  .top-Banner .inr {
    padding: 95px 15px;
  }
}
.top-Banner .inr h3 {
  color: #00849a;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.top-Banner .inr .icon-Arrow {
  background: #00849a;
  width: 40px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
@media (min-width: 992px) {
  .top-Banner .inr .icon-Arrow {
    width: 60px;
    right: 15px;
    bottom: 15px;
  }
}
.top-Banner .inr .icon-Arrow img {
  filter: brightness(0) invert(1);
  width: 24px;
  height: auto;
}

/*-------------------------------------------------------------------------------------------*
 *
 * gallery.html
 *  
 *-------------------------------------------------------------------------------------------*/
.categoryBtn {
  display: block;
  text-decoration: none;
}
.categoryBtn dl {
  display: flex;
  width: 100%;
  padding: 5px 0px;
  background-image: linear-gradient(to right, #cccccc 10px, transparent 5px);
  background-size: 15px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  font-size: 3.1vw;
}
@media (min-width: 576px) {
  .categoryBtn dl {
    font-size: 1.8rem;
  }
}
.categoryBtn dl dd {
  width: 10vw;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 2.6vw;
}
@media (min-width: 576px) {
  .categoryBtn dl dd {
    margin-right: 16px;
    width: 60px;
  }
}
@media (min-width: 992px) {
  .categoryBtn dl dd {
    width: 75px;
  }
}
.categoryBtn dl dd img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.categoryBtn dl dt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-weight: 500;
}

/*-------------------------------------------------------------------------------------------*
 *
 * institute.html
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * method.html
 *  
 *-------------------------------------------------------------------------------------------*/
.dotList li {
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.dotList li:last-child {
  margin-bottom: 0;
}
.dotList li:before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: #000;
  position: absolute;
  left: 0;
  top: 0.8rem;
  border-radius: 50%;
}
.dotList.Horizonal {
  display: flex;
  flex-wrap: wrap;
}
.dotList.Horizonal li {
  margin-right: 3rem;
  white-space: nowrap;
}

.googleMap {
  width: 100%;
  height: 320px;
}
@media (min-width: 992px) {
  .googleMap {
    height: 480px;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * contact.html
 *  
 *-------------------------------------------------------------------------------------------*/
.contact-Btn-Wrap {
  background: url(../images/bg_bluelather.jpg);
  width: 100%;
  padding: 30px 15px;
}

.contact-Btn {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #000;
  font-weight: 300;
  text-decoration: none;
  font-size: 7.3vw;
}
@media (min-width: 576px) {
  .contact-Btn {
    font-size: 4.8rem;
  }
}
.contact-Btn a {
  text-decoration: none;
  color: #000;
}
.contact-Btn span {
  padding-bottom: 0.8rem;
  line-height: 1;
}
.contact-Btn img {
  margin-right: 2vw;
  width: 7.4vw;
}
@media (min-width: 576px) {
  .contact-Btn img {
    margin-right: 1.2rem;
    width: 38px;
  }
}
@media (min-width: 992px) {
  .contact-Btn img {
    margin-right: 1.6rem;
    width: 44px;
  }
}

.mailfoamTable {
  width: 100%;
  margin-bottom: 10px;
}
.mailfoamTable th {
  width: 100%;
  padding: 15px 15px 10px 0px;
  font-weight: bold;
  border-top: none;
  border-bottom: solid 1px #ccc;
  line-height: 140%;
  display: block;
}
.mailfoamTable th div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.mailfoamTable th .required {
  margin-left: 1.6rem;
}
.mailfoamTable td {
  width: 100%;
  padding: 15px 0px 30px 0px;
  border: none;
  line-height: 140%;
  display: block;
}
.mailfoamTable td .form-control {
  font-size: 1.4rem;
  padding: 0.75rem 1.25rem;
}

@media (min-width: 768px) {
  .mailfoamTable table {
    width: 100%;
    display: table;
  }
  .mailfoamTable th {
    width: 30%;
    font-weight: bold;
    border-top: solid 1px #0084a7;
    border-bottom: solid 1px #0084a7;
    line-height: 140%;
    display: table-cell;
    vertical-align: middle;
    padding: 25px 15px;
  }
  .mailfoamTable th div {
    justify-content: space-between;
  }
  .mailfoamTable td {
    padding: 25px 0px 25px 15px;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
  }
}
.select-Wrap {
  position: relative;
  display: inline-block;
  width: 80%;
}
@media (min-width: 768px) {
  .select-Wrap {
    width: 25%;
  }
}
.select-Wrap:after {
  position: absolute;
  content: "";
  clip-path: polygon(100% 0, 0 0, 50% 80%);
  width: 8px;
  aspect-ratio: 1;
  top: calc(50% + 1px);
  right: 4%;
  background: #333;
  pointer-events: none;
  transform: translate(0, -50%);
}
.select-Wrap select {
  -webkit-appearance: none;
}

textarea {
  width: 100%;
}

.form25 {
  width: 80%;
  display: inline-block;
}

.form50 {
  width: 100%;
  display: inline-block;
}

@media (min-width: 767px) {
  .form25 {
    width: 25%;
  }
  .form50 {
    width: 50%;
  }
}
.need {
  color: #df443e;
  font-size: 12px;
  border-radius: 4px;
  float: right;
  line-height: 1em;
}

.required {
  background: #df443e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 44px;
  color: #fff;
  padding: 0px 0px 1px;
  border-radius: 3px;
  line-height: 1;
  font-size: 11px;
}

.formBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 475px;
  min-height: 56px;
  background: #00849a;
  color: #fff;
  position: relative;
  font-size: 4.2vw;
  line-height: 1.2;
  padding: 8px 0px;
  border-radius: 30px;
}
@media (min-width: 576px) {
  .formBtn {
    font-size: 18px;
  }
}
.formBtn:hover {
  opacity: 0.8;
  text-decoration: none;
}
.formBtn.back:before {
  content: "";
  background: url(../images/icon_arrow-left.svg) no-repeat center/contain;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 1.2rem;
  filter: brightness(0) invert(1);
}
.formBtn.next:after {
  content: "";
  background: url(../images/icon_arrow-right.svg) no-repeat center/contain;
  display: inline-block;
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  margin-right: 1.2rem;
}

button.formBtn {
  border: none;
  outline: none;
}
button.formBtn:hover {
  outline: none;
}

.privacyBox {
  height: 250px;
  overflow: auto;
  overflow-y: scroll;
  font-size: 14px;
  line-height: normal;
  padding: 20px;
  border: solid 1px #ccc;
  border-radius: 8px;
  box-shadow: 0px 1px 2px #999 inset;
  background: #fff;
  word-wrap: break-word;
}
.privacyBox h4 {
  font-size: 120%;
  font-weight: bold;
  border-bottom: #ccc solid 1px;
  margin-bottom: 10px;
}
.privacyBox p {
  margin-bottom: 1em;
}
.privacyBox ul {
  margin-bottom: 1em;
  margin-left: 10px;
}
.privacyBox ol {
  margin-bottom: 1em;
  margin-left: 0px;
  padding: 0px;
}
.privacyBox li {
  list-style: decimal outside;
  margin-left: 2em;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .privacyBox ul {
    margin-bottom: 1em;
    margin-left: 20px;
  }
}
.ttl_policy {
  font-size: 120%;
  font-weight: bold;
}

.out-line {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 50px 0;
}

/*-------------------------------------------------------------------------------------------*
 *
 * title
 *  
 *-------------------------------------------------------------------------------------------*/
#h2Title {
  width: 100%;
  height: 360px;
  padding: 0px 2.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: "Shippori Mincho", serif;
  margin-top: 60px;
}
@media (min-width: 576px) {
  #h2Title {
    height: 400px;
  }
}
@media (min-width: 992px) {
  #h2Title {
    height: 440px;
    margin-top: 80px;
  }
}
@media (min-width: 1600px) {
  #h2Title {
    height: 480px;
    margin-top: 100px;
  }
}
#h2Title h2 {
  display: inline-flex;
  padding: 2px;
  background-image: linear-gradient(to right, #909091, #909091 10px, transparent 10px, transparent 15px), linear-gradient(to bottom, #909091, #909091 10px, transparent 10px, transparent 15px), linear-gradient(to left, #909091, #909091 10px, transparent 10px, transparent 15px), linear-gradient(to top, #909091, #909091 10px, transparent 10px, transparent 15px); /* 左の線 */
  background-size: 15px 2px, 2px 15px, 15px 2px, 2px 15px; /* 左の線 */
  background-position: left top, right top, right bottom, left bottom; /* 左の線 */
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y; /* 左の線 */
  width: 100%;
  letter-spacing: 0.1em;
}
@media (min-width: 1400px) {
  #h2Title h2 {
    width: 1350px;
  }
}
#h2Title .inr {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 4vw 0px;
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.1em;
}
@media (min-width: 576px) {
  #h2Title .inr {
    padding: 5.2vw;
  }
}
@media (min-width: 768px) {
  #h2Title .inr {
    padding: 50px 80px;
  }
}
#h2Title .inr .en {
  font-size: 6.25vw;
}
@media (min-width: 576px) {
  #h2Title .inr .en {
    font-size: 3.6rem;
  }
}
#h2Title .inr .ja {
  font-size: 3.47vw;
  line-height: 1.4;
}
@media (min-width: 576px) {
  #h2Title .inr .ja {
    font-size: 2rem;
  }
}
#h2Title.p02 {
  background: url(../images/bg_h2title02.jpg) no-repeat center/auto 100%;
}
#h2Title.p03 {
  background: url(../images/bg_h2title03.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title.p04 {
  background: url(../images/bg_h2title04.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title.p05 {
  background: url(../images/bg_h2title05.jpg) no-repeat center;
  background-size: auto 100%;
}

.title-Lined {
  display: flex;
  flex-direction: column;
  position: relative;
  color: #00849a;
  font-weight: 700;
  font-size: 5.2vw;
  background-image: linear-gradient(to right, #00849a 10px, transparent 5px);
  background-size: 15px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  line-height: 1.4;
  padding-bottom: 15px;
  letter-spacing: 0.1em;
  width: 100%;
}
@media (min-width: 576px) {
  .title-Lined {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .title-Lined {
    padding-bottom: 20px;
  }
}
.title-Lined.center {
  align-items: center;
  text-align: center;
}
.title-Lined.white .en {
  color: #fff;
}
.title-Lined.white .ja {
  color: #fff;
}
.title-Lined.white .ja:before {
  background: #fff;
}
.title-Lined.white .ja:after {
  background: #fff;
}

.subTitle {
  font-size: 2.4rem;
  font-weight: 700;
  color: #00849a;
}

.read {
  font-size: 2rem;
  font-weight: 700;
}
.read:before {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1;
  background: #0a5cb8;
  margin-right: 8px;
  vertical-align: middle;
}

/*-------------------------------------------------------------------------------------------*
 *
 * table
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * button
 *  
 *-------------------------------------------------------------------------------------------*/
.detailBtn {
  display: inline-flex;
  background: #0c3388;
  color: #fff;
  font-weight: 700;
  max-width: 220px;
  width: 100%;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  padding: 0px 20px;
  text-decoration: none;
}
.detailBtn:after {
  content: "";
  width: 25px;
  height: 20px;
  background: url(../images/icon_arrow.png) no-repeat center/contain;
  transition: all 600ms 0s ease;
}
.detailBtn:hover {
  color: #fff;
  background: #1449bb;
}
.detailBtn:hover:after {
  transform: translate(4px, 0);
}

/*-------------------------------------------------------------------------------------------*
 *
 * Component
 *  
 *-------------------------------------------------------------------------------------------*/
.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.wrapper {
  width: 100%;
  padding: 0px 15px;
}

.padding-Right {
  padding-right: 0;
}
@media (min-width: 992px) {
  .padding-Right {
    padding-right: 8.1%;
  }
}

.padding-Left {
  padding-left: 0;
}
@media (min-width: 992px) {
  .padding-Left {
    padding-left: 8.1%;
  }
}

.anchor {
  padding-top: 100px;
  margin-top: -100px;
}

.objectfit-Img {
  width: 100%;
  height: 100%;
}
.objectfit-Img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.photo-ofi {
  height: 0;
  display: block;
  padding-bottom: 75%;
  background-color: #f5f5f5;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  font-family: "object-fit: scale-down;";
  position: absolute;
  left: 0;
  top: 0;
}

.rel {
  position: relative;
}

.posa {
  position: absolute;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.clear {
  clear: both;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.red {
  color: #c03636;
}

.pbb {
  page-break-before: always;
}

.ls0 {
  letter-spacing: 0;
}

.ls01 {
  letter-spacing: 0.09em;
}

.lh1 {
  line-height: 1;
}

.lh14 {
  line-height: 1.4;
}

.lh2 {
  line-height: 2;
}

small {
  font-size: 75%;
}

.fs12 {
  font-size: 2.08vw;
}

.fs14 {
  font-size: 2.43vw;
}

.fs15 {
  font-size: 2.6vw;
}

.fs16 {
  font-size: 2.7vw;
}

.fs18 {
  font-size: 3.125 vw;
}

.fs24 {
  font-size: 4.16vw;
}

.fs30 {
  font-size: 4.8vw;
}

.fs36 {
  font-size: 6.25vw;
}

@media (min-width: 576px) {
  .fs12 {
    font-size: 1.2rem;
  }
  .fs14 {
    font-size: 1.4rem;
  }
  .fs15 {
    font-size: 1.5rem;
  }
  .fs16 {
    font-size: 1.6rem;
  }
  .fs18 {
    font-size: 1.8rem;
  }
  .fs24 {
    font-size: 2.4rem;
  }
  .fs30 {
    font-size: 2.9rem;
  }
  .fs36 {
    font-size: 3.6rem;
  }
}
.fs-12 {
  font-size: 1.2rem;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-15 {
  font-size: 1.5rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fs-24 {
  font-size: 2.4rem;
}

.fs-30 {
  font-size: 2.9rem;
}

.fs-36 {
  font-size: 3.6rem;
}

.m-auto {
  margin: 0px auto;
}

.mt-00 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-90 {
  margin-top: 90px;
}

@media (min-width: 992px) {
  .mt-lg-00 {
    margin-top: 0px;
  }
  .mt-lg-10 {
    margin-top: 10px;
  }
  .mt-lg-20 {
    margin-top: 20px;
  }
  .mt-lg-30 {
    margin-top: 30px;
  }
  .mt-lg-60 {
    margin-top: 60px;
  }
  .mt-lg-90 {
    margin-top: 90px;
  }
}
.ml-00 {
  margin-left: 0px !important;
}

.mr-05 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mb00 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 5px !important;
}

.mb15 {
  margin-bottom: 7.5px !important;
}

.mb20 {
  margin-bottom: 10px !important;
}

.mb30 {
  margin-bottom: 15px !important;
}

.mb40 {
  margin-bottom: 20px !important;
}

.mb50 {
  margin-bottom: 25px !important;
}

.mb60 {
  margin-bottom: 30px !important;
}

.mb70 {
  margin-bottom: 35px !important;
}

.mb80 {
  margin-bottom: 40px !important;
}

.mb90 {
  margin-bottom: 45px !important;
}

.mb100 {
  margin-bottom: 50px !important;
}

.mb120 {
  margin-bottom: 60px !important;
}

.mb140 {
  margin-bottom: 70px !important;
}

.mb150 {
  margin-bottom: 75px !important;
}

.mb160 {
  margin-bottom: 80px !important;
}

.mb180 {
  margin-bottom: 90px !important;
}

.mb200 {
  margin-bottom: 100px !important;
}

.mb220 {
  margin-bottom: 110px !important;
}

.mb240 {
  margin-bottom: 120px !important;
}

@media (min-width: 992px), print {
  .mb10 {
    margin-bottom: 10px !important;
  }
  .mb15 {
    margin-bottom: 15px !important;
  }
  .mb20 {
    margin-bottom: 20px !important;
  }
  .mb30 {
    margin-bottom: 30px !important;
  }
  .mb40 {
    margin-bottom: 40px !important;
  }
  .mb50 {
    margin-bottom: 50px !important;
  }
  .mb60 {
    margin-bottom: 60px !important;
  }
  .mb70 {
    margin-bottom: 70px !important;
  }
  .mb80 {
    margin-bottom: 80px !important;
  }
  .mb90 {
    margin-bottom: 90px !important;
  }
  .mb100 {
    margin-bottom: 100px !important;
  }
  .mb120 {
    margin-bottom: 120px !important;
  }
  .mb140 {
    margin-bottom: 140px !important;
  }
  .mb150 {
    margin-bottom: 150px !important;
  }
  .mb160 {
    margin-bottom: 160px !important;
  }
  .mb180 {
    margin-bottom: 180px !important;
  }
  .mb200 {
    margin-bottom: 200px !important;
  }
  .mb220 {
    margin-bottom: 220px !important;
  }
  .mb240 {
    margin-bottom: 240px !important;
  }
}
.mb00 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 5px !important;
}

.mb15 {
  margin-bottom: 7.5px !important;
}

.mb20 {
  margin-bottom: 10px !important;
}

.mb30 {
  margin-bottom: 15px !important;
}

.mb40 {
  margin-bottom: 20px !important;
}

.mb50 {
  margin-bottom: 25px !important;
}

.mb60 {
  margin-bottom: 30px !important;
}

.mb70 {
  margin-bottom: 35px !important;
}

.mb80 {
  margin-bottom: 40px !important;
}

.mb90 {
  margin-bottom: 45px !important;
}

.mb100 {
  margin-bottom: 50px !important;
}

.mb120 {
  margin-bottom: 60px !important;
}

.mb140 {
  margin-bottom: 70px !important;
}

.mb160 {
  margin-bottom: 80px !important;
}

.mb180 {
  margin-bottom: 90px !important;
}

.mb250 {
  margin-bottom: 175px !important;
}

@media (min-width: 992px), print {
  .mb10 {
    margin-bottom: 10px !important;
  }
  .mb15 {
    margin-bottom: 15px !important;
  }
  .mb20 {
    margin-bottom: 20px !important;
  }
  .mb30 {
    margin-bottom: 30px !important;
  }
  .mb40 {
    margin-bottom: 40px !important;
  }
  .mb50 {
    margin-bottom: 50px !important;
  }
  .mb60 {
    margin-bottom: 60px !important;
  }
  .mb70 {
    margin-bottom: 70px !important;
  }
  .mb80 {
    margin-bottom: 80px !important;
  }
  .mb90 {
    margin-bottom: 90px !important;
  }
  .mb100 {
    margin-bottom: 100px !important;
  }
  .mb120 {
    margin-bottom: 120px !important;
  }
  .mb140 {
    margin-bottom: 140px !important;
  }
  .mb160 {
    margin-bottom: 160px !important;
  }
  .mb180 {
    margin-bottom: 180px !important;
  }
  .mb250 {
    margin-bottom: 250px !important;
  }
}
.mb-00 {
  margin-bottom: 0px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.mb-150 {
  margin-bottom: 150px !important;
}

.mb-180 {
  margin-bottom: 180px !important;
}

.mb-210 {
  margin-bottom: 210px !important;
}

.mb-240 {
  margin-bottom: 240px !important;
}

.mb-250 {
  margin-bottom: 250px !important;
}

@media (min-width: 576px) {
  .mb-sm-00 {
    margin-bottom: 0px !important;
  }
  .mb-sm-10 {
    margin-bottom: 10px !important;
  }
  .mb-sm-15 {
    margin-bottom: 15px !important;
  }
  .mb-sm-20 {
    margin-bottom: 20px !important;
  }
  .mb-sm-30 {
    margin-bottom: 30px !important;
  }
  .mb-sm-40 {
    margin-bottom: 40px !important;
  }
  .mb-sm-50 {
    margin-bottom: 50px !important;
  }
  .mb-sm-60 {
    margin-bottom: 60px !important;
  }
  .mb-sm-70 {
    margin-bottom: 70px !important;
  }
  .mb-sm-80 {
    margin-bottom: 80px !important;
  }
  .mb-sm-90 {
    margin-bottom: 90px !important;
  }
  .mb-sm-100 {
    margin-bottom: 100px !important;
  }
  .mb-sm-120 {
    margin-bottom: 120px !important;
  }
  .mb-sm-150 {
    margin-bottom: 150px !important;
  }
  .mb-sm-180 {
    margin-bottom: 180px !important;
  }
  .mb-sm-210 {
    margin-bottom: 210px !important;
  }
  .mb-sm-240 {
    margin-bottom: 240px !important;
  }
  .mb-sm-250 {
    margin-bottom: 250px !important;
  }
}
@media (min-width: 768px) {
  .mb-md-00 {
    margin-bottom: 0px !important;
  }
  .mb-md-10 {
    margin-bottom: 10px !important;
  }
  .mb-md-15 {
    margin-bottom: 15px !important;
  }
  .mb-md-20 {
    margin-bottom: 20px !important;
  }
  .mb-md-30 {
    margin-bottom: 30px !important;
  }
  .mb-md-40 {
    margin-bottom: 40px !important;
  }
  .mb-md-50 {
    margin-bottom: 50px !important;
  }
  .mb-md-60 {
    margin-bottom: 60px !important;
  }
  .mb-md-70 {
    margin-bottom: 70px !important;
  }
  .mb-md-80 {
    margin-bottom: 80px !important;
  }
  .mb-md-90 {
    margin-bottom: 90px !important;
  }
  .mb-md-100 {
    margin-bottom: 100px !important;
  }
  .mb-md-120 {
    margin-bottom: 120px !important;
  }
  .mb-md-150 {
    margin-bottom: 150px !important;
  }
  .mb-md-180 {
    margin-bottom: 180px !important;
  }
  .mb-md-210 {
    margin-bottom: 210px !important;
  }
  .mb-md-240 {
    margin-bottom: 240px !important;
  }
  .mb-md-250 {
    margin-bottom: 250px !important;
  }
}
@media (min-width: 992px) {
  .mb-lg-00 {
    margin-bottom: 0px !important;
  }
  .mb-lg-10 {
    margin-bottom: 10px !important;
  }
  .mb-lg-15 {
    margin-bottom: 15px !important;
  }
  .mb-lg-20 {
    margin-bottom: 20px !important;
  }
  .mb-lg-30 {
    margin-bottom: 30px !important;
  }
  .mb-lg-40 {
    margin-bottom: 40px !important;
  }
  .mb-lg-50 {
    margin-bottom: 50px !important;
  }
  .mb-lg-60 {
    margin-bottom: 60px !important;
  }
  .mb-lg-70 {
    margin-bottom: 70px !important;
  }
  .mb-lg-80 {
    margin-bottom: 80px !important;
  }
  .mb-lg-90 {
    margin-bottom: 90px !important;
  }
  .mb-lg-100 {
    margin-bottom: 100px !important;
  }
  .mb-lg-120 {
    margin-bottom: 120px !important;
  }
  .mb-lg-150 {
    margin-bottom: 150px !important;
  }
  .mb-lg-180 {
    margin-bottom: 180px !important;
  }
  .mb-lg-210 {
    margin-bottom: 210px !important;
  }
  .mb-lg-240 {
    margin-bottom: 240px !important;
  }
  .mb-lg-250 {
    margin-bottom: 250px !important;
  }
}
@media (min-width: 1200px) {
  .mb-xl-00 {
    margin-bottom: 0px !important;
  }
  .mb-xl-10 {
    margin-bottom: 10px !important;
  }
  .mb-xl-15 {
    margin-bottom: 15px !important;
  }
  .mb-xl-20 {
    margin-bottom: 20px !important;
  }
  .mb-xl-30 {
    margin-bottom: 30px !important;
  }
  .mb-xl-40 {
    margin-bottom: 40px !important;
  }
  .mb-xl-50 {
    margin-bottom: 50px !important;
  }
  .mb-xl-60 {
    margin-bottom: 60px !important;
  }
  .mb-xl-70 {
    margin-bottom: 70px !important;
  }
  .mb-xl-80 {
    margin-bottom: 80px !important;
  }
  .mb-xl-90 {
    margin-bottom: 90px !important;
  }
  .mb-xl-100 {
    margin-bottom: 100px !important;
  }
  .mb-xl-120 {
    margin-bottom: 120px !important;
  }
  .mb-xl-150 {
    margin-bottom: 150px !important;
  }
  .mb-xl-180 {
    margin-bottom: 180px !important;
  }
  .mb-xl-210 {
    margin-bottom: 210px !important;
  }
  .mb-xl-240 {
    margin-bottom: 240px !important;
  }
  .mb-xl-250 {
    margin-bottom: 250px !important;
  }
}
@media (min-width: 1400px) {
  .mb-xxl-00 {
    margin-bottom: 0px !important;
  }
  .mb-xxl-10 {
    margin-bottom: 10px !important;
  }
  .mb-xxl-15 {
    margin-bottom: 15px !important;
  }
  .mb-xxl-20 {
    margin-bottom: 20px !important;
  }
  .mb-xxl-30 {
    margin-bottom: 30px !important;
  }
  .mb-xxl-40 {
    margin-bottom: 40px !important;
  }
  .mb-xxl-50 {
    margin-bottom: 50px !important;
  }
  .mb-xxl-60 {
    margin-bottom: 60px !important;
  }
  .mb-xxl-70 {
    margin-bottom: 70px !important;
  }
  .mb-xxl-80 {
    margin-bottom: 80px !important;
  }
  .mb-xxl-90 {
    margin-bottom: 90px !important;
  }
  .mb-xxl-100 {
    margin-bottom: 100px !important;
  }
  .mb-xxl-120 {
    margin-bottom: 120px !important;
  }
  .mb-xxl-150 {
    margin-bottom: 150px !important;
  }
  .mb-xxl-180 {
    margin-bottom: 180px !important;
  }
  .mb-xxl-210 {
    margin-bottom: 210px !important;
  }
  .mb-xxl-240 {
    margin-bottom: 240px !important;
  }
  .mb-xxl-250 {
    margin-bottom: 250px !important;
  }
}
@media print {
  .mb-00 {
    margin-bottom: 0px !important;
  }
  .mb-10 {
    margin-bottom: 10px !important;
  }
  .mb-15 {
    margin-bottom: 15px !important;
  }
  .mb-20 {
    margin-bottom: 20px !important;
  }
  .mb-30 {
    margin-bottom: 30px !important;
  }
  .mb-40 {
    margin-bottom: 40px !important;
  }
  .mb-50 {
    margin-bottom: 50px !important;
  }
  .mb-60 {
    margin-bottom: 60px !important;
  }
  .mb-70 {
    margin-bottom: 70px !important;
  }
  .mb-80 {
    margin-bottom: 80px !important;
  }
  .mb-90 {
    margin-bottom: 90px !important;
  }
  .mb-100 {
    margin-bottom: 100px !important;
  }
  .mb-120 {
    margin-bottom: 120px !important;
  }
  .mb-150 {
    margin-bottom: 150px !important;
  }
  .mb-180 {
    margin-bottom: 180px !important;
  }
  .mb-210 {
    margin-bottom: 210px !important;
  }
  .mb-240 {
    margin-bottom: 240px !important;
  }
}/*# sourceMappingURL=style.css.map */