@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.inter-400 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* bootstrap.css基本の打消し（同じclass名での書き換え）
---------------------------------------------------- */
* {
  margin: 0px;
  padding: 0px;
}

html {
  font-size: 62.5%;
}

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

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: #000;
  text-decoration: underline;
}
a:hover {
  color: #000;
  text-decoration: none;
}

/*-------------------------------------------------------------------------------------------*
 *
 * Header
 *  
 *-------------------------------------------------------------------------------------------*/
#header {
  display: flex;
  justify-content: space-between;
  align-content: center;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  z-index: 100;
  transition: all 600ms 0s ease;
  align-items: center;
  background: #fff;
}
@media (min-width: 992px) {
  #header {
    height: 80px;
  }
}
@media (min-width: 1200px) {
  #header {
    height: 100px;
  }
}
#header #logo {
  display: block;
  margin-left: 10px;
  width: 210px;
  transition: all 600ms 0s ease;
}
@media (min-width: 576px) {
  #header #logo {
    width: 210px;
  }
}
@media (min-width: 992px) {
  #header #logo {
    width: 280px;
    margin-left: 15px;
  }
}
@media (min-width: 1200px) {
  #header #logo {
    width: 308px;
  }
}
#header #rightMenu {
  display: flex;
  justify-content: flex-end;
}
#header #header-Tel {
  display: none;
}
@media (min-width: 768px) {
  #header #header-Tel {
    display: block;
    margin-left: 3.5rem;
    margin-right: 60px;
  }
}
@media (min-width: 992px) {
  #header #header-Tel {
    margin-right: 80px;
  }
}
@media (min-width: 1200px) {
  #header #header-Tel {
    margin-right: 0px;
  }
}
#header #header-Tel img {
  height: 60px;
  transition: all 600ms 0s ease;
}
@media (min-width: 992px) {
  #header #header-Tel img {
    height: 80px;
  }
}
@media (min-width: 1200px) {
  #header #header-Tel img {
    height: 100px;
  }
}
#header #header-Tel a:hover {
  opacity: 0.8;
}
#header #mainNavi {
  display: none;
}
@media (min-width: 1200px) {
  #header #mainNavi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
#header #mainNavi > li {
  display: block;
}
#header #mainNavi > li > a {
  padding: 0px 1rem;
  text-decoration: none;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  line-height: 2;
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
}
@media (min-width: 1400px) {
  #header #mainNavi > li > a {
    font-size: 1.8rem;
  }
}
@media (min-width: 1400px) {
  #header #mainNavi > li > a {
    padding: 0px 1.5rem;
  }
}
#header #mainNavi > li > a:before {
  width: 0%;
  content: "";
  display: block;
  background: #fad628;
  height: 4px;
  transition: all 600ms 0s ease;
  border-radius: 2px;
}
#header #mainNavi li.active a:before,
#header #mainNavi li a:hover:before {
  width: 100%;
}
#header.on {
  height: 60px;
}
@media (min-width: 992px) {
  #header.on {
    height: 80px;
  }
}
#header.on #header-Tel img {
  height: 60px;
}
@media (min-width: 992px) {
  #header.on #header-Tel img {
    height: 80px;
  }
}

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

.dropdown-menu {
  padding: 0px;
}
.dropdown-menu .active a {
  background: #ecf8ef;
}
.dropdown-menu a {
  display: block;
  text-decoration: none;
  border-bottom: solid 1px #dcdcdc;
  line-height: 1.2;
  position: relative;
  padding: 1.4rem 1.8rem;
}
.dropdown-menu a:hover {
  background: #ecf8ef;
}
.dropdown-menu a:after {
  content: "";
  display: block;
  width: 24px !important;
  aspect-ratio: 1;
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  position: absolute;
  top: 1.6rem;
  right: 1rem;
}

.dropdown-menu.show {
  width: 280px;
  font-size: 1.4rem;
  border: none;
  margin-top: 20px !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;
  transition: 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 {
  transform: translate3d(-100%, 0, 0);
}
#sidebar #side-logo {
  width: 280px;
}
#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sidebar a {
  text-decoration: none;
}
#sidebar .list-sidenav {
  width: 100%;
  font-size: 1.8rem;
}
#sidebar .list-sidenav > li {
  text-align: left;
}
#sidebar .list-sidenav > li > a {
  color: #3a3a3a;
  line-height: 1.2;
  display: flex;
  padding: 1.8rem 0px;
  position: relative;
  justify-content: flex-start;
  align-items: flex-end;
  border-bottom: dashed 1px #5f5f5f;
  font-size: 16px;
  font-weight: 500;
}
#sidebar .list-sidenav > li > a:after {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
#sidebar .list-sidenav > li.active > a,
#sidebar .list-sidenav > li > a:hover {
  border-bottom: solid 1px #245e32;
  color: #245e32;
  background: #ecf8ef;
}
#sidebar .list-sidenav > li.active > a:after,
#sidebar .list-sidenav > li > a:hover:after {
  filter: invert(30%) sepia(8%) saturate(3311%) hue-rotate(82deg) brightness(94%) contrast(89%);
}
#sidebar .list-sidenav > li.active > a:after {
  filter: invert(30%) sepia(8%) saturate(3311%) hue-rotate(82deg) brightness(94%) contrast(89%);
}
#sidebar .list-sidenav > li.has-submenu > a:after {
  background: url(../images/icon_plus.svg) no-repeat center/contain;
}
#sidebar .list-sidenav > li.has-submenu > a.on:after {
  background: url(../images/icon_minus.svg) no-repeat center/contain;
}
#sidebar .submenu {
  background: #fff;
  display: none;
}
#sidebar .submenu li {
  border-bottom: 1px dashed #b4b4b4;
}
#sidebar .submenu li a {
  padding: 1rem;
  font-size: 14px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#sidebar .submenu li a:hover {
  color: #005145;
  background: #ecf8ef;
}
#sidebar .submenu li.active a {
  color: #005145;
  background: #ecf8ef;
}

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

#sidebarTel .tel {
  font-weight: 700;
}
#sidebarTel .tel .en {
  font-size: 1.8rem;
}
#sidebarTel .tel .num {
  font-size: 3rem;
}
#sidebarTel .time {
  font-size: 1.3rem;
  line-height: 1.4;
}

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

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

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

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

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

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

/*-------------------------------------------------------------------------------------------*
 *
 * Footer
 *  
 *-------------------------------------------------------------------------------------------*/
#footer {
  width: 100%;
  background: #fff;
}
#footer #footerBody {
  width: 100%;
  padding: 90px 0px;
}
@media (min-width: 992px) {
  #footer #footerBody {
    padding: 120px 0px;
  }
}
#footer #footerBody a {
  color: #000;
  text-decoration: none;
}
#footer #footerBody .footerLeft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
@media (min-width: 992px) {
  #footer #footerBody .footerLeft {
    align-items: flex-start;
  }
}
#footer #footerBody .footerLeft #f-logo {
  width: 60vw;
  text-align: center;
}
@media (min-width: 576px) {
  #footer #footerBody .footerLeft #f-logo {
    max-width: 308px;
    width: auto;
  }
}
@media (min-width: 992px) {
  #footer #footerBody .footerLeft #f-logo {
    text-align: left;
  }
}
#footer #footerBody .footerLeft .mapPin {
  display: inline-flex;
  margin-left: 0.8rem;
  width: 11px;
  line-height: 0.01;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  #footer #footerBody .footerLeft .mapPin {
    width: 14px;
  }
}
#footer #footerBody .footerLeft .f-tel {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  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 .permit {
  font-size: 2.4vw;
  font-weight: 400;
}
@media (min-width: 576px) {
  #footer #footerBody .footerLeft .permit {
    font-size: 1.4rem;
  }
}
#footer #footerBody .footerRight {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
#footer #footerBody .footerRight .footerRight-Top {
  display: none;
}
@media (min-width: 992px) {
  #footer #footerBody .footerRight .footerRight-Top {
    display: flex;
    flex-direction: row;
  }
}
#footer #footerBody .footerRight .textLink {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.6rem;
  margin-right: 4rem;
}
#footer #footerBody .footerRight .textLink li {
  margin-bottom: 2rem;
  white-space: no-wrap;
}
#footer #footerBody .footerRight .textLink li a {
  text-decoration: none;
}
#footer #footerBody .footerRight .textLink li a:hover {
  text-decoration: underline;
}
#footer #footerBody .footerRight .textLink .sub-menu {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
#footer #footerBody .footerRight .textLink .sub-menu li {
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
#footer #footerBody .footerRight .textLink .sub-menu li:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #000;
  margin-right: 0.8rem;
}
#footer #footerBody .footerRight #copy {
  text-align: center;
  font-size: 1.2rem;
  margin: 0px;
}
@media (min-width: 992px) {
  #footer #footerBody .footerRight #copy {
    text-align: right;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * index.html
 *  
 *-------------------------------------------------------------------------------------------*/
#mainVisual {
  width: 100%;
  margin-top: 60px;
}
@media (min-width: 992px) {
  #mainVisual {
    margin-top: 80px;
  }
}
@media (min-width: 1200px) {
  #mainVisual {
    margin-top: 100px;
  }
}

.textBox {
  background: #fff;
  border-radius: 15px;
  padding: 15px 25px;
}
@media (min-width: 992px) {
  .textBox {
    border-radius: 30px;
    padding: 30px 50px;
  }
}

.resultDL {
  width: 100%;
  border-bottom: solid 1px #f0f0f0;
  padding: 24px 0px;
}
.resultDL:last-child {
  border-bottom: none;
}
.resultDL dt {
  display: inline-block;
  background: #245E32;
  color: #fff;
  padding: 4px 12px 6px 12px;
  border-radius: 4px;
  line-height: 1;
  margin-bottom: 1.6rem;
  font-size: 2.4rem;
}
.resultDL dd {
  font-size: 2rem;
  font-weight: 700;
}

.underLine {
  background: linear-gradient(transparent 60%, #ffed97 0%);
}

.serviceBox {
  border-radius: 45px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.serviceBox .txt {
  padding: 15px 30px;
  background: #fff;
  height: 100%;
}
@media (min-width: 992px) {
  .serviceBox .txt {
    padding: 20px 40px;
  }
}
@media (min-width: 1200px) {
  .serviceBox .txt {
    padding: 30px 60px;
  }
}

.serviceDL {
  color: #245e32;
  display: flex;
  justify-content: flex-start;
}
.serviceDL dt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Inter", sans-serif;
  line-height: 1;
  padding-right: 15px;
  border-right: 1px solid #cbcbcb;
}
@media (min-width: 992px) {
  .serviceDL dt {
    padding-right: 30px;
  }
}
.serviceDL dt .en {
  font-size: 2.4vw;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 576px) {
  .serviceDL dt .en {
    font-size: 1.2rem;
  }
}
.serviceDL dt .num {
  font-size: 3.2rem;
  font-weight: 900;
  text-align: center;
}
@media (min-width: 576px) {
  .serviceDL dt .num {
    font-size: 4.8rem;
  }
}
.serviceDL dd {
  padding-left: 15px;
  font-size: 7.2vw;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 576px) {
  .serviceDL dd {
    font-size: 3.2rem;
  }
}
@media (min-width: 992px) {
  .serviceDL dd {
    padding-left: 30px;
  }
}

.areaList {
  display: flex;
  flex-wrap: wrap;
}
.areaList li {
  font-size: 1.4rem;
  width: 100px;
  height: 30px;
  border-radius: 15px;
  border: solid 1px #c7c7c7;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  margin-right: 0.4rem;
}
.areaList li:last-child {
  width: inherit;
  border: none;
  display: inline-flex;
  margin-left: 0.8rem;
}

.purchase {
  position: initial;
}
@media (min-width: 1400px) {
  .purchase {
    position: absolute;
    bottom: -320px;
  }
}

.cautionDL {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 30px 30px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 30px 30px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 30px 30px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}
.cautionDL dt {
  background: #ffa200;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  padding: 10px 15px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .cautionDL dt {
    height: 90px;
  }
}
.cautionDL dt img {
  margin-right: 1.6rem;
}
.cautionDL dd {
  background: #fffae2;
  padding: 20px 30px;
}
@media (min-width: 768px) {
  .cautionDL dd {
    padding: 40px 60px;
  }
}

.purchaseTable {
  width: 100%;
}
.purchaseTable th {
  padding-right: 20px;
  vertical-align: top;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .purchaseTable th {
    display: table-cell;
    width: auto;
  }
}
.purchaseTable th span {
  background: #fff;
  text-align: center;
  width: 180px;
  border-radius: 20px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
}
.purchaseTable td {
  font-weight: 700;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .purchaseTable td {
    display: table-cell;
    width: auto;
  }
}

.contact-Wrap {
  background: #245e32;
  background-image: url(../images/bg_greenline-left1.png), url(../images/bg_greenline-right1.png);
  background-repeat: no-repeat;
  background-position: left top, right bottom;
  padding: 90px 14px 90px;
  color: #fff;
}
@media (min-width: 1400px) {
  .contact-Wrap {
    padding: 260px 14px 120px;
  }
}
.contact-Wrap.low {
  padding: 90px 14px 90px;
}
@media (min-width: 1400px) {
  .contact-Wrap.low {
    padding: 120px 14px 120px;
  }
}
.contact-Wrap .tit {
  font-size: 7.4vw;
  font-weight: 800;
  text-align: center;
  line-height: 1.4;
}
@media (min-width: 576px) {
  .contact-Wrap .tit {
    font-size: 4rem;
  }
}
@media (min-width: 1400px) {
  .contact-Wrap .tit {
    text-align: left;
  }
}
.contact-Wrap hr {
  border-color: #769d80;
}
.contact-Wrap .tel {
  font-size: 7.4vw;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  line-height: 1;
}
@media (min-width: 576px) {
  .contact-Wrap .tel {
    font-size: 4.8rem;
  }
}
.contact-Wrap .tel a {
  text-decoration: none;
  color: #fff;
}
.contact-Wrap .time {
  font-size: 1.4rem;
  font-weight: 700;
}

.mailBtn {
  display: inline-flex;
  background: #fff;
  color: #245e32;
  font-size: 4vw;
  font-weight: 700;
  max-width: 430px;
  width: 100%;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 45px;
  padding: 0px 30px;
  text-decoration: none;
  transition: all 600ms 0s ease;
  border: solid 1px #fff;
}
@media (min-width: 576px) {
  .mailBtn {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .mailBtn {
    height: 90px;
  }
}
.mailBtn img {
  margin-right: 1.6rem;
}
.mailBtn:hover {
  color: #fff;
  background: #245e32;
}
.mailBtn:hover img {
  filter: brightness(0) invert(1);
}

/*-------------------------------------------------------------------------------------------*
 *
 * service.html 
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * disposal.html
 *  
 *-------------------------------------------------------------------------------------------*/
.flowBox1 {
  display: flex;
  border: solid 2px #279f44;
  border-radius: 30px;
  flex-direction: row;
  align-items: center;
  position: relative;
  justify-content: flex-start;
  height: 100%;
  background: #fff;
  padding: 15px;
}
.flowBox1 .step {
  position: absolute;
  font-size: 1.4rem;
  font-weight: 700;
  background: #279f44;
  color: #fff;
  top: -20px;
  left: 50%;
  transform: translate(-50%, 0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 6px 12px 6px 12px;
}
.flowBox1 .flow-img {
  border-radius: 22px 22px 0px 0px;
  overflow: hidden;
  flex: 2;
  margin-right: 1.8rem;
}
.flowBox1 .tit {
  font-size: 3.6vw;
  flex: 4;
}
@media (min-width: 576px) {
  .flowBox1 .tit {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  .flowBox1 .tit {
    font-size: 1.6rem;
  }
}
.flowBox1 .txt {
  display: flex;
  padding: 0px 15px 15px;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .flowBox1 .txt {
    padding: 0px 30px;
  }
}

.label {
  background: #f9d628;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  width: 100%;
  height: 60px;
  padding: 0.4rem 2.4rem 0.6rem 2.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 4vw;
  line-height: 1;
}
@media (min-width: 576px) {
  .label {
    font-size: 2rem;
  }
}
@media (min-width: 1400px) {
  .label {
    font-size: 2.4rem;
  }
}
.label:before {
  content: "";
  display: block;
  width: 12px;
  aspect-ratio: 1;
  background: #fff;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 50%;
}
@media (min-width: 576px) {
  .label:before {
    left: 1.4rem;
  }
}

.flowBox2 {
  display: flex;
  border: solid 4px #279f44;
  border-radius: 8px;
  aspect-ratio: initial;
  flex-direction: column;
  align-items: center;
  position: relative;
  justify-content: space-between;
  height: 100%;
}
.flowBox2 .tit {
  width: 100%;
  font-size: 2.4rem;
  font-weight: 700;
  background: #279f44;
  color: #fff;
  padding-bottom: 0.4rem;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flowBox2 .img {
  width: 60%;
  margin: 0px auto;
}
.flowBox2 .txt {
  font-size: 2rem;
  text-align: center;
  line-height: 1.4;
}
.flowBox2 .price {
  display: flex;
  padding: 0px 15px 15px;
  font-size: 4.2rem;
  font-weight: 800;
  color: #f9931e;
  background: #fff;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 70%, rgb(255, 237, 151) 70%, rgb(255, 237, 151) 90%, rgb(255, 255, 255) 90%);
}
@media (min-width: 992px) {
  .flowBox2 .price {
    padding: 0px 30px;
  }
}

.responsiveTable4 {
  width: 100%;
}
@media (min-width: 768px) {
  .responsiveTable4 {
    display: table;
  }
}
.responsiveTable4.center td,
.responsiveTable4.center th {
  text-align: center;
}
.responsiveTable4.lower-table tr:first-child td {
  border-top: none;
}
@media (min-width: 768px) {
  .responsiveTable4.lower-table tr:first-child td {
    border-top: solid 1px #ccc;
  }
}
.responsiveTable4.green th {
  background: #33665f;
}
.responsiveTable4.green td {
  color: #000;
}
.responsiveTable4.blue th {
  background: #40556d;
}
.responsiveTable4.blue td {
  color: #000;
}
.responsiveTable4.black th {
  background: #464646;
}
.responsiveTable4 th {
  width: 40%;
  padding: 25px 10px;
  border-bottom: solid 1px #fff;
  line-height: 140%;
  display: table-cell;
  vertical-align: middle;
  color: #fff;
  border-right: solid 1px #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .responsiveTable4 th {
    width: 33%;
    padding: 25px 15px;
  }
}
.responsiveTable4 td {
  padding: 25px 10px;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  line-height: 140%;
  display: table-cell;
  background: #fff;
  width: 60%;
}
@media (min-width: 768px) {
  .responsiveTable4 td {
    width: 67%;
    padding: 25px 15px;
  }
}
.responsiveTable4.noneWidth th {
  width: auto !important;
}
.responsiveTable4.noneWidth td {
  width: auto !important;
}

/*-------------------------------------------------------------------------------------------*
 *
 * remains.html
 *  
 *-------------------------------------------------------------------------------------------*/
.itemDL {
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.itemDL .shadow {
  box-shadow: 0px 30px 30px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 30px 30px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 30px 30px 0px rgba(0, 0, 0, 0.15);
}
.itemDL > dt {
  background: #245e32;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  padding: 10px 15px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .itemDL > dt {
    height: 90px;
  }
}
.itemDL > dt img {
  margin-right: 1.6rem;
}
.itemDL > dd {
  background: #f8f5f1;
  padding: 20px 30px;
}
@media (min-width: 768px) {
  .itemDL > dd {
    padding: 40px 60px;
  }
}

.flowBox3 {
  display: flex;
  border-radius: 8px;
  aspect-ratio: initial;
  flex-direction: column;
  align-items: center;
  position: relative;
  justify-content: flex-start;
  height: 100%;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
}
.flowBox3 .step {
  font-size: 1.4rem;
  font-weight: 700;
  background: #279f44;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 6px 12px 6px 12px;
  margin-top: -20px;
}
.flowBox3 .tit {
  font-size: 2.4rem;
  color: #245e32;
}
.flowBox3 .txt {
  display: flex;
  padding: 0px 15px 15px;
}
@media (min-width: 992px) {
  .flowBox3 .txt {
    padding: 0px 30px 15px;
  }
}

.note {
  background: #f9d628;
  display: flex;
  border-radius: 16px;
  padding: 15px 30px;
  align-items: center;
  height: auto;
  width: 100%;
}
@media (min-width: 992px) {
  .note {
    padding: 15px 60px;
  }
}
.note img {
  margin-right: 3rem;
  width: 20%;
}
@media (min-width: 992px) {
  .note img {
    width: 15%;
  }
}
@media (min-width: 1200px) {
  .note img {
    width: 10%;
  }
}
.note span {
  display: flex;
  width: 90%;
  height: 100%;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  font-size: 3.6vw;
  font-weight: 800;
  line-height: 1.4;
}
@media (min-width: 576px) {
  .note span {
    font-size: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .note span {
    justify-content: center;
    text-align: center;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * garbage_house.html
 *  
 *-------------------------------------------------------------------------------------------*/
.textBox-lightGreen {
  background: #ECF8EF;
  border-radius: 30px;
  padding: 15px 25px;
}
@media (min-width: 992px) {
  .textBox-lightGreen {
    border-radius: 30px;
    padding: 30px 50px;
  }
}

.beforeImage__wrapper,
.afterImage__wrapper {
  height: auto;
}
@media (min-width: 992px) {
  .beforeImage__wrapper,
  .afterImage__wrapper {
    height: 400px;
  }
}

.beforeImage {
  position: relative;
  width: 100%;
  height: 200px;
}
@media (min-width: 450px) {
  .beforeImage {
    height: 30rem;
  }
}
@media (min-width: 992px) {
  .beforeImage {
    height: 400px;
  }
}
.beforeImage:before {
  content: "Before";
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 4vw;
  font-weight: 700;
  color: #333;
  position: absolute;
  left: 15px;
  top: 10px;
  -webkit-text-stroke: 4px #fff;
  paint-order: stroke;
  line-height: 1;
}
@media (min-width: 576px) {
  .beforeImage:before {
    font-size: 2.4rem;
    left: 30px;
    top: 25px;
  }
}
.beforeImage:after {
  content: "";
  display: block;
  width: 128px;
  aspect-ratio: 128/90;
  background: url(../images/icon_arrow-yellow.png) no-repeat center/contain;
  position: absolute;
  z-index: 1;
  right: 50%;
  bottom: 0;
  transform: translate(50%, 66%) rotate(90deg) scale(0.5);
}
@media (min-width: 576px) {
  .beforeImage:after {
    transform: translate(50%, 66%) rotate(90deg) scale(0.5);
  }
}
@media (min-width: 992px) {
  .beforeImage:after {
    right: 0;
    bottom: 50%;
    transform: translate(66%, 50%) scale(0.75);
  }
}
.beforeImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.afterImage {
  position: relative;
  width: 100%;
  height: 200px;
}
@media (min-width: 450px) {
  .afterImage {
    height: 30rem;
  }
}
@media (min-width: 992px) {
  .afterImage {
    height: 400px;
  }
}
.afterImage:before {
  content: "After";
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 6vw;
  font-weight: 700;
  color: #245E32;
  position: absolute;
  left: 15px;
  top: 10px;
  -webkit-text-stroke: 4px #fff;
  paint-order: stroke;
  line-height: 1;
}
@media (min-width: 576px) {
  .afterImage:before {
    font-size: 3.2rem;
    left: 30px;
    top: 25px;
  }
}
.afterImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*-------------------------------------------------------------------------------------------*
 *
 * emptyhouse.html
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * company.html
 *  
 *-------------------------------------------------------------------------------------------*/
.dotList li {
  padding-left: 2.4rem;
  position: relative;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.dotList li:last-child {
  margin-bottom: 0;
}
.dotList li:before {
  content: "";
  display: block;
  width: 1.4rem;
  aspect-ratio: 1;
  background: #f9d628;
  position: absolute;
  left: 0;
  top: 0.8rem;
  border-radius: 50%;
}
.dotList.Horizonal {
  display: flex;
  flex-wrap: wrap;
}
.dotList.Horizonal li {
  margin-right: 3rem;
  white-space: nowrap;
}

.dotList-small li {
  padding-left: 1.8rem;
  position: relative;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.dotList-small li:last-child {
  margin-bottom: 0;
}
.dotList-small li:before {
  content: "";
  display: block;
  width: 0.8rem;
  aspect-ratio: 1;
  background: #f9d628;
  position: absolute;
  left: 0;
  top: 0.6rem;
  border-radius: 50%;
}
.dotList-small.Horizonal {
  display: flex;
  flex-wrap: wrap;
}
.dotList-small.Horizonal li {
  margin-right: 3rem;
  white-space: nowrap;
}

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

@media (max-width: 768px) {
  .companyTable table,
  .companyTable thead,
  .companyTable tbody,
  .companyTable th,
  .companyTable td,
  .companyTable tr {
    display: block;
  }
  .companyTable th, .companyTable td {
    padding-left: 1em;
  }
  .companyTable th {
    border: none;
    text-align: start;
  }
  .companyTable td {
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * contact.html
 *  
 *-------------------------------------------------------------------------------------------*/
.telNumber {
  font-size: 8vw;
  color: #f9931e;
  font-weight: 800;
  font-family: "Inter", sans-serif;
}
@media (min-width: 576px) {
  .telNumber {
    font-size: 4.8rem;
  }
}
.telNumber a {
  text-decoration: none;
}

.contactBox {
  width: 100%;
}
.contactBox a {
  text-decoration: none;
}
.contactBox dt {
  background: #333;
  color: #fff;
  font-size: 18px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactBox dd {
  background: #fff;
  padding: 30px 0px;
  display: flex;
  flex-direction: column;
  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: 15px 15px 10px 0px;
  font-weight: bold;
  border-top: none;
  border-bottom: solid 1px #ccc;
  line-height: 140%;
  display: block;
}
.mailfoamTable th div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.mailfoamTable th .required {
  margin-left: 1.6rem;
}
.mailfoamTable td {
  width: 100%;
  padding: 15px 0px 30px 0px;
  border: none;
  line-height: 140%;
  display: block;
}
.mailfoamTable td .form-control {
  font-size: 1.4rem;
  padding: 0.75rem 1.25rem;
}

@media (min-width: 768px) {
  .mailfoamTable table {
    width: 100%;
    display: table;
  }
  .mailfoamTable th {
    width: 30%;
    font-weight: bold;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
    vertical-align: middle;
  }
  .mailfoamTable th div {
    justify-content: space-between;
  }
  .mailfoamTable td {
    padding: 18px 0px 18px 10px;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
  }
}
textarea {
  width: 100%;
}

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

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

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

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

.formBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 475px;
  min-height: 64px;
  background: #f9d628;
  color: #245e32;
  position: relative;
  font-size: 4.2vw;
  line-height: 1.2;
  padding: 8px 0px;
  border-radius: 32px;
  font-weight: 700;
}
@media (min-width: 576px) {
  .formBtn {
    font-size: 18px;
  }
}
.formBtn:hover {
  background: #245e32;
  color: #f9d628;
  text-decoration: none;
}
.formBtn:hover.back:before, .formBtn:hover.next:after {
  filter: invert(94%) sepia(18%) saturate(1913%) hue-rotate(339deg) brightness(96%) contrast(103%);
}
.formBtn.back:before {
  content: "";
  background: url(../images/icon_arrow-left.svg) no-repeat center/contain;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 1.2rem;
  filter: invert(29%) sepia(54%) saturate(559%) hue-rotate(82deg) brightness(86%) contrast(86%);
}
.formBtn.next:after {
  content: "";
  background: url(../images/icon_arrow-right.svg) no-repeat center/contain;
  display: inline-block;
  width: 30px;
  height: 30px;
  filter: invert(29%) sepia(54%) saturate(559%) hue-rotate(82deg) brightness(86%) contrast(86%);
  margin-right: 1.2rem;
}

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

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

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

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

/*-------------------------------------------------------------------------------------------*
 *
 * title
 *  
 *-------------------------------------------------------------------------------------------*/
#h2Title {
  height: 320px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 60px;
  position: relative;
}
@media (min-width: 992px) {
  #h2Title {
    height: 420px;
    margin-top: 80px;
  }
}
@media (min-width: 1200px) {
  #h2Title {
    height: 480px;
  }
}
@media (min-width: 1200px) {
  #h2Title {
    height: 520px;
    margin-top: 100px;
  }
}
#h2Title:before {
  content: "";
  display: block;
  width: 60px;
  aspect-ratio: 1;
  background: url(../images/mv_frame-left.png) no-repeat center/contain;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
}
@media (min-width: 576px) {
  #h2Title:before {
    width: 100px;
  }
}
@media (min-width: 992px) {
  #h2Title:before {
    width: 150px;
  }
}
#h2Title:after {
  content: "";
  display: block;
  width: 60px;
  aspect-ratio: 1;
  background: url(../images/mv_frame-right.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  right: 0px;
  z-index: 2;
}
@media (min-width: 576px) {
  #h2Title:after {
    width: 100px;
  }
}
@media (min-width: 992px) {
  #h2Title:after {
    width: 150px;
  }
}
#h2Title.p02 {
  background: url(../images/bg_h2title02.jpg) no-repeat center/auto 100%;
}
#h2Title.p03 {
  background: url(../images/bg_h2title03.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title.p04 {
  background: url(../images/bg_h2title04.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title.p05 {
  background: url(../images/bg_h2title05.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title.p06 {
  background: url(../images/bg_h2title06.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title.p07 {
  background: url(../images/bg_h2title07.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title.p08 {
  background: url(../images/bg_h2title08.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title h2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 1.2rem 1.5rem 1.5rem 1.5rem;
  color: #245e32;
  line-height: 1;
  border-radius: 15px;
  margin-left: 15px;
}
@media (min-width: 768px) {
  #h2Title h2 {
    padding: 2.6rem 3rem 3rem 3rem;
    margin-left: 30px;
    border-radius: 30px;
  }
}
@media (min-width: 992px) {
  #h2Title h2 {
    margin-left: 60px;
  }
}
#h2Title h2 .ja {
  font-size: 8.2vw;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  margin-right: 0.5em;
}
@media (min-width: 576px) {
  #h2Title h2 .ja {
    margin-right: 1em;
  }
}
@media (min-width: 992px) {
  #h2Title h2 .ja {
    font-size: 7.2rem;
  }
}
#h2Title h2 .ja:before {
  content: "";
  display: inline-block;
  width: 14px;
  aspect-ratio: 1;
  background: #f9d628;
  border-radius: 50%;
  margin-right: 1.4rem;
  margin-top: 0.4rem;
}
@media (min-width: 576px) {
  #h2Title h2 .ja:before {
    width: 18px;
    margin-right: 1.8rem;
  }
}
@media (min-width: 992px) {
  #h2Title h2 .ja:before {
    width: 24px;
    margin-right: 2.4rem;
  }
}
#h2Title h2 .en {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 4vw;
  text-align: left;
  line-height: 1;
  margin-top: 0.6rem;
}
@media (min-width: 576px) {
  #h2Title h2 .en {
    font-size: 2.2rem;
    margin-top: 1rem;
  }
}
@media (min-width: 992px) {
  #h2Title h2 .en {
    margin-top: 1.2rem;
    font-size: 2.4rem;
  }
}

.title {
  display: flex;
  flex-direction: column;
  position: relative;
  color: #245e32;
}
.title .en {
  font-size: 8vw;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .title .en {
    font-size: 6rem;
  }
}
@media (min-width: 1200px) {
  .title .en {
    font-size: 7.2rem;
  }
}
.title .ja {
  font-size: 4.8vw;
  font-weight: 800;
  position: relative;
  line-height: 1;
  padding-left: 3.6vw;
}
@media (min-width: 768px) {
  .title .ja {
    padding-left: 2.8rem;
    font-size: 2.4rem;
  }
}
.title .ja:before {
  position: absolute;
  left: 0;
  top: 1.4vw;
  content: "";
  display: inline-block;
  width: 9px;
  aspect-ratio: 1;
  background: #f9d628;
  vertical-align: middle;
  border-radius: 50%;
}
@media (min-width: 576px) {
  .title .ja:before {
    top: 0.7rem;
  }
}
@media (min-width: 992px) {
  .title .ja:before {
    width: 14px;
    top: 0.7rem;
  }
}
.title.center {
  align-items: center;
}
.title.center .en {
  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;
}

.readTitle {
  color: #245e32;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}
.readTitle .ja {
  font-size: 7vw;
  margin-bottom: 30px;
  position: relative;
}
@media (min-width: 576px) {
  .readTitle .ja {
    font-size: 5.2rem;
  }
}
@media (min-width: 768px) {
  .readTitle .ja {
    font-size: 6rem;
  }
}
@media (min-width: 992px) {
  .readTitle .ja {
    margin-bottom: 60px;
  }
}
@media (min-width: 1200px) {
  .readTitle .ja {
    font-size: 5.2rem;
  }
}
.readTitle .ja:after {
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translate(-50%, 0);
  content: "";
  display: inline-block;
  width: 60px;
  height: 3px;
  background: #f9d628;
  border-radius: 4px;
}
@media (min-width: 992px) {
  .readTitle .ja:after {
    width: 120px;
    height: 6px;
    bottom: -33px;
  }
}
.readTitle .en {
  font-size: 4vw;
  font-weight: 700;
  position: relative;
  line-height: 1;
  font-family: "Inter", sans-serif;
}
@media (min-width: 768px) {
  .readTitle .en {
    font-size: 2.4rem;
  }
}

.subTitle {
  width: 100px;
  height: 30px;
  background: #245e32;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  border-radius: 15px;
}

.subTitle2 {
  width: 100%;
  font-size: 5.6vw;
  font-weight: 700;
  color: #fff !important;
  text-align: center;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}
@media (min-width: 576px) {
  .subTitle2 {
    font-size: 3.6rem;
  }
}
@media (min-width: 992px) {
  .subTitle2 {
    height: 72px;
  }
}
.subTitle2.green {
  background: #245e32;
}
.subTitle2.blue {
  background: #244c5e;
}
.subTitle2 img {
  filter: brightness(0) invert(1);
  margin-right: 3vw;
  width: 10vw;
}
@media (min-width: 576px) {
  .subTitle2 img {
    width: 60px;
    margin-right: 2.4rem;
  }
}

.read {
  font-size: 3.8vw;
  font-weight: 700;
  color: #245e32;
}
@media (min-width: 768px) {
  .read {
    font-size: 2.8rem;
  }
}

.costDL {
  width: 100%;
  font-size: 2.4rem;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .costDL {
    flex-direction: row;
  }
}
.costDL dt {
  background: #245e32;
  color: #fff;
  padding: 15px;
  border-radius: 15px 15px 0px 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.2vw;
}
@media (min-width: 576px) {
  .costDL dt {
    font-size: 2.4rem;
  }
}
@media (min-width: 992px) {
  .costDL dt {
    justify-content: flex-start;
    width: 30%;
    padding: 30px 20px;
    border-radius: 30px 0px 0px 30px;
  }
}
.costDL dd {
  padding: 15px;
  display: flex;
  align-items: center;
  width: 100%;
  border: solid 2px #245e32;
  border-radius: 0px 0px 15px 15px;
  background: #f8f5f1;
}
@media (min-width: 992px) {
  .costDL dd {
    width: 70%;
    padding: 30px;
    border-radius: 0px 30px 30px 0px;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * table
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * button
 *  
 *-------------------------------------------------------------------------------------------*/
.detailBtn {
  display: inline-flex;
  background: #f9d628;
  color: #245e32;
  font-size: 3.6vw;
  font-weight: 700;
  max-width: 380px;
  width: 100%;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  border-radius: 45px;
  padding: 0px 25px 0px 30px;
  text-decoration: none;
  transition: all 600ms 0s ease;
}
@media (min-width: 576px) {
  .detailBtn {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .detailBtn {
    padding: 0px 38px 0px 45px;
    max-width: 480px;
    height: 90px;
  }
}
.detailBtn:after {
  content: "";
  width: 25px;
  height: 19px;
  background: url(../images/icon_arrow.png) no-repeat center/contain;
  filter: invert(35%) sepia(10%) saturate(3560%) hue-rotate(70deg) brightness(108%) contrast(80%);
}
.detailBtn:hover {
  color: #f9d628;
  background: #245e32;
}
.detailBtn:hover:after {
  filter: invert(95%) sepia(65%) saturate(5829%) hue-rotate(332deg) brightness(100%) contrast(96%);
}
.detailBtn.small {
  max-width: 180px;
  height: 45px;
  font-size: 1.4rem;
  padding: 0px 15px 0px 30px;
}

/*-------------------------------------------------------------------------------------------*
 *
 * Background
 *  
 *-------------------------------------------------------------------------------------------*/
.bg_area {
  padding: 120px 14px 110px;
  background: url(../images/bg_grayline-right2.png) no-repeat right top/50%, url(../images/bg_grayline-left2.png) no-repeat left bottom/50%;
}
@media (min-width: 992px) {
  .bg_area {
    padding: 120px 14px 120px;
    background: url(../images/bg_grayline-right2.png) no-repeat right top, url(../images/bg_grayline-left2.png) no-repeat left bottom;
  }
}
@media (min-width: 1400px) {
  .bg_area {
    padding: 120px 14px 220px;
  }
}

.bg_white {
  padding: 60px 14px;
  background: #fff;
}
@media (min-width: 992px) {
  .bg_white {
    padding: 120px 14px;
  }
}
.bg_white.line1 {
  background: url(../images/bg_grayline-right1.png) no-repeat top right/50%, url(../images/bg_grayline-left2.png) no-repeat bottom left/50%;
}
@media (min-width: 992px) {
  .bg_white.line1 {
    background: url(../images/bg_grayline-right1.png) no-repeat top right, url(../images/bg_grayline-left2.png) no-repeat bottom left;
  }
}
.bg_white.line2 {
  background: url(../images/bg_grayline-right2.png) no-repeat right top/50%, url(../images/bg_grayline-left2.png) no-repeat left bottom/50%;
}
@media (min-width: 992px) {
  .bg_white.line2 {
    background: url(../images/bg_grayline-right2.png) no-repeat right top, url(../images/bg_grayline-left2.png) no-repeat left bottom;
  }
}

.bg_lightGreen {
  padding: 60px 14px;
  background: #ecf8ef;
}
@media (min-width: 992px) {
  .bg_lightGreen {
    padding: 120px 14px;
  }
}
.bg_lightGreen.shake-hand {
  background: #ecf8ef url(../images/bg_shakehands.png) no-repeat right top 30px;
}
.bg_lightGreen.line1 {
  background-color: #ecf8ef;
  background-image: url(../images/bg_lightgreenline-left1.png), url(../images/bg_lightgreenline-right1.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right bottom;
  background-size: 50%, 50%;
}
@media (min-width: 992px) {
  .bg_lightGreen.line1 {
    background-color: #ecf8ef;
    background-image: url(../images/bg_lightgreenline-left1.png), url(../images/bg_lightgreenline-right1.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right bottom;
    background-size: auto, auto;
  }
}

.bg_beige {
  padding: 60px 14px;
  background: #f8f5f1;
}
@media (min-width: 992px) {
  .bg_beige {
    padding: 120px 14px;
  }
}
.bg_beige.line1 {
  background-color: #f8f5f1;
  background-image: url(../images/bg_grayline-left1.png), url(../images/bg_lightgreenline-right1.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right bottom;
  background-size: 50%, 50%;
}
@media (min-width: 992px) {
  .bg_beige.line1 {
    background-color: #f8f5f1;
    background-image: url(../images/bg_lightgreenline-left1.png), url(../images/bg_lightgreenline-right1.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right bottom;
    background-size: auto, auto;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * Component
 *  
 *-------------------------------------------------------------------------------------------*/
.paddingRight {
  padding-right: 0px;
}
@media (min-width: 1200px) {
  .paddingRight {
    padding-right: 8.3%;
  }
}

.paddingLeft {
  padding-left: 0px;
}
@media (min-width: 1200px) {
  .paddingLeft {
    padding-left: 8.3%;
  }
}

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

.radius30 {
  border-radius: 15px;
}
@media (min-width: 992px) {
  .radius30 {
    border-radius: 30px;
  }
}

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

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

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

.orange {
  color: #f9931e;
}

.green {
  color: #245e32;
}

.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-16 {
  font-size: 1.6rem;
}

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

.fs-20 {
  font-size: 2rem;
}

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

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

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

.fs-48 {
  font-size: 4.8rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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;
  }
  .mb160 {
    margin-bottom: 160px !important;
  }
  .mb180 {
    margin-bottom: 180px !important;
  }
  .mb200 {
    margin-bottom: 200px !important;
  }
  .mb220 {
    margin-bottom: 220px !important;
  }
  .mb240 {
    margin-bottom: 240px !important;
  }
}
.mb00 {
  margin-bottom: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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