@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Andika:ital,wght@0,400;0,700;1,400;1,700&display=swap");
/* bootstrap.css基本の打消し（同じclass名での書き換え）
---------------------------------------------------- */
* {
  margin: 0px;
  padding: 0px;
}

html {
  font-family: "Andika", sans-serif;
  font-size: 50%;
}
@media (min-width: 992px) {
  html {
    font-size: 62.5%;
  }
}

body {
  background: #fffbf2;
  color: #484645;
  margin: 0px;
  font-family: "Zen Maru Gothic", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
  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: #484645;
  text-decoration: underline;
}
a:hover {
  color: #484645;
  text-decoration: none;
}

/*-------------------------------------------------------------------------------------------*
 *
 * Header
 *  
 *-------------------------------------------------------------------------------------------*/
#header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0px;
  z-index: 100;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 15px;
  background: #fffbf2;
}
@media (min-width: 576px) {
  #header {
    padding: 0px 30px;
  }
}
@media (min-width: 768px) {
  #header {
    height: 80px;
  }
}
@media (min-width: 992px) {
  #header {
    padding: 0px 40px;
    height: 100px;
  }
}
@media (min-width: 1400px) {
  #header {
    height: 138px;
    padding: 0px 60px;
  }
}
#header #logo {
  display: block;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  width: 220px;
}
@media (min-width: 768px) {
  #header #logo {
    width: 250px;
  }
}
@media (min-width: 992px) {
  #header #logo {
    width: 280px;
  }
}
@media (min-width: 1400px) {
  #header #logo {
    width: 310px;
  }
}
@media (min-width: 1600px) {
  #header #logo {
    width: 342px;
  }
}
#header #logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#header #header-Right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header #mainNavi {
  display: none;
}
@media (min-width: 992px) {
  #header #mainNavi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#header #mainNavi > li {
  display: block;
  margin-right: 4rem;
}
#header #mainNavi > li > a {
  text-decoration: none;
  line-height: 1;
  position: relative;
  width: 100%;
  height: 100%;
  font-weight: 400;
  font-size: 1.6rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media (min-width: 1400px) {
  #header #mainNavi > li > a {
    font-size: 1.6rem;
  }
}
#header #mainNavi > li > a:after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 0;
  height: 0;
  content: "";
  display: block;
  background: #ffac41;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  border: none;
  border-radius: 50%;
}
#header #mainNavi li.active a:after,
#header #mainNavi li a:hover:after {
  width: 6px;
  height: 6px;
}
#header #contactButton {
  display: none;
}
@media (min-width: 992px) {
  #header #contactButton {
    display: block;
    margin-right: 3rem;
  }
  #header #contactButton a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    font-weight: 400;
    height: 100%;
    background: #ffac41;
    width: 190px;
    height: 46px;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 8px;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  #header #contactButton a {
    width: 204px;
    height: 50px;
  }
}
@media (min-width: 992px) {
  #header #contactButton a:after {
    display: none;
  }
  #header #contactButton a img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    width: 16px;
    margin-left: 1.6rem;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  #header #contactButton a img {
    width: 16px;
  }
}
@media (min-width: 992px) {
  #header #contactButton a:hover, #header #contactButton a.active a {
    background: #484645;
  }
}
#header #header-Tel {
  display: none;
}
@media (min-width: 1200px) {
  #header #header-Tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: "Andika", sans-serif;
    border-left: solid 1px #dddddd;
    height: 60px;
    padding-left: 30px;
    line-height: 1;
  }
}
#header #header-Tel .txt {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
#header #header-Tel .num {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffac41;
  position: relative;
  padding-left: 3.5rem;
}
#header #header-Tel .num img {
  width: 24px;
  -webkit-filter: invert(75%) sepia(85%) saturate(970%) hue-rotate(326deg) brightness(102%) contrast(101%);
          filter: invert(75%) sepia(85%) saturate(970%) hue-rotate(326deg) brightness(102%) contrast(101%);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
#header.on {
  height: 60px;
}
@media (min-width: 768px) {
  #header.on {
    height: 80px;
  }
}
@media (min-width: 992px) {
  #header.on {
    height: 100px;
  }
}
#header.on #logo {
  width: 220px;
}
@media (min-width: 768px) {
  #header.on #logo {
    width: 250px;
  }
}
@media (min-width: 992px) {
  #header.on #logo {
    width: 280px;
  }
}
#header.on #mainNavi a {
  text-shadow: none;
  color: #000;
}
#header.on #mainNavi a .ja {
  font-size: 1.5rem;
}
#header.on #mainNavi a .en {
  font-size: 1.2rem;
}
#header.on #mainNavi a::before {
  background: #000;
}

/*-------------------------------------------------------------------------------------------*
     *
     * サイドメニュー
     *  
*-------------------------------------------------------------------------------------------*/
#sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 100%;
  text-align: left;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  overflow-y: auto;
  z-index: 102;
  padding: 60px 15px 15px;
}
@media (min-width: 576px) {
  #sidebar {
    right: -320px;
    width: 320px;
  }
}
.side-open #sidebar {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}
#sidebar #side-logo {
  width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0px auto;
}
#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sidebar a {
  text-decoration: none;
}
#sidebar .list-sidenav {
  width: 100%;
  font-size: 2rem;
}
#sidebar .list-sidenav > li {
  text-align: left;
}
#sidebar .list-sidenav > li > a {
  color: #3a3a3a;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 10px;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: url(../images/dot.png) repeat-x left bottom/auto 2px;
  font-weight: 500;
}
#sidebar .list-sidenav > li > a .ja {
  font-size: 15px;
}
#sidebar .list-sidenav > li > a .en {
  font-size: 12px;
}
#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;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
#sidebar .list-sidenav > li.active > a,
#sidebar .list-sidenav > li > a:hover {
  color: #ffac41;
  font-weight: 700;
}
#sidebar .list-sidenav > li.has-submenu > a:after {
  width: 18px;
  right: 4px;
  background: url(../images/icon_plus.svg) no-repeat center/16px;
}
#sidebar .list-sidenav > li.has-submenu > a.on:after {
  right: 4px;
  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 {
  padding: 10px 15px 10px 28px;
  font-size: 14px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
#sidebar .submenu li a:before {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1;
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
          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 {
  width: 100%;
  background: #ffac41 url(../images/bg_btn.jpg) no-repeat center/100% auto;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  padding: 0px 25px;
  height: 60px;
  font-size: 20px;
  border-radius: 8px;
}
#sidebarContact img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  margin-right: 1.2rem;
  width: 19px;
  height: auto;
}
#sidebarContact:hover {
  opacity: 0.9;
}

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

.time-Table {
  margin: 0px auto;
  font-size: 1.5rem;
  line-height: 1.4;
}
.time-Table th {
  padding-right: 1.5em;
  font-weight: 500;
  text-align: center;
  font-weight: 500;
}
.time-Table td {
  padding-right: 1rem;
}

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

/* -------------------------------
          HambergerMenu
      -------------------------------- */
.menuWrapper {
  position: fixed;
  right: 30px;
  top: 10px;
  width: 40px;
  height: 40px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 103;
  display: block;
}
@media (min-width: 768px) {
  .menuWrapper {
    top: 20px;
  }
}
@media (min-width: 992px) {
  .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: #484645;
  overflow: hidden;
  display: block;
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  cursor: pointer;
}
#menuButton span, #menuButton:before, #menuButton:after {
  display: block;
  position: absolute;
  top: -10px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 24px;
  height: 1px;
  margin: auto;
  background: #fff;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #fff;
}
#menuButton:before {
  z-index: 2;
  -webkit-transform: translate(0, -7px);
          transform: translate(0, -7px);
  content: "";
}
#menuButton:after {
  z-index: 2;
  -webkit-transform: translate(0, 7px);
          transform: translate(0, 7px);
  content: "";
}
#menuButton small {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  color: #fff;
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  display: block;
}

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

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

/*-------------------------------------------------------------------------------------------*
 *
 * Footer
 *  
 *-------------------------------------------------------------------------------------------*/
#footer {
  width: 100%;
  font-size: 1.6rem;
  background: #ffffff;
}
#footer #footerBody {
  width: 100%;
  padding: 60px 0px;
}
#footer #footerBody a {
  color: #484645;
  text-decoration: none;
}
@media (min-width: 992px) {
  #footer #footerBody {
    padding: 90px 0px;
  }
}
#footer #footerBody #f-logo {
  text-align: center;
}
@media (min-width: 992px) {
  #footer #footerBody #f-logo {
    text-align: left;
  }
}
#footer #footerBody #f-logo img {
  margin: 0px auto;
  width: 60vw;
}
@media (min-width: 576px) {
  #footer #footerBody #f-logo img {
    width: 320px;
  }
}
#footer #footerBody .footerRight #textLink {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.4;
}
@media (min-width: 768px) {
  #footer #footerBody .footerRight #textLink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 992px) {
  #footer #footerBody .footerRight #textLink {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
#footer #footerBody .footerRight #textLink li {
  border-right: solid 1px #dadada;
}
#footer #footerBody .footerRight #textLink li:last-child {
  border-right: none;
}
#footer #footerBody .footerRight #textLink li a {
  text-decoration: none;
  padding: 0px 1rem;
}
@media (min-width: 1200px) {
  #footer #footerBody .footerRight #textLink li a {
    padding: 0px 2rem;
  }
}
@media (min-width: 1400px) {
  #footer #footerBody .footerRight #textLink li a {
    padding: 0px 3rem;
  }
}
#footer #footerBody .footerRight #textLink li a:hover {
  text-decoration: underline;
}
#footer #footerBody .mapPin {
  width: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  margin-left: 0.6rem;
  -webkit-filter: invert(88%) sepia(11%) saturate(7447%) hue-rotate(325deg) brightness(101%) contrast(102%);
          filter: invert(88%) sepia(11%) saturate(7447%) hue-rotate(325deg) brightness(101%) contrast(102%);
}
#footer #footerBody #copy {
  font-size: 1.2rem;
  margin: 0px;
  color: #bababa;
}

#pagetop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 120px;
}
@media (min-width: 576px) {
  #pagetop {
    right: 40px;
    bottom: 30px;
  }
}
@media (min-width: 992px) {
  #pagetop {
    right: 60px;
    bottom: 80px;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * index.html
 *  
 *-------------------------------------------------------------------------------------------*/
#mainVisual {
  width: calc(100% - 30px);
  height: 110vw;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: url(../images/mainvisual.jpg) no-repeat center/auto 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 80px 15px 0px;
}
@media (min-width: 576px) {
  #mainVisual {
    width: calc(100% - 60px);
    margin: 80px 30px 0px;
    height: 610px;
  }
}
@media (min-width: 992px) {
  #mainVisual {
    width: calc(100% - 80px);
    border-radius: 36px;
    margin: 100px 40px 0px;
    height: 690px;
  }
}
@media (min-width: 1400px) {
  #mainVisual {
    width: calc(100% - 120px);
    margin: 138px 60px 0px;
    height: 794px;
  }
}
#mainVisual #catch {
  text-align: left;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
  color: #fff;
  line-height: 1.2;
  margin-right: 3%;
}
@media (min-width: 768px) {
  #mainVisual #catch {
    margin-right: 6%;
  }
}
#mainVisual #catch .main {
  font-size: 9vw;
  font-weight: 700;
  margin-left: -0.6em;
  margin-bottom: 1.8rem;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}
@media (min-width: 576px) {
  #mainVisual #catch .main {
    font-size: 6rem;
  }
}
#mainVisual #catch .sub {
  font-weight: 500;
  font-size: 4vw;
}
@media (min-width: 576px) {
  #mainVisual #catch .sub {
    font-size: 2rem;
  }
}

.about-Wrap {
  padding: 60px 0px 46px;
  width: 100%;
  background: #FFFBF2;
  background: url(../images/line.png) repeat-x left bottom, -webkit-gradient(linear, left top, left bottom, from(rgb(255, 251, 242)), color-stop(12%, rgb(255, 251, 242)), color-stop(12%, rgb(252, 249, 228)), to(rgb(252, 249, 228)));
  background: url(../images/line.png) repeat-x left bottom, linear-gradient(180deg, rgb(255, 251, 242) 0%, rgb(255, 251, 242) 12%, rgb(252, 249, 228) 12%, rgb(252, 249, 228) 100%);
}
@media (min-width: 992px) {
  .about-Wrap {
    padding: 120px 0px 46px;
  }
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.illust-Box01 {
  position: relative;
  height: 100%;
}
.illust-Box01 .img {
  width: 38%;
  position: absolute;
  right: initial;
  bottom: initial;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(-10%, -20%) scale(-1, 1);
          transform: translate(-10%, -20%) scale(-1, 1);
}
@media (min-width: 992px) {
  .illust-Box01 .img {
    -webkit-transform: translate(5%, 15%);
            transform: translate(5%, 15%);
    right: 0;
    bottom: 0;
  }
}

.illust-Box02 {
  position: relative;
  height: 100%;
}
.illust-Box02 .img {
  width: 38%;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translate(5%, -35%);
          transform: translate(5%, -35%);
}
@media (min-width: 992px) {
  .illust-Box02 .img {
    -webkit-transform: translate(5%, -15%);
            transform: translate(5%, -15%);
  }
}

.support-DL {
  background: #fcf9e4;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.support-DL dd {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
}
.support-DL dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.support-DL .sub {
  display: inline-block;
  background: #f3e68e;
  color: #fff;
  border-radius: 4px;
  font-size: 1.4rem;
  font-family: "Andika", sans-serif;
  font-weight: 700;
  padding: 0px 1em;
  margin-bottom: 1.5rem;
}
.support-DL .tit {
  line-height: 1;
  font-size: 2.2rem;
  font-weight: 700;
  display: inline-block;
  background: url(../images/dot.png) repeat-x left bottom;
  padding: 0px 0px 1.6rem;
  text-align: center;
}
@media (min-width: 768px) {
  .support-DL .tit {
    font-size: 1.8rem;
  }
}

.flow-Wrap dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.8rem;
  position: relative;
  background: #fff;
  padding: 1.5rem 3rem;
  margin-bottom: 4rem;
  border-radius: 10px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .flow-Wrap dl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 4rem;
  }
}
@media (min-width: 992px) {
  .flow-Wrap dl {
    border-radius: 20px;
  }
}
.flow-Wrap dl:after {
  content: "";
  width: 90px;
  height: 22px;
  background: #fddcb1;
  clip-path: polygon(100% 0, 0 0, 50% 55%);
  position: absolute;
  bottom: -32px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.flow-Wrap dl:last-child {
  margin-bottom: 0px;
}
.flow-Wrap dl:last-child:after {
  display: none;
}
.flow-Wrap dt {
  font-family: "Andika", sans-serif;
  height: 68px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  border-right: none;
  border-bottom: solid 1px #ddd;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .flow-Wrap dt {
    width: 150px;
    border-right: solid 1px #dddddd;
    border-bottom: none;
    margin-bottom: 0rem;
  }
}
.flow-Wrap dt .en {
  font-size: 1.6rem;
}
.flow-Wrap dt .num {
  font-size: 3.2rem;
}
@media (min-width: 768px) {
  .flow-Wrap dt .num {
    font-size: 4.8rem;
  }
}
.flow-Wrap dd {
  margin-left: 0;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .flow-Wrap dd {
    margin-left: 6rem;
  }
}
.flow-Wrap dd .img {
  border-radius: 50%;
  display: inline-block;
  margin-right: 2.4rem;
  width: 42px;
}
@media (min-width: 768px) {
  .flow-Wrap dd .img {
    width: 68px;
    margin-right: 3.2rem;
  }
}

.contact-Box {
  width: 100%;
  height: 540px;
  background: #ffac41 url(../images/bg_contact.jpg) no-repeat center/auto 100%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
}
@media (min-width: 992px) {
  .contact-Box {
    border-radius: 20px;
  }
}

.contact-telBtn span {
  border-radius: 8px;
  width: 100%;
  height: 78px;
  border: solid 1px #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 0.1em;
}
.contact-telBtn span img {
  width: 2rem;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  margin-right: 1.6rem;
}
.contact-telBtn a {
  text-decoration: none;
}
.contact-telBtn a span {
  background: #fff;
  color: #ffac41;
}
.contact-telBtn a span img {
  -webkit-filter: invert(81%) sepia(28%) saturate(1400%) hue-rotate(326deg) brightness(101%) contrast(101%);
          filter: invert(81%) sepia(28%) saturate(1400%) hue-rotate(326deg) brightness(101%) contrast(101%);
}

.contact-formBtn a {
  width: 100%;
  height: 78px;
  border-radius: 8px;
  background: #fff;
  color: #ffac41;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 0.1em;
  text-decoration: none;
}
.contact-formBtn a:hover {
  background: #484645;
  color: #fff;
}

/*-------------------------------------------------------------------------------------------*
 *
 * work.html
 *  
 *-------------------------------------------------------------------------------------------*/
.work-Wrap {
  padding: 60px 0px 40px;
  width: 100%;
  background: #FFFBF2;
  background: #fcf9e4 url(../images/line.png) repeat-x left top/auto 20px;
}
@media (min-width: 992px) {
  .work-Wrap {
    padding: 90px 0px 60px;
  }
}

hr.hr {
  opacity: 1;
  background: url(../images/dot.png) repeat-x center;
  padding-bottom: 4px;
  border: none;
  width: 60%;
  margin: 0px auto;
}

.slider01 .slick-slide,
.slider02 .slick-slide {
  margin: 0px 5px;
}
.slider01 .slick-slide img,
.slider02 .slick-slide img {
  border-radius: 10px;
  overflow: hidden;
}

.business-Wrap {
  padding: 90px 0px;
  width: 100%;
  background: url(../images/line.png) repeat-x left top/auto 20px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .business-Wrap {
    padding: 150px 0px;
  }
}

.white-Box {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}
@media (min-width: 992px) {
  .white-Box {
    border-radius: 40px;
    padding: 40px;
  }
}

.flow-Wrap2 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.8rem;
  position: relative;
  background: #fcf9e4;
  padding: 3rem 3rem;
  margin-bottom: 6rem;
  border-radius: 10px;
  font-weight: 700;
}
@media (min-width: 992px) {
  .flow-Wrap2 dl {
    border-radius: 20px;
  }
}
@media (min-width: 1400px) {
  .flow-Wrap2 dl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 4rem;
  }
}
.flow-Wrap2 dl:after {
  content: "";
  width: 90px;
  height: 22px;
  background: #fddcb1;
  clip-path: polygon(100% 0, 0 0, 50% 55%);
  position: absolute;
  bottom: -32px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.flow-Wrap2 dl:last-child {
  margin-bottom: 0px;
}
.flow-Wrap2 dl:last-child:after {
  display: none;
}
.flow-Wrap2 dt {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  border-right: none;
  padding-bottom: 1.8rem;
  border-bottom: solid 1px #ddd;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .flow-Wrap2 dt {
    width: 480px;
    border-right: solid 1px #dddddd;
    border-bottom: none;
    margin-bottom: 0rem;
    padding-bottom: 0;
  }
}
.flow-Wrap2 dt .flow-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 2.4rem;
  font-family: "Andika", sans-serif;
}
.flow-Wrap2 dt .flow-num .en {
  font-size: 1.6rem;
}
.flow-Wrap2 dt .flow-num .num {
  font-size: 4.8rem;
}
.flow-Wrap2 dt .flow-tit {
  color: #FFAC41;
  font-size: 3rem;
  font-weight: 700;
}
.flow-Wrap2 dd {
  margin-left: 0;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1400px) {
  .flow-Wrap2 dd {
    margin-left: 6rem;
    width: calc(100% - 480px);
  }
}
.flow-Wrap2 dd .img {
  border-radius: 50%;
  display: inline-block;
  margin-right: 2.4rem;
  width: 42px;
}
@media (min-width: 768px) {
  .flow-Wrap2 dd .img {
    width: 68px;
    margin-right: 3.2rem;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * company.html
 *  
 *-------------------------------------------------------------------------------------------*/
.greeting-Wrap {
  padding: 60px 0px 40px;
  width: 100%;
  background: #FFFBF2;
  background: #fcf9e4 url(../images/line.png) repeat-x left bottom/auto 20px;
}
@media (min-width: 992px) {
  .greeting-Wrap {
    padding: 90px 0px 60px;
  }
}

.name {
  text-align: right;
  font-size: 2.4rem;
  font-weight: 500;
}

.responsiveTable-Arrow {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px 15px;
  font-size: 1.6rem;
}
@media (min-width: 768px), print {
  .responsiveTable-Arrow {
    width: 100%;
    display: table;
  }
}
.responsiveTable-Arrow th {
  width: 100%;
  color: #fff;
  padding: 7px 15px;
  font-weight: 300;
  display: block;
  line-height: 1;
  border-radius: 8px 8px 0px 0px;
}
@media (min-width: 768px), print {
  .responsiveTable-Arrow th {
    border-radius: 8px 0px 0px 8px;
    width: 30%;
    display: table-cell;
    vertical-align: middle;
    padding: 25px 25px;
    text-align: left;
    position: relative;
  }
}
.responsiveTable-Arrow td {
  width: 100%;
  padding: 15px 15px;
  line-height: 1.8;
  display: block;
  color: #333;
  background: #fff;
  border-radius: 0px 0px 8px 8px;
}
@media (min-width: 768px), print {
  .responsiveTable-Arrow td {
    border-radius: 0px 8px 8px 0px;
    padding: 25px 25px 25px 35px;
    display: table-cell;
  }
}
.responsiveTable-Arrow.orange th {
  background: #FFAC41;
}
.responsiveTable-Arrow.orange th:after {
  border-left-color: #c9a89b;
}

.white-Wrap {
  padding: 90px 0px;
  width: 100%;
  background: #fff;
}
@media (min-width: 992px) {
  .white-Wrap {
    padding: 150px 0px;
  }
}

.dotList li {
  padding-left: 2.4rem;
  position: relative;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}
.dotList li:last-child {
  margin-bottom: 0;
}
.dotList li:before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: #ffac41;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.8rem;
}
.dotList.half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.dotList.half li {
  width: 100%;
}
@media (min-width: 768px) {
  .dotList.half li {
    width: 50%;
  }
}
.dotList.Horizonal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.dotList.Horizonal li {
  margin-right: 3rem;
  white-space: nowrap;
}

.googleMap {
  width: 100%;
  height: 380px;
  border-radius: 10px;
}
@media (min-width: 992px) {
  .googleMap {
    height: 530px;
    border-radius: 20px;
  }
}

.attachedButton {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #454545;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 32px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  border-radius: 8px;
  text-decoration: none;
}
.attachedButton:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_dot.png) no-repeat center/contain;
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.attachedButton:hover {
  border: solid 1px #454545;
  background: #fff;
  color: #454545;
  text-decoration: none;
}
.attachedButton:hover:before {
  -webkit-filter: invert(29%) sepia(1%) saturate(521%) hue-rotate(68deg) brightness(93%) contrast(99%);
          filter: invert(29%) sepia(1%) saturate(521%) hue-rotate(68deg) brightness(93%) contrast(99%);
}
.attachedButton:hover:after {
  -webkit-filter: invert(29%) sepia(1%) saturate(521%) hue-rotate(68deg) brightness(93%) contrast(99%);
          filter: invert(29%) sepia(1%) saturate(521%) hue-rotate(68deg) brightness(93%) contrast(99%);
}
.attachedButton.pdf {
  background: #ba3434;
  border: solid 1px #fff;
  color: #fff;
}
.attachedButton.pdf::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_pdf.png);
  background-size: contain;
  position: absolute;
  left: initial;
  right: 24px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.attachedButton.pdf:after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.attachedButton.pdf:hover {
  border: solid 1px #ba3434;
}
.attachedButton.pdf:hover:before {
  -webkit-filter: none;
  filter: none;
}
.attachedButton.pdf:hover:after {
  -webkit-filter: invert(38%) sepia(15%) saturate(1264%) hue-rotate(73deg) brightness(94%) contrast(94%);
  filter: invert(28%) sepia(32%) saturate(2835%) hue-rotate(332deg) brightness(87%) contrast(87%);
}
.attachedButton.excel {
  background: #3c6e3e;
  border: solid 1px #fff;
  color: #fff;
}
.attachedButton.excel::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_excel.png);
  background-size: contain;
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.attachedButton.excel:after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.attachedButton.excel:hover {
  border: solid 1px #3c6e3e;
}
.attachedButton.excel:hover:before {
  -webkit-filter: none;
  filter: none;
}
.attachedButton.excel:hover:after {
  -webkit-filter: invert(38%) sepia(15%) saturate(1264%) hue-rotate(73deg) brightness(94%) contrast(94%);
  filter: invert(38%) sepia(15%) saturate(1264%) hue-rotate(73deg) brightness(94%) contrast(94%);
}
.attachedButton.word {
  background: #2e3d7f;
  border: solid 1px #fff;
  color: #fff;
}
.attachedButton.word::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_word.png);
  background-size: contain;
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.attachedButton.word:after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.attachedButton.word:hover {
  border: solid 1px #2e3d7f;
}
.attachedButton.word:hover:before {
  -webkit-filter: none;
  filter: none;
}
.attachedButton.word:hover:after {
  -webkit-filter: invert(20%) sepia(97%) saturate(645%) hue-rotate(198deg) brightness(92%) contrast(95%);
  filter: invert(20%) sepia(97%) saturate(645%) hue-rotate(198deg) brightness(92%) contrast(95%);
}
.attachedButton.pdf:hover {
  background: #fff;
  color: #a53434;
}
.attachedButton.excel:hover {
  background: #fff;
  color: #3c6e3e;
}
.attachedButton.word:hover {
  background: #fff;
  color: #2e3d7f;
}

/*-------------------------------------------------------------------------------------------*
 *
 * contact.html
 *  
 *-------------------------------------------------------------------------------------------*/
.yellow-Wrap {
  padding: 60px 0px 40px;
  width: 100%;
  background: #fcf9e4;
}
@media (min-width: 992px) {
  .yellow-Wrap {
    padding: 90px 0px;
  }
}

.tel a {
  text-decoration: none;
}
.tel span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  font-family: "Andika", sans-serif;
}
.tel span img {
  display: inline-block;
  width: 3rem;
  -webkit-filter: invert(22%) sepia(11%) saturate(1093%) hue-rotate(179deg) brightness(97%) contrast(90%);
          filter: invert(22%) sepia(11%) saturate(1093%) hue-rotate(179deg) brightness(97%) contrast(90%);
  margin-right: 0.4em;
  margin-top: 0.1em;
}
.tel.left span {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.contactBox {
  width: 100%;
}
.contactBox a {
  text-decoration: none;
}
.contactBox dt {
  background: #333;
  color: #fff;
  font-size: 18px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contactBox dd {
  background: #fff;
  padding: 30px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: solid 1px #ccc;
  border-top: none;
}
.contactBox dd .num {
  font-size: 24px;
  border-bottom: dotted 1px #888;
  padding: 0 30px 10px;
}
.contactBox dd .num em {
  font-style: normal;
  font-size: 18px;
}
.contactBox dd .time {
  padding-top: 1em;
}

.mailfoamTable {
  width: 100%;
  margin-bottom: 10px;
}
.mailfoamTable th {
  width: 100%;
  padding: 25px;
  font-weight: bold;
  border-top: none;
  border-bottom: solid 1px #e6cba9;
  line-height: 140%;
  display: block;
  background: #FCF9E4;
}
.mailfoamTable th div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mailfoamTable th .required {
  margin-left: 1.6rem;
}
.mailfoamTable td {
  width: 100%;
  padding: 20px 0px 30px 0px;
  border: none;
  line-height: 140%;
  display: block;
}
.mailfoamTable td .form-control {
  font-size: 1.8rem;
  padding: 1.5rem 2.5rem;
}

@media (min-width: 768px) {
  .mailfoamTable table {
    width: 100%;
    display: table;
  }
  .mailfoamTable th {
    width: 32%;
    font-weight: bold;
    border-top: solid 1px #e6cba9;
    border-bottom: solid 1px #e6cba9;
    line-height: 140%;
    display: table-cell;
    vertical-align: middle;
  }
  .mailfoamTable th div {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .mailfoamTable td {
    padding: 25px 0px 25px 25px;
    border-top: solid 1px #e6cba9;
    border-bottom: solid 1px #e6cba9;
    line-height: 140%;
    display: table-cell;
  }
}
.select-Wrap {
  position: relative;
  display: inline-block;
  width: 80%;
}
@media (min-width: 768px) {
  .select-Wrap {
    width: 50%;
  }
}
@media (min-width: 1400px) {
  .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;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.select-Wrap select {
  -webkit-appearance: none;
}

textarea {
  width: 100%;
}

.form-day {
  width: 60px;
  display: inline-block;
  padding: 1.5rem 1.5rem !important;
}

.form15 {
  width: 20%;
  display: inline-block;
}

.form25 {
  display: inline-block;
  width: 100%;
}
@media (min-width: 768px) {
  .form25 {
    width: 50%;
  }
}
@media (min-width: 1400px) {
  .form25 {
    width: 25%;
  }
}

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

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

.required {
  background: #df443e;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 475px;
  min-height: 56px;
  background: #FFAC41;
  color: #fff;
  position: relative;
  font-size: 4.2vw;
  line-height: 1.2;
  padding: 8px 0px;
  border: none;
  border-radius: 8px;
}
@media (min-width: 576px) {
  .formBtn {
    font-size: 18px;
  }
}
.formBtn:hover {
  background: #484645;
  text-decoration: none;
}
.formBtn.back:before {
  content: "";
  background: url(../images/icon_arrow.png) no-repeat center/contain;
  display: inline-block;
  width: 1.6rem;
  aspect-ratio: 1;
  margin-right: 1.2rem;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.formBtn.next:after {
  content: "";
  background: url(../images/icon_arrow.png) no-repeat center/contain;
  display: inline-block;
  width: 1.6rem;
  aspect-ratio: 1;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  margin-left: 1.2rem;
}
.formBtn button.formBtn {
  border: none;
  outline: none;
}
.formBtn 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;
  -webkit-box-shadow: 0px 1px 2px #999 inset;
          box-shadow: 0px 1px 2px #999 inset;
  background: #fff;
  word-wrap: break-word;
  text-align: justify;
}
.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 {
  height: 360px;
  margin: 80px 15px 0px;
  position: relative;
  width: calc(100% - 30px);
  border-radius: 24px;
}
@media (min-width: 576px) {
  #h2Title {
    width: calc(100% - 60px);
    margin: 80px 30px 0px;
    height: 400px;
  }
}
@media (min-width: 992px) {
  #h2Title {
    width: calc(100% - 80px);
    border-radius: 36px;
    margin: 100px 40px 0px;
    height: 480px;
  }
}
@media (min-width: 1400px) {
  #h2Title {
    width: calc(100% - 120px);
    margin: 138px 60px 0px;
    height: 530px;
  }
}
#h2Title.p02 {
  background: url(../images/bg_h2title02.jpg) no-repeat center right 33%/auto 100%;
}
@media (min-width: 768px) {
  #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 h2 {
  position: absolute;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
  line-height: 1;
  left: 30px;
  bottom: 30px;
}
@media (min-width: 992px) {
  #h2Title h2 {
    left: 60px;
    bottom: 60px;
  }
}
#h2Title h2 .en {
  font-family: "Andika", sans-serif;
  font-weight: 700;
  font-size: 4vw;
  text-align: left;
  line-height: 1;
  margin-bottom: 1.6rem;
}
@media (min-width: 768px) {
  #h2Title h2 .en {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  #h2Title h2 .en {
    font-size: 2rem;
  }
}
#h2Title h2 .ja {
  font-size: 9vw;
}
@media (min-width: 768px) {
  #h2Title h2 .ja {
    font-size: 8rem;
  }
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  line-height: 1.4;
}
.title .en {
  font-size: 4vw;
  font-family: "Andika", sans-serif;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0;
  color: #ffac41;
  margin-bottom: 2.6rem;
}
@media (min-width: 576px) {
  .title .en {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  .title .en {
    font-size: 3.2rem;
  }
}
.title .ja {
  font-size: 8.2vw;
  font-weight: 700;
  position: relative;
}
@media (min-width: 576px) {
  .title .ja {
    font-size: 4.2rem;
  }
}
@media (min-width: 992px) {
  .title .ja {
    font-size: 4.8rem;
  }
}
.title.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.title.white .en {
  color: #fff;
}
.title.white .ja {
  color: #fff;
}

.title2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  line-height: 1.4;
  font-size: 6vw;
  font-family: "Andika", sans-serif;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0;
  color: #ffac41;
}
@media (min-width: 576px) {
  .title2 {
    font-size: 3.2rem;
  }
}
@media (min-width: 1200px) {
  .title2 {
    font-size: 3.6rem;
  }
}

.subTitle {
  font-size: 6.4vw;
  font-weight: 700;
}
@media (min-width: 576px) {
  .subTitle {
    font-size: 3.6rem;
  }
}

.subTitle2 {
  font-size: 3.2rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
}
.subTitle2 span {
  position: relative;
  z-index: 3;
}
.subTitle2:before {
  content: "";
  display: block;
  width: 120%;
  height: 1.6rem;
  background: #fcf0ca;
  border-radius: 50%;
  position: absolute;
  left: -10%;
  bottom: -0.8rem;
}
.subTitle2:after {
  content: "";
  display: block;
  width: 7.2rem;
  aspect-ratio: 1;
  background: url(../images/icon_leaf.png) no-repeat center/contain;
  position: absolute;
  right: -10%;
  bottom: -0.6rem;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}

.read {
  font-size: 2rem;
  font-weight: 700;
  padding-left: 1.8rem;
  position: relative;
}
.read:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 1.2em;
  background: #FFAC41;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -42%);
          transform: translate(0, -42%);
}

/*-------------------------------------------------------------------------------------------*
 *
 * table
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * button
 *  
 *-------------------------------------------------------------------------------------------*/
.detailBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #ffac41;
  color: #fff;
  max-width: 240px;
  width: 100%;
  height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 10px;
  padding: 0px 30px;
  text-decoration: none;
  font-size: 1.6rem;
}
.detailBtn:after {
  content: "";
  width: 14px;
  height: 12px;
  background: url(../images/icon_arrow.png) no-repeat center/contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.detailBtn:hover {
  color: #fff;
  background: #484645;
}
.detailBtn:hover:after {
  -webkit-transform: translate(4px, 0);
          transform: translate(4px, 0);
}

/*-------------------------------------------------------------------------------------------*
 *
 * Component
 *  
 *-------------------------------------------------------------------------------------------*/
p {
  text-align: justify;
}

.radius24 {
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .radius24 {
    border-radius: 24px;
  }
}

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

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

.verticalMiddle-Box {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

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

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

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

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

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

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

.padding-xl-Left {
  padding-left: 0;
  width: 100%;
}
@media (min-width: 1200px) {
  .padding-xl-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;
}

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

.lh1 {
  line-height: 1;
}

.lh14 {
  line-height: 1.4;
}

.lh2 {
  line-height: 2;
}

small {
  font-size: 75%;
  line-height: 75%;
}

.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: 3rem;
}

.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: 576px) {
  .mt-sm-00 {
    margin-top: 0px;
  }
  .mt-sm-10 {
    margin-top: 10px;
  }
  .mt-sm-20 {
    margin-top: 20px;
  }
  .mt-sm-30 {
    margin-top: 30px;
  }
  .mt-sm-60 {
    margin-top: 60px;
  }
  .mt-sm-90 {
    margin-top: 90px;
  }
}
@media (min-width: 768px) {
  .mt-md-00 {
    margin-top: 0px;
  }
  .mt-md-10 {
    margin-top: 10px;
  }
  .mt-md-20 {
    margin-top: 20px;
  }
  .mt-md-30 {
    margin-top: 30px;
  }
  .mt-md-60 {
    margin-top: 60px;
  }
  .mt-md-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;
  }
}
@media (min-width: 1200px) {
  .mt-xl-00 {
    margin-top: 0px;
  }
  .mt-xl-10 {
    margin-top: 10px;
  }
  .mt-xl-20 {
    margin-top: 20px;
  }
  .mt-xl-30 {
    margin-top: 30px;
  }
  .mt-xl-60 {
    margin-top: 60px;
  }
  .mt-xl-90 {
    margin-top: 90px;
  }
}
@media (min-width: 1400px) {
  .mt-xxl-00 {
    margin-top: 0px;
  }
  .mt-xxl-10 {
    margin-top: 10px;
  }
  .mt-xxl-20 {
    margin-top: 20px;
  }
  .mt-xxl-30 {
    margin-top: 30px;
  }
  .mt-xxl-60 {
    margin-top: 60px;
  }
  .mt-xxl-90 {
    margin-top: 90px;
  }
}
.ml-00 {
  margin-left: 0px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

@media (min-width: 768px) {
  .ml-md-00 {
    margin-left: 0px !important;
  }
  .ml-md-10 {
    margin-left: 10px !important;
  }
  .ml-md-20 {
    margin-left: 20px !important;
  }
  .ml-md-30 {
    margin-left: 3dvh !important;
  }
}
@media (min-width: 992px) {
  .ml-lg-00 {
    margin-left: 0px !important;
  }
  .ml-lg-10 {
    margin-left: 10px !important;
  }
  .ml-lg-20 {
    margin-left: 20px !important;
  }
  .ml-lg-30 {
    margin-left: 3dvh !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;
  }
  .mb150 {
    margin-bottom: 150px !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 */