@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@100..900&family=M+PLUS+Rounded+1c&display=swap");
/* bootstrap.css基本の打消し（同じclass名での書き換え）
---------------------------------------------------- */
* {
  margin: 0px;
  padding: 0px;
}

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

body {
  color: #343d30;
  margin: 0px;
  font-family: "M PLUS 2", " 游ゴシック体", YuGothic, " 游ゴシック", " Yu Gothic", Meiryo, " ヒラギノ角ゴ Pro W3", " Hiragino Kaku Gothic Pro", Osaka, " ＭＳ Ｐゴシック", " MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  overflow-x: hidden;
  font-size: 1.8rem;
}

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: #343d30;
  text-decoration: underline;
}
a:hover {
  color: #343d30;
  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: all 600ms 0s ease;
  transition: all 600ms 0s ease;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 15px;
  background: #fff;
}
@media (min-width: 992px) {
  #header {
    height: 100px;
  }
}
@media (min-width: 1400px) {
  #header {
    height: 120px;
    padding-left: 30px;
  }
}
#header #logo {
  display: block;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
  width: 280px;
}
@media (min-width: 576px) {
  #header #logo {
    width: 300px;
  }
}
@media (min-width: 992px) {
  #header #logo {
    width: 420px;
  }
}
@media (min-width: 1200px) {
  #header #logo {
    width: 450px;
  }
}
@media (min-width: 1500px) {
  #header #logo {
    width: 492px;
  }
}
#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;
  position: relative;
  height: 100%;
  padding-right: 60px;
}
@media (min-width: 992px) {
  #header #header-Right {
    padding-right: 190px;
  }
}
@media (min-width: 1400px) {
  #header #header-Right {
    padding-right: 210px;
  }
}
@media (min-width: 1600px) {
  #header #header-Right {
    padding-right: 230px;
  }
}
#header #header-otherSite-Btn {
  display: none;
}
@media (min-width: 992px) {
  #header #header-otherSite-Btn {
    display: block;
    margin-bottom: 1rem;
    text-align: right;
  }
}
@media (min-width: 1400px) {
  #header #header-otherSite-Btn {
    margin-bottom: 1.6rem;
  }
}
#header #header-otherSite-Btn.lightGreen a {
  background: #7ac65c;
}
#header #header-otherSite-Btn.deepGreen a {
  background: #2e7351;
}
#header #header-otherSite-Btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #fff;
  width: 260px;
  height: 38px;
  padding: 0px 20px 0.1em;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 29px;
  text-decoration: none;
  text-align: left;
  position: relative;
  font-size: 1.8rem;
}
@media (min-width: 1400px) {
  #header #header-otherSite-Btn a {
    width: 280px;
  }
}
#header #header-otherSite-Btn a img {
  width: 36px;
  margin-right: 8px;
}
@media (min-width: 1400px) {
  #header #header-otherSite-Btn a img {
    width: 40px;
    margin-right: 12px;
  }
}
#header #header-otherSite-Btn a:after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 1;
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 900ms 0s ease;
  transition: all 900ms 0s ease;
}
#header #header-otherSite-Btn a:hover:after {
  -webkit-transform: translate(4px, -50%);
          transform: translate(4px, -50%);
}
#header #header-Tel {
  display: none;
}
@media (min-width: 1300px) {
  #header #header-Tel {
    display: block;
    margin-right: 1rem;
  }
}
@media (min-width: 1500px) {
  #header #header-Tel {
    margin-right: 1rem;
  }
}
#header #header-Tel a {
  text-decoration: none;
}
#header #header-Tel span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 900;
  font-size: 3rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#header #header-Tel span img {
  width: 1em;
  margin-right: 0.4em;
}
#header #header-Tel.lightGreen img {
  -webkit-filter: invert(77%) sepia(7%) saturate(4053%) hue-rotate(54deg) brightness(114%) contrast(55%);
          filter: invert(77%) sepia(7%) saturate(4053%) hue-rotate(54deg) brightness(114%) contrast(55%);
}
#header #header-Tel.deepGreen img {
  -webkit-filter: invert(35%) sepia(57%) saturate(401%) hue-rotate(98deg) brightness(95%) contrast(91%);
          filter: invert(35%) sepia(57%) saturate(401%) hue-rotate(98deg) brightness(95%) contrast(91%);
}
#header #header-Right_middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#header #header-Right_middle #mainNavi {
  display: none;
}
@media (min-width: 992px) {
  #header #header-Right_middle #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;
    margin-bottom: 1rem;
  }
}
#header #header-Right_middle #mainNavi.lightGreen > li > a:before {
  background: #7ac65c;
}
#header #header-Right_middle #mainNavi.lightGreen > li > a:after {
  border-color: #7ac65c;
}
#header #header-Right_middle #mainNavi.deepGreen > li > a:before {
  background: #4b6851;
}
#header #header-Right_middle #mainNavi.deepGreen > li > a:after {
  border-color: #4b6851;
}
#header #header-Right_middle #mainNavi > li {
  display: block;
}
#header #header-Right_middle #mainNavi > li > a {
  margin-left: 4rem;
  text-decoration: none;
  display: block;
  line-height: 1;
  position: relative;
  width: 100%;
  height: 100%;
  font-weight: 500;
  padding-bottom: 0.1em;
}
@media (min-width: 1400px) {
  #header #header-Right_middle #mainNavi > li > a {
    margin-left: 2em;
  }
}
#header #header-Right_middle #mainNavi > li > a {
  font-size: 1.8rem;
  -webkit-transition: all 900ms 0s ease;
  transition: all 900ms 0s ease;
}
@media (min-width: 992px) {
  #header #header-Right_middle #mainNavi > li > a {
    font-size: 2rem;
  }
}
#header #header-Right_middle #mainNavi > li > a::before {
  content: "";
  display: block;
  width: 8px;
  margin-left: 2px;
  aspect-ratio: 1;
  border-radius: 50%;
  margin-right: 8px;
  z-index: 2;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: -20px;
}
#header #header-Right_middle #mainNavi.lightGreen > li.active > a, #header #header-Right_middle #mainNavi.lightGreen > li > a:hover {
  color: #7ac65c;
}
#header #header-Right_middle #mainNavi.deepGreen > li.active > a, #header #header-Right_middle #mainNavi.deepGreen > li > a:hover {
  color: #40864e;
}
#header #contactButton {
  display: none;
}
@media (min-width: 992px) {
  #header #contactButton {
    display: block;
    margin-left: 2rem;
    position: absolute;
    top: 0px;
    right: 0px;
  }
}
#header #contactButton.lightGreen a {
  background: #7ac65c;
}
#header #contactButton.deepGreen a {
  background: #2e7351;
}
#header #contactButton a {
  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;
  color: #fff;
  font-weight: 400;
  height: 100%;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  width: 160px;
  height: 120px;
  line-height: 1;
  border-radius: 0px 0px 0px 24px;
}
@media (min-width: 1400px) {
  #header #contactButton a {
    width: 170px;
    height: 140px;
  }
}
#header #contactButton a:hover, #header #contactButton a.active a {
  background: #5ba040;
}
#header #contactButton a img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  width: 42px;
  margin-bottom: 0.6rem;
}
@media (min-width: 1400px) {
  #header #contactButton a img {
    width: 46px;
  }
}
#header.on {
  height: 60px;
}
@media (min-width: 992px) {
  #header.on {
    height: 100px;
  }
}
#header.on #mainNavi a {
  text-shadow: none;
  color: #343d30;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
}

.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-toggle {
  /* ホバー開閉時にフォーカスで出る枠を非表示 */
}
.dropdown-toggle:focus, .dropdown-toggle.show:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.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;
  }
}

/*-------------------------------------------------------------------------------------------*
     *
     * サイドメニュー
     *  
*-------------------------------------------------------------------------------------------*/
#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;
}
#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sidebar a {
  text-decoration: none;
}
#sidebar .list-sidenav {
  width: 100%;
}
#sidebar .list-sidenav.lightGreen > li > a:before {
  background: #7ac65c;
}
#sidebar .list-sidenav.lightGreen > li > a:after {
  border-color: #7ac65c;
}
#sidebar .list-sidenav.deepGreen > li > a:before {
  background: #4b6851;
}
#sidebar .list-sidenav.deepGreen > li > a:after {
  border-color: #4b6851;
}
#sidebar .list-sidenav > li {
  text-align: left;
}
#sidebar .list-sidenav > li > a {
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 10px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: dashed 1px #929292;
  font-weight: 500;
  font-size: 18px;
  padding-left: 32px;
  -webkit-transition: all 900ms 0s ease;
  transition: all 900ms 0s ease;
}
#sidebar .list-sidenav > li > a:before {
  content: "";
  display: block;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 8px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 2;
}
#sidebar .list-sidenav.lightGreen li.active > a, #sidebar .list-sidenav.lightGreen li > a:hover {
  color: #7ac65c;
}
#sidebar .list-sidenav.deepGreen > li.active > a, #sidebar .list-sidenav.deepGreen > li > a:hover {
  color: #40864e;
}

.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;
}

#sidebar-Btn {
  width: 100%;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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: 500;
  padding: 0px 15px;
  height: 56px;
  font-size: 20px;
  border-radius: 28px;
  max-width: 360px;
}
#sidebar-Btn.lightGreen {
  background: #7ac65c;
}
#sidebar-Btn.deepGreen {
  background: #2e7351;
}
#sidebar-Btn:after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1;
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
#sidebar-Btn:hover {
  background: #2e7351;
}

#sidebarTel {
  font-weight: 700;
  font-size: 7.2vw;
  text-align: center;
}
@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);
  -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: 10px;
  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: 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: #2e7351;
  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: 5px;
  width: 100%;
  color: #fff;
  font-size: 8px;
  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%;
  background: #275543;
}
#footer #footerBody {
  width: 100%;
  color: #fff;
  padding: 90px 0px 90px;
}
#footer #footerBody a {
  color: #fff;
  text-decoration: none;
}
@media (min-width: 992px) {
  #footer #footerBody {
    padding: 120px 0px;
  }
}
#footer #footerBody .footerLeft {
  text-align: center;
}
@media (min-width: 992px) {
  #footer #footerBody .footerLeft {
    text-align: left;
  }
}
#footer #footerBody .footerLeft #f-logo {
  width: 80vw;
  text-align: center;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  margin: 0px auto;
}
@media (min-width: 768px) {
  #footer #footerBody .footerLeft #f-logo {
    width: 320px;
  }
}
@media (min-width: 992px) {
  #footer #footerBody .footerLeft #f-logo {
    width: 420px;
    text-align: left;
    margin: initial;
  }
}
#footer #footerBody .footerLeft .mapPin {
  width: 14px;
  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;
}
#footer #footerBody .footerLeft .f-tel {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 992px) {
  #footer #footerBody .footerLeft .f-tel {
    line-height: 1.4;
  }
}
@media (min-width: 1200px) {
  #footer #footerBody .footerLeft .f-tel {
    line-height: 1;
  }
}
#footer #footerBody .footerLeft .f-tel .en {
  font-size: 1.8rem;
}
#footer #footerBody .footerLeft .f-tel .num {
  font-size: 3rem;
}
#footer #footerBody .footerRight #textLink {
  display: none;
}
@media (min-width: 576px) {
  #footer #footerBody .footerRight #textLink {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.4rem;
    height: 41px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    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 {
  margin: 0px 0px 0px 2rem;
}
#footer #footerBody .footerRight #textLink li a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer #footerBody .footerRight #textLink li a:before {
  content: "";
  display: block;
  width: 4px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  margin-right: 8px;
}
#footer #footerBody .footerRight #textLink li a:hover {
  text-decoration: underline;
}
#footer #footerBody .footerRight .footerRight-Btn {
  background: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  color: #254c39;
  height: 32px;
  padding: 0px 16px;
  border-radius: 18px;
}
#footer #footerBody .footerRight .footerRight-Btn:before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1;
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  -webkit-filter: invert(23%) sepia(8%) saturate(2723%) hue-rotate(98deg) brightness(96%) contrast(86%);
          filter: invert(23%) sepia(8%) saturate(2723%) hue-rotate(98deg) brightness(96%) contrast(86%);
  margin-right: 16px;
  -webkit-transition: all 900ms 0s ease;
  transition: all 900ms 0s ease;
}
#footer #footerBody .footerRight .footerRight-Btn:hover:before {
  -webkit-transform: translate(4px, 0px);
          transform: translate(4px, 0px);
}

#copy {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  margin: 0px;
  background: #233625;
  color: #fff;
  font-weight: 700;
}

#pagetop {
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}
@media (min-width: 992px) {
  #pagetop {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * index.html
 *  
 *-------------------------------------------------------------------------------------------*/
#header-Top {
  margin-top: 60px;
  text-align: center;
  margin-bottom: 60px;
}
#header-Top h1 {
  line-height: 1.2;
  text-align: center;
  font-size: 12vw;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  #header-Top h1 {
    font-size: 7.2rem;
  }
}
#header-Top h1 a {
  text-decoration: none;
}
#header-Top #catch {
  text-align: center;
}
#header-Top #catch span {
  background: -webkit-gradient(linear, left top, right top, from(rgb(49, 103, 83)), to(rgb(75, 133, 65)));
  background: linear-gradient(90deg, rgb(49, 103, 83) 0%, rgb(75, 133, 65) 100%);
  color: #fff;
  line-height: 1.4;
  padding-bottom: 0.1em;
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 5px 15px;
}

#main-Top {
  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;
}
#main-Top h2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.4;
  width: 20em;
  margin-bottom: 6rem;
  font-size: 4.2vw;
}
@media (min-width: 576px) {
  #main-Top h2 {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  #main-Top h2 {
    font-size: 3.6rem;
  }
}
#main-Top h2 span:nth-child(1) {
  text-align: left;
}
#main-Top h2 span:nth-child(2) {
  text-align: right;
}
#main-Top img {
  width: 80%;
}
@media (min-width: 768px) {
  #main-Top img {
    width: initial;
  }
}

.top-Banner {
  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;
  aspect-ratio: 645/195;
  text-decoration: none;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.4;
  border-radius: 15px;
}
@media (min-width: 992px) {
  .top-Banner {
    border-radius: 30px;
  }
}
.top-Banner.bnr01 {
  background: url(../images/p01_banr01.jpg) no-repeat center/auto 100%;
}
.top-Banner.bnr02 {
  background: url(../images/p01_banr02.jpg) no-repeat center/auto 100%;
}
.top-Banner:before {
  width: 18px;
  aspect-ratio: 1;
  content: "";
  display: block;
  background: url(../images/icon_arrow_down.svg) no-repeat center/contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media (min-width: 576px) {
  .top-Banner:before {
    width: 28px;
  }
}
.top-Banner:hover {
  color: #7ac65c;
}
.top-Banner:hover:before {
  -webkit-filter: invert(63%) sepia(28%) saturate(713%) hue-rotate(58deg) brightness(104%) contrast(95%);
          filter: invert(63%) sepia(28%) saturate(713%) hue-rotate(58deg) brightness(104%) contrast(95%);
}
.top-Banner .main {
  font-size: 6.9vw;
}
@media (min-width: 576px) {
  .top-Banner .main {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) {
  .top-Banner .main {
    font-size: 4.8rem;
  }
}
.top-Banner .sub {
  font-size: 3.6vw;
}
@media (min-width: 576px) {
  .top-Banner .sub {
    font-size: 2.4rem;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * index_satoko.html
 *  
 *-------------------------------------------------------------------------------------------*/
#sliderWrap {
  position: relative;
  width: 100%;
  padding: 0px 0% 0px 25%;
  margin-top: 60px;
}
@media (min-width: 576px) {
  #sliderWrap {
    padding: 0px 2% 0px 35%;
  }
}
@media (min-width: 992px) {
  #sliderWrap {
    margin-top: 100px;
  }
}
@media (min-width: 1400px) {
  #sliderWrap {
    margin-top: 120px;
  }
}
#sliderWrap #catch {
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  line-height: 1;
  z-index: 1;
  -webkit-text-stroke: 3px #fff;
  text-stroke: 3px #fff;
  paint-order: stroke;
}
@media (min-width: 992px) {
  #sliderWrap #catch {
    left: 30px;
  }
}
@media (min-width: 1400px) {
  #sliderWrap #catch {
    left: 60px;
  }
}
#sliderWrap #catch .main {
  color: #7ac65c;
  font-size: 10vw;
  line-height: 1;
  display: block;
  margin-bottom: 3rem;
}
@media (min-width: 576px) {
  #sliderWrap #catch .main {
    font-size: 7.8rem;
  }
}
@media (min-width: 768px) {
  #sliderWrap #catch .main {
    font-size: 8.2rem;
  }
}
#sliderWrap #catch .main small {
  line-height: 1.2;
  font-size: 60%;
  display: block;
  margin-bottom: 1rem;
}
#sliderWrap #catch .sub {
  font-size: 3vw;
  line-height: 1.8;
  font-weight: 700;
}
@media (min-width: 576px) {
  #sliderWrap #catch .sub {
    font-size: 1.8rem;
  }
}
#sliderWrap #catch .sub em {
  font-style: normal;
  color: #3d7c4a;
  font-size: 140%;
}

#mainSlider {
  width: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 768px) {
  #mainSlider {
    border-radius: 32px;
  }
}
#mainSlider li:nth-child(1) img {
  -webkit-transform: translateX(-4%);
          transform: translateX(-4%);
}
@media (min-width: 576px) {
  #mainSlider li:nth-child(1) img {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
#mainSlider li:nth-child(2) img {
  -webkit-transform: translateX(-6%);
          transform: translateX(-6%);
}
@media (min-width: 576px) {
  #mainSlider li:nth-child(2) img {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
#mainSlider li:nth-child(3) img {
  -webkit-transform: translateX(15%);
          transform: translateX(15%);
}
@media (min-width: 576px) {
  #mainSlider li:nth-child(3) img {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
#mainSlider .sp-buttons {
  padding-top: 0px;
  position: absolute;
  bottom: 0px;
}
#mainSlider .sp-button {
  width: 13.6666666667%;
  height: 2px;
  position: relative;
  background: #fff;
  border-radius: 0;
  border: 0;
}
#mainSlider {
  /* before要素 */
}
#mainSlider .sp-selected-button:before {
  -webkit-animation-name: sliderpro-bg-color01;
  animation-name: sliderpro-bg-color01;
  -webkit-animation-duration: 5000ms;
  animation-duration: 5000ms;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  width: 0;
  content: "";
  display: inline-block;
  height: 100%;
  background: #333;
  top: 0;
  left: 0;
  position: absolute;
}
@-webkit-keyframes sliderpro-bg-color01 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes sliderpro-bg-color01 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.about-Wrap {
  padding: 60px 0px;
  background: url(../images/bg_paper.jpg) repeat;
}
@media (min-width: 992px) {
  .about-Wrap {
    padding: 90px 0px;
  }
}
@media (min-width: 1400px) {
  .about-Wrap {
    padding: 120px 0px;
  }
}
.about-Wrap .img02 {
  display: none;
}
@media (min-width: 1200px) {
  .about-Wrap .img02 {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: translate(30%, -60%);
            transform: translate(30%, -60%);
  }
}
@media (min-width: 1500px) {
  .about-Wrap .img02 {
    -webkit-transform: translate(10%, -60%);
            transform: translate(10%, -60%);
  }
}
.about-Wrap .img03 {
  display: none;
}
@media (min-width: 1500px) {
  .about-Wrap .img03 {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: translate(10%, 80%);
            transform: translate(10%, 80%);
  }
}

.support-Wrap {
  padding: 60px 0px;
  background: #fffaf0;
  overflow: hidden;
}
@media (min-width: 992px) {
  .support-Wrap {
    padding: 90px 0px;
  }
}
@media (min-width: 1500px) {
  .support-Wrap {
    padding: 240px 0px 120px;
  }
}
.support-Wrap .img01 {
  position: initial;
  top: 0;
  max-width: 100%;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 992px) {
  .support-Wrap .img01 {
    max-width: initial !important;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(105%, -50%);
            transform: translate(105%, -50%);
  }
}
@media (min-width: 1400px) {
  .support-Wrap .img01 {
    -webkit-transform: translate(110%, -50%);
            transform: translate(110%, -50%);
  }
}

.contact-Wrap {
  width: 100%;
  background: url(../images/bg_contact.jpg) no-repeat center/auto 100%;
  padding: 60px 0px;
}
@media (min-width: 992px) {
  .contact-Wrap {
    padding: 90px 0px;
  }
}
@media (min-width: 1400px) {
  .contact-Wrap {
    padding: 120px 0px;
  }
}
.contact-Wrap .contactBox {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 30px 15px;
  height: 100%;
}
@media (min-width: 1200px) {
  .contact-Wrap .contactBox {
    padding: 60px 15px;
  }
}
.contact-Wrap .contactBox img {
  height: 15vw;
  margin-bottom: 2rem;
  -webkit-filter: invert(20%) sepia(10%) saturate(892%) hue-rotate(57deg) brightness(95%) contrast(90%);
          filter: invert(20%) sepia(10%) saturate(892%) hue-rotate(57deg) brightness(95%) contrast(90%);
}
@media (min-width: 576px) {
  .contact-Wrap .contactBox img {
    height: 72px;
  }
}
.contact-Wrap .contactBox .tit {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 2rem;
}
.contact-Wrap .contactBox .num {
  color: #7ac65c;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  font-size: 8vw;
}
@media (min-width: 576px) {
  .contact-Wrap .contactBox .num {
    font-size: 6rem;
  }
}
@media (min-width: 992px) {
  .contact-Wrap .contactBox .num {
    font-size: 4rem;
  }
}
@media (min-width: 1500px) {
  .contact-Wrap .contactBox .num {
    font-size: 4.8rem;
  }
}
.contact-Wrap .contactBox .num a {
  color: #7ac65c;
  text-decoration: none;
}
.contact-Wrap .contactBox .time {
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
}

.contactBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #7ac65c;
  color: #fff;
  font-weight: 700;
  font-size: 4.6vw;
  max-width: 360px;
  width: 100%;
  height: 60px;
  -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;
  text-decoration: none;
  border-radius: 30px;
  border: solid 1px #7ac65c;
  padding: 1px 2px 1px 30px;
  -webkit-transition: all 900ms 0s ease;
  transition: all 900ms 0s ease;
}
@media (min-width: 576px) {
  .contactBtn {
    font-size: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .contactBtn {
    font-size: 2rem;
  }
}
@media (min-width: 1500px) {
  .contactBtn {
    font-size: 2.4rem;
  }
}
.contactBtn:after {
  content: "";
  width: 54px;
  aspect-ratio: 1;
  background: #fff url(../images/icon_arrow.svg) no-repeat center/75%;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
  border-radius: 50%;
}
.contactBtn:hover {
  color: #fff;
  background: #3d7c4a;
}

/*-------------------------------------------------------------------------------------------*
 *
 * kasuga_service.html 
 *  
 *-------------------------------------------------------------------------------------------*/
.wrapper {
  padding: 60px 0px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .wrapper {
    padding: 90px 0px;
  }
}
@media (min-width: 1400px) {
  .wrapper {
    padding: 120px 0px;
  }
}
.wrapper.beige {
  background: #fffaf0;
}
.wrapper.white {
  background: #fff;
}
.wrapper .Cont {
  min-height: 580px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wrapper .img {
  position: initial;
  top: 0;
  max-width: 100%;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 992px) {
  .wrapper .img {
    max-width: initial !important;
    position: absolute;
    top: 50%;
  }
}
.wrapper .img.right {
  right: 0;
}
@media (min-width: 992px) {
  .wrapper .img.right {
    -webkit-transform: translate(105%, -50%);
            transform: translate(105%, -50%);
  }
}
@media (min-width: 1400px) {
  .wrapper .img.right {
    -webkit-transform: translate(110%, -50%);
            transform: translate(110%, -50%);
  }
}
.wrapper .img.left {
  left: 0;
}
@media (min-width: 992px) {
  .wrapper .img.left {
    -webkit-transform: translate(-105%, -50%);
            transform: translate(-105%, -50%);
  }
}
@media (min-width: 1400px) {
  .wrapper .img.left {
    -webkit-transform: translate(-110%, -50%);
            transform: translate(-110%, -50%);
  }
}

.lebel {
  font-weight: 900;
  color: #fff;
  position: absolute;
  z-index: 3;
  line-height: 1;
  font-size: 12vw;
  top: 60px;
}
@media (min-width: 576px) {
  .lebel {
    font-size: 8rem;
    top: 60px;
  }
}
@media (min-width: 992px) {
  .lebel {
    font-size: 12rem;
    top: 30px;
  }
}
@media (min-width: 1400px) {
  .lebel {
    font-size: 15rem;
  }
}
.lebel.lightGreen {
  background: #7ac65c;
}
.lebel.deepGreen {
  background: #2e7351;
}
.lebel.right {
  right: 0px;
  padding: 0.1em 0.6em 0.2em 0.3em;
  border-radius: 16px 0px 0px 16px;
}
@media (min-width: 992px) {
  .lebel.right {
    border-radius: 24px 0px 0px 24px;
  }
}
@media (min-width: 1400px) {
  .lebel.right {
    border-radius: 36px 0px 0px 36px;
  }
}
.lebel.left {
  left: initial;
  right: 0;
  padding: 0.1em 0.6em 0.2em 0.3em;
  border-radius: 16px 0px 0px 16px;
}
@media (min-width: 992px) {
  .lebel.left {
    right: initial;
    left: 0;
    border-radius: 0px 24px 24px 0px;
  }
}
@media (min-width: 1400px) {
  .lebel.left {
    border-radius: 0px 36px 36px 0px;
  }
}

.qa-all2 .qa-set {
  margin-bottom: 3rem;
  background: #f5f4f1;
  padding: 15px;
}
@media (min-width: 992px) {
  .qa-all2 .qa-set {
    padding: 30px;
  }
}
.qa-all2 .q-box {
  padding: 0px 30px;
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: justify;
}
@media (min-width: 992px) {
  .qa-all2 .q-box {
    padding: 0px 60px;
  }
}
.qa-all2 .q-box:before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 0px;
  font-weight: bold;
  color: #d08989;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-size: 3.6rem;
}
@media (min-width: 992px) {
  .qa-all2 .q-box:before {
    left: 15px;
  }
}
.qa-all2 .q-box:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 0px;
  width: 2.4rem;
  aspect-ratio: 1;
  background: url(../images/icon_plus.svg) no-repeat center/contain;
}
@media (min-width: 992px) {
  .qa-all2 .q-box:after {
    width: 3rem;
    right: 15px;
  }
}
.qa-all2 .q-box:hover {
  cursor: pointer;
}
.qa-all2 .q-open:after {
  background: url(../images/icon_minus.svg) no-repeat center/contain;
}
.qa-all2 .a-box {
  padding: 2rem 30px 0px 30px;
  display: none;
  margin-top: 2rem;
  position: relative;
  border-top: solid 1px #fff;
  text-align: justify;
}
@media (min-width: 768px) {
  .qa-all2 .a-box {
    padding: 2rem 60px 0px 60px;
  }
}
.qa-all2 .a-box:before {
  content: "A";
  position: absolute;
  top: 1.5rem;
  left: 0px;
  font-weight: bold;
  font-size: 3rem;
}
@media (min-width: 992px) {
  .qa-all2 .a-box:before {
    left: 15px;
  }
}

.flowBox2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #7AC65C;
  border-radius: 8px;
  aspect-ratio: initial;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 100%;
}
.flowBox2 .step {
  position: absolute;
  font-size: 1.8rem;
  font-weight: 700;
  background: #2E7351;
  color: #fff;
  width: 48px;
  aspect-ratio: 1;
  top: -24px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  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;
  border-radius: 50%;
}
.flowBox2 .flowImage {
  border-radius: 6px 6px 0px 0px;
  overflow: hidden;
}
.flowBox2 .cont {
  padding: 30px 15px;
  width: 100%;
}
.flowBox2 .tit {
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.flowBox2 .txt {
  padding: 0px 15px;
  text-align: center;
  line-height: 1.4;
  font-size: 1.6rem;
  color: #fff;
}

/*-------------------------------------------------------------------------------------------*
 *
 * kasuga_midwifery.html
 *  
 *-------------------------------------------------------------------------------------------*/
.responsiveTable5 {
  width: 100%;
  margin-bottom: 10px;
  border-bottom: solid 1px #ccc;
}
@media (min-width: 768px) {
  .responsiveTable5 {
    width: 100%;
    display: table;
    border-bottom: none;
  }
}
.responsiveTable5 tbody {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .responsiveTable5 tbody {
    display: table-row-group;
  }
}
.responsiveTable5 tr {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .responsiveTable5 tr {
    display: table-row;
  }
}
.responsiveTable5 tr:first-child th {
  border-top: solid 1px #6d6d6d;
}
.responsiveTable5 tr:first-child td {
  border-top: none;
}
@media (min-width: 768px) {
  .responsiveTable5 tr:first-child td {
    border-top: solid 1px #ccc;
  }
}
.responsiveTable5 th {
  width: 100%;
  padding: 25px 0px 0px;
  font-weight: bold;
  border-top: solid 1px #6d6d6d;
  line-height: 140%;
  display: block;
  font-weight: 700;
}
@media (min-width: 768px) {
  .responsiveTable5 th {
    padding: 25px 0px;
    width: 30%;
    border-top: none;
    border-bottom: solid 1px #6d6d6d;
    line-height: 140%;
    display: table-cell;
    vertical-align: middle;
  }
}
.responsiveTable5 td {
  width: 100%;
  padding: 7px 0px 25px;
  border-bottom: none;
  line-height: 140%;
  display: block;
}
@media (min-width: 768px) {
  .responsiveTable5 td {
    padding: 25px 15px;
    border-top: none;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * nobutomo_service.html
 *  
 *-------------------------------------------------------------------------------------------*/
.number-DL dt {
  font-size: 4.3vw;
  line-height: 1.2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .number-DL dt {
    font-size: 3rem;
  }
}
.number-DL dt span {
  color: #fff;
  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;
  border-radius: 50%;
  padding-bottom: 0.1em;
  aspect-ratio: 1;
  line-height: 1;
  font-weight: 900;
  margin-right: 1.2rem;
  font-size: 3.6vw;
  width: 5.6vw;
}
@media (min-width: 576px) {
  .number-DL dt span {
    font-size: 2.4rem;
    width: 32px;
  }
}
.number-DL dd {
  text-align: justify;
}
.number-DL.deepGreen dt {
  color: #2e7351;
}
.number-DL.deepGreen dt span {
  background: #2e7351;
}
.number-DL.deepGreen dd {
  font-size: 1.8rem;
}

.dotList.lightGreen li:before {
  background: #7ac65c;
}
.dotList.deepGreen li:before {
  background: #2e7351;
}
.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: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.8rem;
}
.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;
}
.dotList.half {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.dotList.half li {
  width: 100%;
}
@media (min-width: 576px) {
  .dotList.half li {
    width: 50%;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * tobutomo_company.html
 *  
 *-------------------------------------------------------------------------------------------*/
.historyTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px 25px;
  width: 100%;
  display: table;
  border-bottom: none;
}
.historyTable tr:nth-child(even) {
  background: rgba(238, 232, 220, 0.6);
}
.historyTable th {
  line-height: 140%;
  padding: 25px 0px 25px 15px;
  width: 100%;
  font-weight: bold;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  display: block;
}
@media (min-width: 768px) {
  .historyTable th {
    display: table-cell;
    vertical-align: middle;
    width: 25%;
    padding: 25px 15px;
  }
}
.historyTable th div:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #2e7351;
  margin-right: 0.8rem;
  margin-bottom: 0.2rem;
}
@media (min-width: 768px) {
  .historyTable th div:before {
    margin-bottom: 0.4rem;
  }
}
.historyTable th div span {
  font-size: 2rem;
  margin-right: 0.4rem;
}
.historyTable td {
  line-height: 140%;
  padding: 25px 0px;
  border-top: none;
  border-bottom: solid 1px #ccc;
  line-height: 160%;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .historyTable td {
    border-top: solid 1px #ccc;
    display: table-cell;
  }
}
.historyTable td div {
  padding: 0px 15px;
  border-left: none;
}
@media (min-width: 768px) {
  .historyTable td div {
    padding: 0px 25px;
    border-left: solid 1px #ccc;
  }
}

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

/*-------------------------------------------------------------------------------------------*
 *
 * contact.html
 *  
 *-------------------------------------------------------------------------------------------*/
.paper-Wrap {
  padding: 60px 0px;
  background: url(../images/bg_paper.jpg) repeat;
}
@media (min-width: 992px) {
  .paper-Wrap {
    padding: 90px 0px;
  }
}
@media (min-width: 1400px) {
  .paper-Wrap {
    padding: 120px 0px;
  }
}

.contact-Tel {
  text-align: center;
}
.contact-Tel a {
  text-decoration: none;
}
.contact-Tel span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 900;
  font-size: 6.4vw;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0px auto;
  line-height: 1;
}
@media (min-width: 576px) {
  .contact-Tel span {
    font-size: 4.8rem;
  }
}
.contact-Tel span img {
  width: 1em;
  margin-right: 0.4em;
  -webkit-transform: translateY(0.1em);
          transform: translateY(0.1em);
}
.contact-Tel.lightGreen img {
  -webkit-filter: invert(77%) sepia(7%) saturate(4053%) hue-rotate(54deg) brightness(114%) contrast(55%);
          filter: invert(77%) sepia(7%) saturate(4053%) hue-rotate(54deg) brightness(114%) contrast(55%);
}
.contact-Tel.deepGreen img {
  -webkit-filter: invert(35%) sepia(57%) saturate(401%) hue-rotate(98deg) brightness(95%) contrast(91%);
          filter: invert(35%) sepia(57%) saturate(401%) hue-rotate(98deg) brightness(95%) contrast(91%);
}

.mailfoamTable {
  width: 100%;
  margin-bottom: 10px;
}
.mailfoamTable th {
  width: 100%;
  padding: 20px 20px 20px 0px;
  font-weight: bold;
  border-top: none;
  border-bottom: solid 1px #ccc;
  line-height: 140%;
  display: block;
}
.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: 1rem 1.5rem;
}

@media (min-width: 768px) {
  .mailfoamTable table {
    width: 100%;
    display: table;
  }
  .mailfoamTable th {
    width: 30%;
    font-weight: bold;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    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: 20px 0px 20px 20px;
    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: 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%;
}

.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: 11px;
  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: 60px;
  background: #7ac65c;
  color: #fff;
  position: relative;
  font-size: 4.2vw;
  line-height: 1.2;
  padding: 0px 30px;
  border-radius: 30px;
  border: none;
  line-height: 1;
  -webkit-transition: all 900ms 0s ease;
  transition: all 900ms 0s ease;
}
@media (min-width: 576px) {
  .formBtn {
    font-size: 18px;
  }
}
.formBtn:hover {
  background: #2e7351;
  text-decoration: none;
}
.formBtn.back:before {
  content: "";
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  display: inline-block;
  width: 2.4rem;
  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.svg) no-repeat center/contain;
  display: inline-block;
  width: 2.4rem;
  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;
  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;
  margin-top: 60px;
  width: 100%;
  position: relative;
}
@media (min-width: 992px) {
  #h2Title {
    height: 440px;
    margin-top: 100px;
  }
}
@media (min-width: 1200px) {
  #h2Title {
    height: 480px;
  }
}
@media (min-width: 1400px) {
  #h2Title {
    height: 520px;
    margin-top: 120px;
  }
}
#h2Title:after {
  content: "";
  display: block;
  width: 75%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 2%;
  border-radius: 24px;
}
@media (min-width: 992px) {
  #h2Title:after {
    border-radius: 36px;
    width: 65%;
  }
}
#h2Title.p03:after {
  background: url(../images/bg_h2title03.jpg) no-repeat center right 10%;
  background-size: auto 100%;
}
@media (min-width: 992px) {
  #h2Title.p03:after {
    background: url(../images/bg_h2title03.jpg) no-repeat center right;
  }
}
#h2Title.p04:after {
  background: url(../images/bg_h2title04.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title.p05:after {
  background: url(../images/bg_h2title05.jpg) no-repeat center left;
  background-size: auto 100%;
}
@media (min-width: 1200px) {
  #h2Title.p05:after {
    background: url(../images/bg_h2title05.jpg) no-repeat center left;
  }
}
#h2Title.p06:after {
  background: url(../images/bg_h2title06.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title.p07:after {
  background: url(../images/bg_h2title07.jpg) no-repeat center right 35%;
  background-size: auto 100%;
}
@media (min-width: 576px) {
  #h2Title.p07:after {
    background: url(../images/bg_h2title07.jpg) no-repeat center;
  }
}
#h2Title.lightGreen h2 {
  color: #7ac65c;
}
#h2Title.lightGreen h2 .en:before {
  background: #7ac65c;
}
#h2Title.deepGreen h2 {
  color: #2e7351;
}
#h2Title.deepGreen h2 .en:before {
  background: #2e7351;
}
#h2Title h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 2;
  -webkit-text-stroke: 3px #fff;
  text-stroke: 3px #fff;
  paint-order: stroke;
}
@media (min-width: 768px) {
  #h2Title h2 {
    left: 30px;
  }
}
@media (min-width: 1400px) {
  #h2Title h2 {
    left: 60px;
  }
}
#h2Title h2 .ja {
  font-weight: 500;
  font-size: 12vw;
  text-align: left;
  line-height: 1;
}
@media (min-width: 576px) {
  #h2Title h2 .ja {
    font-size: 7.2rem;
  }
}
@media (min-width: 992px) {
  #h2Title h2 .ja {
    font-size: 7.6rem;
  }
}
@media (min-width: 1200px) {
  #h2Title h2 .ja {
    font-size: 8.2rem;
  }
}
#h2Title h2 .en {
  font-size: 5.2vw;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  #h2Title h2 .en {
    font-size: 3rem;
  }
}
#h2Title h2 .en:before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  margin-right: 1.6rem;
}
@media (min-width: 992px) {
  #h2Title h2 .en:before {
    width: 60px;
    height: 2px;
  }
}

.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;
}
.title .en {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
.title .en:before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1px;
  margin-right: 1.8rem;
}
.title .ja {
  font-size: 8.2vw;
  font-weight: 500;
  position: relative;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .title .ja {
    font-size: 5.4rem;
  }
}
@media (min-width: 1200px) {
  .title .ja {
    font-size: 6rem;
  }
}
.title.lightGreen {
  color: #7ac65c;
}
.title.lightGreen .en:before,
.title.lightGreen .en:after {
  background: #7ac65c;
}
.title.deepGreen {
  color: #2e7351;
}
.title.deepGreen .en:before {
  background: #2e7351;
}
.title.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.title.center .en {
  text-align: center;
}
.title.center .en:after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1px;
  margin-left: 1.8rem;
}
.title.center .ja {
  padding: 0px 3.6rem;
  text-align: center;
}
.title.white .en {
  color: #fff;
}
.title.white .ja {
  color: #fff;
}
.title.white .ja:before {
  background: #fff;
}
.title.white .ja:after {
  background: #fff;
}

.subTitle {
  color: #7ac65c;
  font-weight: 700;
  font-size: 4.6vw;
}
@media (min-width: 576px) {
  .subTitle {
    font-size: 3rem;
  }
}

.subTitle2 {
  line-height: 1;
  position: relative;
  padding-left: 3rem;
  padding-bottom: 0.1em;
  font-size: 4.8vw;
}
@media (min-width: 576px) {
  .subTitle2 {
    font-size: 3.6rem;
  }
}
.subTitle2.lightGreen {
  color: #7ac65c;
}
.subTitle2.lightGreen:before {
  background: #7ac65c;
}
.subTitle2.deepGreen {
  color: #2e7351;
}
.subTitle2.deepGreen:before {
  background: #2e7351;
}
.subTitle2:before {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 0;
}

.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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #fff;
  color: #3d7c4a;
  font-weight: 700;
  max-width: 320px !important;
  width: 100% !important;
  height: 60px;
  -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: 30px;
  border: solid 1px #3d7c4a !important;
  padding: 1px 2px 1px 30px !important;
  -webkit-transition: all 900ms 0s ease;
  transition: all 900ms 0s ease;
  text-decoration: none;
}
.detailBtn:after {
  content: "";
  width: 54px;
  aspect-ratio: 1;
  background: #7ac65c url(../images/icon_arrow-white.svg) no-repeat center/75%;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
  border-radius: 50%;
}
.detailBtn:hover {
  color: #fff;
  background: #3d7c4a;
}

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

.vertical-MiddleBox {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
}

.text-aline-Justyfy {
  text-align: justify;
}

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.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;
}

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

.lh1 {
  line-height: 1;
}

.lh14 {
  line-height: 1.4;
}

.lh2 {
  line-height: 2;
}

small {
  font-size: 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 */