@charset "UTF-8";
:root {
  --fsz: 0.9rem;
  --ls: 0;
  --lh: 1.5;
}
@media screen and (min-width: 375px) {
  :root {
    --fsz: 1rem;
  }
}
:root {
  --headerHeight: 50px;
}
@media screen and (min-width: 768px) {
  :root {
    --headerHeight: 65px;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --headerHeight: 88px;
  }
}
:root {
  --speed: 0.3s;
  --color1: transparent;
  --color2: transparent;
  --size: 0;
}

* {
  letter-spacing: var(--ls);
  line-height: var(--lh);
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #F8F4E6;
  color: #2A2A2A;
  font-size: var(--fsz);
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

main {
  margin-top: var(--headerHeight);
}

section {
  position: relative;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  color: currentColor;
  text-decoration: none;
  cursor: pointer;
  transition: var(--speed);
}
a:hover {
  outline-width: 0;
  text-decoration: none;
  opacity: 0.8;
}
a.underline {
  text-decoration: underline;
}
a.underline:hover {
  text-decoration: none;
}
a.disabled {
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
  object-fit: contain;
  vertical-align: bottom;
}

strong {
  font-weight: 700;
}

/* ============= common class ================ */
.inner {
  width: calc(100% - 40px);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1200px;
  }
}

.block {
  width: 100%;
  display: block;
}

.disp_none {
  display: none !important;
}
@media screen and (min-width: 576px) {
  .disp_xs {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .disp_tab, .disp_pc, .disp_notsp {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .disp_sp, .disp_pc {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .disp_sp, .disp_tab, .disp_notpc {
    display: none !important;
  }
}

.en {
  font-family: "Poppins", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.fit {
  overflow: hidden;
  position: relative;
}
.fit__item {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/*------------------------------------------------------
    header
-------------------------------------------------------*/
.header {
  width: 100%;
  height: var(--headerHeight);
  background: #F8F4E6;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
}
.header__inner {
  width: calc(100% - 28px);
  max-width: 1440px;
  height: 100%;
  padding: 2px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1200px) {
  .header__inner {
    padding: 0 7px;
  }
}
.header__logo_link {
  display: flex;
  align-items: center;
  grid-gap: 8px;
}
.header__logo_img {
  width: 67px;
  flex-shrink: 0;
}
.header__logo_txt {
  font-size: 10px;
  font-weight: 500;
  --lh: 1.3;
}
@media screen and (min-width: 768px) {
  .header__logo_img {
    width: 94px;
    margin-top: -9px;
  }
  .header__logo_txt {
    font-size: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .header__logo_link {
    grid-gap: 12px;
  }
  .header__logo_img {
    width: 94px;
    margin-top: -9px;
  }
  .header__logo_txt {
    font-size: 15px;
  }
}
.header__navWrap {
  width: 100%;
  height: calc(100vh - var(--headerHeight));
  background-color: #F8F4E6;
  position: fixed;
  top: var(--headerHeight);
  left: 0;
  transition: opacity var(--speed) ease;
  opacity: 0;
  pointer-events: none;
  z-index: -100;
}
.header__navWrap.visible {
  pointer-events: auto;
  opacity: 1;
  z-index: 1040;
}
.header__navWrap_inner {
  padding: 70px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 55px;
}
.header__navWrap_rightCol {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 20px;
}
.header__navWrap_tel {
  width: calc(100% - 10px);
  padding: 20px 20px 15px;
  background-color: #5F6527;
  border-radius: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header__navWrap_tel a {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 700;
  --lh: 1;
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.header__navWrap_tel a::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="22" viewBox="0 0 24 22" fill="none"><path d="M9.9761 12.8473C11.4472 14.2442 13.2273 15.3227 15.1912 16.0071L17.848 14.0281C17.9268 13.9773 18.0202 13.9501 18.1158 13.9501C18.2115 13.9501 18.3048 13.9773 18.3836 14.0281L23.3168 17.0032C23.5041 17.1086 23.6626 17.2533 23.7799 17.4259C23.8971 17.5985 23.9699 17.7943 23.9925 17.9977C24.015 18.2012 23.9867 18.4068 23.9098 18.5982C23.8329 18.7897 23.7095 18.9618 23.5493 19.101L21.2378 21.2383C20.9068 21.5445 20.4999 21.7692 20.0535 21.8923C19.6071 22.0155 19.1351 22.0333 18.6796 21.9442C14.1356 21.0657 9.94731 19.0083 6.59337 16.0071C3.31386 12.9761 1.04446 9.11935 0.0604563 4.90479C-0.0367507 4.485 -0.0164623 4.04883 0.119355 3.63854C0.255173 3.22824 0.501914 2.85775 0.835667 2.56295L3.23177 0.399227C3.38005 0.256597 3.56087 0.147215 3.76071 0.0792704C3.96055 0.011326 4.17421 -0.01342 4.38572 0.00688528C4.59722 0.0271906 4.80107 0.0920211 4.98201 0.196522C5.16295 0.301024 5.31629 0.442488 5.43055 0.610322L8.71463 5.16866C8.77127 5.24024 8.80185 5.32696 8.80185 5.41604C8.80185 5.50512 8.77127 5.59184 8.71463 5.66342L6.55108 8.09761C7.30204 9.89914 8.47201 11.5216 9.9761 12.8473Z" fill="%23fff"/></svg>') center/contain no-repeat;
  display: block;
  flex-shrink: 0;
}
.header__navWrap_sns {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
}
.header__navWrap_sns_icon {
  width: 28px;
  display: block;
}
.header__navWrap_list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
.header__navWrap_list .navBtn {
  width: 100%;
  padding: 8px 20px 8px 5px;
  background-color: var(--color1);
  border: 1px solid #DC6B00;
  border-radius: 40px;
  color: var(--color2);
  font-weight: 700;
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.header__navWrap_list .navBtn__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
}
.header__navWrap_list .navBtn__arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
  border-radius: 50%;
  color: transparent;
  flex-shrink: 0;
}
.header__navWrap_list .navBtn:hover {
  background-color: var(--color2);
  color: var(--color1);
  opacity: 1;
}
.header__navWrap_list .navBtn--white {
  --color1: #fff;
  --color2: #DC6B00;
}
.header__navWrap_list .navBtn--white .navBtn__icon {
  background: var(--color2) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42" fill="none"><path d="M32.2779 18.0646C32.2068 17.9884 32.1194 17.9222 32.0289 17.8726L21.6266 10.3364C21.4228 10.1875 21.1834 10.1113 20.9344 10.1113C20.6853 10.1113 20.4459 10.1908 20.2422 10.3364L9.83015 17.8759C9.53257 18.0447 9.33203 18.3657 9.33203 18.7397V20.4806C9.33203 21.1558 9.86896 21.7052 10.532 21.7052C10.7811 21.7052 11.0205 21.6258 11.2242 21.4802L12.1946 20.7752V31.4689C12.1946 31.7436 12.4113 31.9653 12.6798 31.9653H17.6287C17.8971 31.9653 18.1138 31.7436 18.1138 31.4689V27.5734H23.8002V31.4689C23.8002 31.7436 24.0169 31.9653 24.2854 31.9653H29.2342C29.5027 31.9653 29.7194 31.7436 29.7194 31.4689V20.8116L30.6607 21.4934C30.8645 21.6424 31.1038 21.7185 31.3529 21.7185C31.9965 21.7185 32.5238 21.2022 32.5497 20.5435C32.624 18.657 32.5949 18.4022 32.2747 18.0579L32.2779 18.0646ZM28.7491 20.4376V30.979H24.7705V27.0835C24.7705 26.8088 24.5538 26.5871 24.2854 26.5871H17.6287C17.3602 26.5871 17.1435 26.8088 17.1435 27.0835V30.979H13.165V20.4376C13.165 20.3284 13.1294 20.2291 13.0712 20.1464L20.9344 14.4504L28.8299 20.1695C28.7814 20.2457 28.7523 20.3383 28.7523 20.4376H28.7491ZM31.5825 20.5071C31.576 20.6395 31.4693 20.7289 31.3561 20.7289C31.3108 20.7289 31.2655 20.7156 31.2235 20.6859L21.067 13.3284C21.0282 13.2986 20.9797 13.2853 20.9344 13.2853C20.8891 13.2853 20.8406 13.2986 20.8018 13.3284L10.6614 20.6726C10.6194 20.7024 10.5741 20.7156 10.5288 20.7156C10.4091 20.7156 10.2992 20.6197 10.2992 20.484V18.753L20.7985 11.1473C20.8373 11.1175 20.8858 11.1042 20.9311 11.1042C20.9764 11.1042 21.0249 11.1175 21.0638 11.1473L31.5631 18.753L31.5696 18.7497C31.6407 18.7497 31.6052 19.8717 31.5793 20.5071H31.5825Z" fill="%23fff"/></svg>') center/contain no-repeat;
}
.header__navWrap_list .navBtn--white .navBtn__arrow {
  background: var(--color2) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%23fff"/></svg>') center/contain no-repeat;
}
.header__navWrap_list .navBtn--white:hover .navBtn__icon {
  background: var(--color1) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42" fill="none"><path d="M32.2779 18.0646C32.2068 17.9884 32.1194 17.9222 32.0289 17.8726L21.6266 10.3364C21.4228 10.1875 21.1834 10.1113 20.9344 10.1113C20.6853 10.1113 20.4459 10.1908 20.2422 10.3364L9.83015 17.8759C9.53257 18.0447 9.33203 18.3657 9.33203 18.7397V20.4806C9.33203 21.1558 9.86896 21.7052 10.532 21.7052C10.7811 21.7052 11.0205 21.6258 11.2242 21.4802L12.1946 20.7752V31.4689C12.1946 31.7436 12.4113 31.9653 12.6798 31.9653H17.6287C17.8971 31.9653 18.1138 31.7436 18.1138 31.4689V27.5734H23.8002V31.4689C23.8002 31.7436 24.0169 31.9653 24.2854 31.9653H29.2342C29.5027 31.9653 29.7194 31.7436 29.7194 31.4689V20.8116L30.6607 21.4934C30.8645 21.6424 31.1038 21.7185 31.3529 21.7185C31.9965 21.7185 32.5238 21.2022 32.5497 20.5435C32.624 18.657 32.5949 18.4022 32.2747 18.0579L32.2779 18.0646ZM28.7491 20.4376V30.979H24.7705V27.0835C24.7705 26.8088 24.5538 26.5871 24.2854 26.5871H17.6287C17.3602 26.5871 17.1435 26.8088 17.1435 27.0835V30.979H13.165V20.4376C13.165 20.3284 13.1294 20.2291 13.0712 20.1464L20.9344 14.4504L28.8299 20.1695C28.7814 20.2457 28.7523 20.3383 28.7523 20.4376H28.7491ZM31.5825 20.5071C31.576 20.6395 31.4693 20.7289 31.3561 20.7289C31.3108 20.7289 31.2655 20.7156 31.2235 20.6859L21.067 13.3284C21.0282 13.2986 20.9797 13.2853 20.9344 13.2853C20.8891 13.2853 20.8406 13.2986 20.8018 13.3284L10.6614 20.6726C10.6194 20.7024 10.5741 20.7156 10.5288 20.7156C10.4091 20.7156 10.2992 20.6197 10.2992 20.484V18.753L20.7985 11.1473C20.8373 11.1175 20.8858 11.1042 20.9311 11.1042C20.9764 11.1042 21.0249 11.1175 21.0638 11.1473L31.5631 18.753L31.5696 18.7497C31.6407 18.7497 31.6052 19.8717 31.5793 20.5071H31.5825Z" fill="%23DC6B00"/></svg>') center/contain no-repeat;
}
.header__navWrap_list .navBtn--white:hover .navBtn__arrow {
  background: var(--color1) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%23DC6B00"/></svg>') center/contain no-repeat;
}
.header__navWrap_list .navBtn--orange {
  --color1: #DC6B00;
  --color2: #fff;
}
.header__navWrap_list .navBtn--orange .navBtn__icon {
  background: var(--color2) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42" fill="none"><path d="M14.251 15.667H12.501V28.5H28.834V15.667H27.084V14.5H28.9805C29.1167 14.5023 29.251 14.5317 29.376 14.5859C29.501 14.6402 29.6142 14.7184 29.709 14.8164C29.8038 14.9145 29.8787 15.0304 29.9287 15.1572C29.9787 15.284 30.0033 15.4194 30.001 15.5557V28.6104C30.0033 28.7467 29.9788 28.8829 29.9287 29.0098C29.8787 29.1366 29.8037 29.2526 29.709 29.3506C29.6143 29.4485 29.5009 29.5268 29.376 29.5811C29.251 29.6353 29.1166 29.6647 28.9805 29.667H12.3555C12.2191 29.6647 12.0841 29.6354 11.959 29.5811C11.834 29.5268 11.7207 29.4485 11.626 29.3506C11.5312 29.2526 11.4563 29.1366 11.4062 29.0098C11.3562 28.8829 11.3317 28.7467 11.334 28.6104V15.5557C11.3317 15.4194 11.3563 15.284 11.4062 15.1572C11.4563 15.0304 11.5312 14.9145 11.626 14.8164C11.7207 14.7184 11.834 14.6402 11.959 14.5859C12.0841 14.5316 12.2191 14.5023 12.3555 14.5H14.251V15.667ZM16.001 26.167H14.834V25H16.001V26.167ZM19.501 26.167H18.334V25H19.501V26.167ZM23.001 26.167H21.834V25H23.001V26.167ZM26.501 26.167H25.334V25H26.501V26.167ZM16.001 23.251H14.834V22.084H16.001V23.251ZM19.501 23.251H18.334V22.084H19.501V23.251ZM23.001 23.251H21.834V22.084H23.001V23.251ZM26.501 23.251H25.334V22.084H26.501V23.251ZM16.001 20.333H14.834V19.166H16.001V20.333ZM19.501 20.333H18.334V19.166H19.501V20.333ZM23.001 20.333H21.834V19.166H23.001V20.333ZM26.501 20.333H25.334V19.166H26.501V20.333ZM16.001 12.166C16.1557 12.166 16.3047 12.2275 16.4141 12.3369C16.5233 12.4462 16.5849 12.5945 16.585 12.749V16.249C16.585 16.4037 16.5235 16.5527 16.4141 16.6621C16.3047 16.7715 16.1557 16.833 16.001 16.833C15.8465 16.8329 15.6981 16.7713 15.5889 16.6621C15.4795 16.5527 15.418 16.4037 15.418 16.249V12.749C15.4181 12.5945 15.4796 12.4462 15.5889 12.3369C15.6982 12.2276 15.8464 12.1661 16.001 12.166ZM25.333 12.166C25.4877 12.166 25.6367 12.2275 25.7461 12.3369C25.8554 12.4462 25.9169 12.5945 25.917 12.749V16.249C25.917 16.4037 25.8555 16.5527 25.7461 16.6621C25.6367 16.7715 25.4877 16.833 25.333 16.833C25.1785 16.8329 25.0302 16.7713 24.9209 16.6621C24.8115 16.5527 24.75 16.4037 24.75 16.249V12.749C24.7501 12.5945 24.8116 12.4462 24.9209 12.3369C25.0302 12.2276 25.1785 12.1661 25.333 12.166ZM23.583 15.667H17.75V14.5H23.583V15.667Z" fill="%23DC6B00"/></svg>') center/contain no-repeat;
}
.header__navWrap_list .navBtn--orange .navBtn__arrow {
  background: var(--color2) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%23DC6B00"/></svg>') center/contain no-repeat;
}
.header__navWrap_list .navBtn--orange:hover .navBtn__icon {
  background: var(--color1) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42" fill="none"><path d="M14.251 15.667H12.501V28.5H28.834V15.667H27.084V14.5H28.9805C29.1167 14.5023 29.251 14.5317 29.376 14.5859C29.501 14.6402 29.6142 14.7184 29.709 14.8164C29.8038 14.9145 29.8787 15.0304 29.9287 15.1572C29.9787 15.284 30.0033 15.4194 30.001 15.5557V28.6104C30.0033 28.7467 29.9788 28.8829 29.9287 29.0098C29.8787 29.1366 29.8037 29.2526 29.709 29.3506C29.6143 29.4485 29.5009 29.5268 29.376 29.5811C29.251 29.6353 29.1166 29.6647 28.9805 29.667H12.3555C12.2191 29.6647 12.0841 29.6354 11.959 29.5811C11.834 29.5268 11.7207 29.4485 11.626 29.3506C11.5312 29.2526 11.4563 29.1366 11.4062 29.0098C11.3562 28.8829 11.3317 28.7467 11.334 28.6104V15.5557C11.3317 15.4194 11.3563 15.284 11.4062 15.1572C11.4563 15.0304 11.5312 14.9145 11.626 14.8164C11.7207 14.7184 11.834 14.6402 11.959 14.5859C12.0841 14.5316 12.2191 14.5023 12.3555 14.5H14.251V15.667ZM16.001 26.167H14.834V25H16.001V26.167ZM19.501 26.167H18.334V25H19.501V26.167ZM23.001 26.167H21.834V25H23.001V26.167ZM26.501 26.167H25.334V25H26.501V26.167ZM16.001 23.251H14.834V22.084H16.001V23.251ZM19.501 23.251H18.334V22.084H19.501V23.251ZM23.001 23.251H21.834V22.084H23.001V23.251ZM26.501 23.251H25.334V22.084H26.501V23.251ZM16.001 20.333H14.834V19.166H16.001V20.333ZM19.501 20.333H18.334V19.166H19.501V20.333ZM23.001 20.333H21.834V19.166H23.001V20.333ZM26.501 20.333H25.334V19.166H26.501V20.333ZM16.001 12.166C16.1557 12.166 16.3047 12.2275 16.4141 12.3369C16.5233 12.4462 16.5849 12.5945 16.585 12.749V16.249C16.585 16.4037 16.5235 16.5527 16.4141 16.6621C16.3047 16.7715 16.1557 16.833 16.001 16.833C15.8465 16.8329 15.6981 16.7713 15.5889 16.6621C15.4795 16.5527 15.418 16.4037 15.418 16.249V12.749C15.4181 12.5945 15.4796 12.4462 15.5889 12.3369C15.6982 12.2276 15.8464 12.1661 16.001 12.166ZM25.333 12.166C25.4877 12.166 25.6367 12.2275 25.7461 12.3369C25.8554 12.4462 25.9169 12.5945 25.917 12.749V16.249C25.917 16.4037 25.8555 16.5527 25.7461 16.6621C25.6367 16.7715 25.4877 16.833 25.333 16.833C25.1785 16.8329 25.0302 16.7713 24.9209 16.6621C24.8115 16.5527 24.75 16.4037 24.75 16.249V12.749C24.7501 12.5945 24.8116 12.4462 24.9209 12.3369C25.0302 12.2276 25.1785 12.1661 25.333 12.166ZM23.583 15.667H17.75V14.5H23.583V15.667Z" fill="%23fff"/></svg>') center/contain no-repeat;
}
.header__navWrap_list .navBtn--orange:hover .navBtn__arrow {
  background: var(--color1) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%23fff"/></svg>') center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .header__navWrap_inner {
    max-width: 1072px;
    height: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    grid-gap: 40px;
  }
  .header__navWrap_rightCol {
    width: auto;
  }
  .header__navWrap_tel {
    font-size: 14px;
    grid-gap: 5px;
  }
  .header__navWrap_tel a {
    margin-bottom: 8px;
    font-size: 36px;
  }
  .header__navWrap_tel a::before {
    width: 29px;
    height: 29px;
  }
}
@media screen and (min-width: 1024px) {
  .header__navWrap_inner {
    justify-content: space-between;
  }
  .header__navWrap_rightCol {
    width: 50%;
    max-width: 472px;
  }
  .header__navWrap_list .navBtn {
    grid-gap: 16px;
  }
}
.header__gnav {
  display: grid;
  grid-gap: 20px;
}
.header__gnav a {
  padding-left: 30px;
  font-weight: 500;
  position: relative;
}
.header__gnav a::before {
  content: "";
  width: 10px;
  height: 20px;
  background: #DC6B00;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) skewX(-20deg);
}
@media screen and (min-width: 768px) {
  .header__gnav {
    grid-gap: 28px;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1024px) {
  .header__gnav {
    width: 50%;
    max-width: 420px;
    padding-left: 15px;
  }
  .header__gnav a {
    padding-left: 40px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .header__gnav {
    margin-left: 80px;
  }
}
.header__telTxt {
  margin-left: auto;
  margin-right: 20px;
  font-size: 12px;
  font-weight: 500;
}
.header__telTxt p {
  display: flex;
  align-items: flex-end;
  grid-gap: 10px;
}
.header__telTxt a {
  font-size: 30px;
  font-weight: 700;
  --lh: 1;
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.header__telTxt a::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="22" viewBox="0 0 24 22" fill="none"><path d="M9.9761 12.8473C11.4472 14.2442 13.2273 15.3227 15.1912 16.0071L17.848 14.0281C17.9268 13.9773 18.0202 13.9501 18.1158 13.9501C18.2115 13.9501 18.3048 13.9773 18.3836 14.0281L23.3168 17.0032C23.5041 17.1086 23.6626 17.2533 23.7799 17.4259C23.8971 17.5985 23.9699 17.7943 23.9925 17.9977C24.015 18.2012 23.9867 18.4068 23.9098 18.5982C23.8329 18.7897 23.7095 18.9618 23.5493 19.101L21.2378 21.2383C20.9068 21.5445 20.4999 21.7692 20.0535 21.8923C19.6071 22.0155 19.1351 22.0333 18.6796 21.9442C14.1356 21.0657 9.94731 19.0083 6.59337 16.0071C3.31386 12.9761 1.04446 9.11935 0.0604563 4.90479C-0.0367507 4.485 -0.0164623 4.04883 0.119355 3.63854C0.255173 3.22824 0.501914 2.85775 0.835667 2.56295L3.23177 0.399227C3.38005 0.256597 3.56087 0.147215 3.76071 0.0792704C3.96055 0.011326 4.17421 -0.01342 4.38572 0.00688528C4.59722 0.0271906 4.80107 0.0920211 4.98201 0.196522C5.16295 0.301024 5.31629 0.442488 5.43055 0.610322L8.71463 5.16866C8.77127 5.24024 8.80185 5.32696 8.80185 5.41604C8.80185 5.50512 8.77127 5.59184 8.71463 5.66342L6.55108 8.09761C7.30204 9.89914 8.47201 11.5216 9.9761 12.8473Z" fill="%235F6527"/></svg>') center/contain no-repeat;
  display: block;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .header__telTxt {
    margin-right: 65px;
  }
  .header__telTxt p {
    grid-gap: 15px;
  }
}
.header__toggler {
  width: 40px;
  height: 40px;
  background-color: #5F6527;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 3px;
  flex-shrink: 0;
  position: relative;
  transform: translateX(8px);
}
.header__toggler span {
  width: 16px;
  height: 1.5px;
  background-color: #fff;
  display: block;
  transition: var(--speed);
}
.header__toggler.open span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}
.header__toggler.open span + span {
  transform: rotate(-45deg);
}
.header__toggler.open span + span + span {
  transform: scale(0);
}
@media screen and (min-width: 768px) {
  .header__toggler {
    width: 54px;
    height: 54px;
    transform: translateX(0);
  }
  .header__toggler span {
    width: 18px;
    height: 2px;
  }
}

/*------------------------------------------------------
    footer
-------------------------------------------------------*/
.footer {
  padding: 70px 0 55px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 105px 0 85px;
  }
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  grid-gap: 30px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    justify-content: space-between;
    grid-gap: 30px 0;
  }
}
.footer__infoBlk {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 16px;
}
.footer__infoBlk_logo {
  width: 135px;
}
.footer__infoBlk_name {
  width: 272px;
}
.footer__infoBlk_address {
  font-size: 14px;
  font-weight: 500;
  --lh: 1.8;
}
.footer__infoBlk_qual {
  font-size: 10px;
  --lh: 1.4;
}
@media screen and (min-width: 768px) {
  .footer__infoBlk {
    width: auto;
    grid-gap: 10px;
  }
  .footer__infoBlk_address {
    margin-bottom: 6px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__infoBlk_logo {
    width: 232px;
    margin-bottom: 37px;
  }
  .footer__infoBlk_name {
    width: 369px;
  }
}
.footer__navBlk {
  width: 100%;
  padding-top: 10px;
}
.footer__navBlk_list {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px 30px;
}
.footer__navBlk_list .sub-menu {
  margin-top: 10px;
  font-size: 15px;
  display: grid;
  grid-gap: 10px;
}
.footer__navBlk_list .sub-menu li {
  padding-left: 15px;
  position: relative;
}
.footer__navBlk_list .sub-menu li::before {
  content: "";
  width: 10px;
  height: 2px;
  background-color: #D5CECE;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.footer__navBlk_tel {
  width: 100%;
  padding: 16px 20px 18px;
  background-color: #5F6527;
  border-radius: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__navBlk_tel a {
  margin-bottom: 3px;
  font-size: 25px;
  font-weight: 700;
  --lh: 1;
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.footer__navBlk_tel a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="22" viewBox="0 0 24 22" fill="none"><path d="M9.9761 12.8473C11.4472 14.2442 13.2273 15.3227 15.1912 16.0071L17.848 14.0281C17.9268 13.9773 18.0202 13.9501 18.1158 13.9501C18.2115 13.9501 18.3048 13.9773 18.3836 14.0281L23.3168 17.0032C23.5041 17.1086 23.6626 17.2533 23.7799 17.4259C23.8971 17.5985 23.9699 17.7943 23.9925 17.9977C24.015 18.2012 23.9867 18.4068 23.9098 18.5982C23.8329 18.7897 23.7095 18.9618 23.5493 19.101L21.2378 21.2383C20.9068 21.5445 20.4999 21.7692 20.0535 21.8923C19.6071 22.0155 19.1351 22.0333 18.6796 21.9442C14.1356 21.0657 9.94731 19.0083 6.59337 16.0071C3.31386 12.9761 1.04446 9.11935 0.0604563 4.90479C-0.0367507 4.485 -0.0164623 4.04883 0.119355 3.63854C0.255173 3.22824 0.501914 2.85775 0.835667 2.56295L3.23177 0.399227C3.38005 0.256597 3.56087 0.147215 3.76071 0.0792704C3.96055 0.011326 4.17421 -0.01342 4.38572 0.00688528C4.59722 0.0271906 4.80107 0.0920211 4.98201 0.196522C5.16295 0.301024 5.31629 0.442488 5.43055 0.610322L8.71463 5.16866C8.77127 5.24024 8.80185 5.32696 8.80185 5.41604C8.80185 5.50512 8.77127 5.59184 8.71463 5.66342L6.55108 8.09761C7.30204 9.89914 8.47201 11.5216 9.9761 12.8473Z" fill="%23fff"/></svg>') center/contain no-repeat;
  display: block;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .footer__navBlk_list li {
    grid-column: 1;
  }
  .footer__navBlk_list li.contents {
    grid-column: 2;
    grid-row: 1/span 4;
  }
}
@media screen and (min-width: 768px) {
  .footer__navBlk {
    width: auto;
    padding-top: 55px;
  }
  .footer__navBlk_list {
    margin-bottom: 55px;
  }
  .footer__navBlk_tel {
    padding: 20px 20px 18px;
  }
  .footer__navBlk_tel a {
    margin-bottom: 10px;
    font-size: 30px;
  }
  .footer__navBlk_tel a::before {
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__navBlk_list {
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    grid-gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__navBlk_list {
    grid-gap: 50px;
  }
}
.footer__btmBlk {
  width: 100%;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 20px;
  position: relative;
}
.footer__btmBlk_sns {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
}
.footer__btmBlk_sns_icon {
  width: 28px;
  display: block;
}
.footer__btmBlk_topBtn {
  width: 50px;
  height: 50px;
  background: #2A2A2A url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%23fff"/></svg>') center/40px no-repeat;
  border: 1px solid #2A2A2A;
  border-radius: 50%;
  color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(-90deg);
}
.footer__btmBlk_topBtn:hover {
  background: #fff url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%232A2A2A"/></svg>') center/40px no-repeat;
  opacity: 1;
}
.footer__btmBlk_copyright {
  font-size: 10px;
  font-weight: 500;
  --lh: 1.8;
}
@media screen and (min-width: 768px) {
  .footer__btmBlk {
    padding: 10px 0;
    flex-direction: row;
    justify-content: flex-end;
    grid-gap: 40px;
  }
  .footer__btmBlk_topBtn {
    width: 60px;
    height: 60px;
    background: #2A2A2A url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%23fff"/></svg>') center/40px no-repeat;
    position: relative;
  }
  .footer__btmBlk_copyright {
    margin-right: auto;
    font-size: 14px;
    align-self: flex-end;
    order: -1;
  }
}
.footer__cta {
  width: 100%;
  height: 50px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1050;
}
.footer__cta_list {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.footer__cta_list .navBtn {
  width: 100%;
  height: 100%;
  padding: 8px 13px 8px 8px;
  background-color: var(--color1);
  border-top: 1px solid #DC6B00;
  border-bottom: 1px solid #DC6B00;
  color: var(--color2);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 14px;
}
.footer__cta_list .navBtn__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer__cta_list .navBtn__txt {
  width: 100%;
}
.footer__cta_list .navBtn__arrow {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  color: transparent;
  flex-shrink: 0;
}
.footer__cta_list .navBtn:hover {
  background-color: var(--color2);
  color: var(--color1);
  opacity: 1;
}
.footer__cta_list .navBtn--white {
  --color1: #fff;
  --color2: #DC6B00;
}
.footer__cta_list .navBtn--white .navBtn__icon {
  background: var(--color2) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42" fill="none"><path d="M32.2779 18.0646C32.2068 17.9884 32.1194 17.9222 32.0289 17.8726L21.6266 10.3364C21.4228 10.1875 21.1834 10.1113 20.9344 10.1113C20.6853 10.1113 20.4459 10.1908 20.2422 10.3364L9.83015 17.8759C9.53257 18.0447 9.33203 18.3657 9.33203 18.7397V20.4806C9.33203 21.1558 9.86896 21.7052 10.532 21.7052C10.7811 21.7052 11.0205 21.6258 11.2242 21.4802L12.1946 20.7752V31.4689C12.1946 31.7436 12.4113 31.9653 12.6798 31.9653H17.6287C17.8971 31.9653 18.1138 31.7436 18.1138 31.4689V27.5734H23.8002V31.4689C23.8002 31.7436 24.0169 31.9653 24.2854 31.9653H29.2342C29.5027 31.9653 29.7194 31.7436 29.7194 31.4689V20.8116L30.6607 21.4934C30.8645 21.6424 31.1038 21.7185 31.3529 21.7185C31.9965 21.7185 32.5238 21.2022 32.5497 20.5435C32.624 18.657 32.5949 18.4022 32.2747 18.0579L32.2779 18.0646ZM28.7491 20.4376V30.979H24.7705V27.0835C24.7705 26.8088 24.5538 26.5871 24.2854 26.5871H17.6287C17.3602 26.5871 17.1435 26.8088 17.1435 27.0835V30.979H13.165V20.4376C13.165 20.3284 13.1294 20.2291 13.0712 20.1464L20.9344 14.4504L28.8299 20.1695C28.7814 20.2457 28.7523 20.3383 28.7523 20.4376H28.7491ZM31.5825 20.5071C31.576 20.6395 31.4693 20.7289 31.3561 20.7289C31.3108 20.7289 31.2655 20.7156 31.2235 20.6859L21.067 13.3284C21.0282 13.2986 20.9797 13.2853 20.9344 13.2853C20.8891 13.2853 20.8406 13.2986 20.8018 13.3284L10.6614 20.6726C10.6194 20.7024 10.5741 20.7156 10.5288 20.7156C10.4091 20.7156 10.2992 20.6197 10.2992 20.484V18.753L20.7985 11.1473C20.8373 11.1175 20.8858 11.1042 20.9311 11.1042C20.9764 11.1042 21.0249 11.1175 21.0638 11.1473L31.5631 18.753L31.5696 18.7497C31.6407 18.7497 31.6052 19.8717 31.5793 20.5071H31.5825Z" fill="%23fff"/></svg>') center/contain no-repeat;
}
.footer__cta_list .navBtn--white .navBtn__arrow {
  background: var(--color2) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%23fff"/></svg>') center/contain no-repeat;
}
.footer__cta_list .navBtn--white:hover .navBtn__icon {
  background: var(--color1) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42" fill="none"><path d="M32.2779 18.0646C32.2068 17.9884 32.1194 17.9222 32.0289 17.8726L21.6266 10.3364C21.4228 10.1875 21.1834 10.1113 20.9344 10.1113C20.6853 10.1113 20.4459 10.1908 20.2422 10.3364L9.83015 17.8759C9.53257 18.0447 9.33203 18.3657 9.33203 18.7397V20.4806C9.33203 21.1558 9.86896 21.7052 10.532 21.7052C10.7811 21.7052 11.0205 21.6258 11.2242 21.4802L12.1946 20.7752V31.4689C12.1946 31.7436 12.4113 31.9653 12.6798 31.9653H17.6287C17.8971 31.9653 18.1138 31.7436 18.1138 31.4689V27.5734H23.8002V31.4689C23.8002 31.7436 24.0169 31.9653 24.2854 31.9653H29.2342C29.5027 31.9653 29.7194 31.7436 29.7194 31.4689V20.8116L30.6607 21.4934C30.8645 21.6424 31.1038 21.7185 31.3529 21.7185C31.9965 21.7185 32.5238 21.2022 32.5497 20.5435C32.624 18.657 32.5949 18.4022 32.2747 18.0579L32.2779 18.0646ZM28.7491 20.4376V30.979H24.7705V27.0835C24.7705 26.8088 24.5538 26.5871 24.2854 26.5871H17.6287C17.3602 26.5871 17.1435 26.8088 17.1435 27.0835V30.979H13.165V20.4376C13.165 20.3284 13.1294 20.2291 13.0712 20.1464L20.9344 14.4504L28.8299 20.1695C28.7814 20.2457 28.7523 20.3383 28.7523 20.4376H28.7491ZM31.5825 20.5071C31.576 20.6395 31.4693 20.7289 31.3561 20.7289C31.3108 20.7289 31.2655 20.7156 31.2235 20.6859L21.067 13.3284C21.0282 13.2986 20.9797 13.2853 20.9344 13.2853C20.8891 13.2853 20.8406 13.2986 20.8018 13.3284L10.6614 20.6726C10.6194 20.7024 10.5741 20.7156 10.5288 20.7156C10.4091 20.7156 10.2992 20.6197 10.2992 20.484V18.753L20.7985 11.1473C20.8373 11.1175 20.8858 11.1042 20.9311 11.1042C20.9764 11.1042 21.0249 11.1175 21.0638 11.1473L31.5631 18.753L31.5696 18.7497C31.6407 18.7497 31.6052 19.8717 31.5793 20.5071H31.5825Z" fill="%23DC6B00"/></svg>') center/contain no-repeat;
}
.footer__cta_list .navBtn--white:hover .navBtn__arrow {
  background: var(--color1) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%23DC6B00"/></svg>') center/contain no-repeat;
}
.footer__cta_list .navBtn--orange {
  --color1: #DC6B00;
  --color2: #fff;
}
.footer__cta_list .navBtn--orange .navBtn__icon {
  background: var(--color2) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42" fill="none"><path d="M14.251 15.667H12.501V28.5H28.834V15.667H27.084V14.5H28.9805C29.1167 14.5023 29.251 14.5317 29.376 14.5859C29.501 14.6402 29.6142 14.7184 29.709 14.8164C29.8038 14.9145 29.8787 15.0304 29.9287 15.1572C29.9787 15.284 30.0033 15.4194 30.001 15.5557V28.6104C30.0033 28.7467 29.9788 28.8829 29.9287 29.0098C29.8787 29.1366 29.8037 29.2526 29.709 29.3506C29.6143 29.4485 29.5009 29.5268 29.376 29.5811C29.251 29.6353 29.1166 29.6647 28.9805 29.667H12.3555C12.2191 29.6647 12.0841 29.6354 11.959 29.5811C11.834 29.5268 11.7207 29.4485 11.626 29.3506C11.5312 29.2526 11.4563 29.1366 11.4062 29.0098C11.3562 28.8829 11.3317 28.7467 11.334 28.6104V15.5557C11.3317 15.4194 11.3563 15.284 11.4062 15.1572C11.4563 15.0304 11.5312 14.9145 11.626 14.8164C11.7207 14.7184 11.834 14.6402 11.959 14.5859C12.0841 14.5316 12.2191 14.5023 12.3555 14.5H14.251V15.667ZM16.001 26.167H14.834V25H16.001V26.167ZM19.501 26.167H18.334V25H19.501V26.167ZM23.001 26.167H21.834V25H23.001V26.167ZM26.501 26.167H25.334V25H26.501V26.167ZM16.001 23.251H14.834V22.084H16.001V23.251ZM19.501 23.251H18.334V22.084H19.501V23.251ZM23.001 23.251H21.834V22.084H23.001V23.251ZM26.501 23.251H25.334V22.084H26.501V23.251ZM16.001 20.333H14.834V19.166H16.001V20.333ZM19.501 20.333H18.334V19.166H19.501V20.333ZM23.001 20.333H21.834V19.166H23.001V20.333ZM26.501 20.333H25.334V19.166H26.501V20.333ZM16.001 12.166C16.1557 12.166 16.3047 12.2275 16.4141 12.3369C16.5233 12.4462 16.5849 12.5945 16.585 12.749V16.249C16.585 16.4037 16.5235 16.5527 16.4141 16.6621C16.3047 16.7715 16.1557 16.833 16.001 16.833C15.8465 16.8329 15.6981 16.7713 15.5889 16.6621C15.4795 16.5527 15.418 16.4037 15.418 16.249V12.749C15.4181 12.5945 15.4796 12.4462 15.5889 12.3369C15.6982 12.2276 15.8464 12.1661 16.001 12.166ZM25.333 12.166C25.4877 12.166 25.6367 12.2275 25.7461 12.3369C25.8554 12.4462 25.9169 12.5945 25.917 12.749V16.249C25.917 16.4037 25.8555 16.5527 25.7461 16.6621C25.6367 16.7715 25.4877 16.833 25.333 16.833C25.1785 16.8329 25.0302 16.7713 24.9209 16.6621C24.8115 16.5527 24.75 16.4037 24.75 16.249V12.749C24.7501 12.5945 24.8116 12.4462 24.9209 12.3369C25.0302 12.2276 25.1785 12.1661 25.333 12.166ZM23.583 15.667H17.75V14.5H23.583V15.667Z" fill="%23DC6B00"/></svg>') center/contain no-repeat;
}
.footer__cta_list .navBtn--orange .navBtn__icon--book {
  background: var(--color2) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42" fill="none"><path d="M15.0215 27.0218C15.9532 27.0218 16.8596 27.1275 17.7409 27.3388C18.6221 27.5501 19.4969 27.8815 20.3652 28.333V17.2731C19.5749 16.7583 18.7196 16.3721 17.7994 16.1147C16.8791 15.8572 15.9532 15.7285 15.0215 15.7285C14.3465 15.7285 13.7158 15.7815 13.1295 15.8874C12.5432 15.9935 11.9407 16.167 11.3219 16.4077C11.2355 16.4366 11.1742 16.4781 11.138 16.5323C11.102 16.5863 11.084 16.6458 11.084 16.7106V27.3506C11.084 27.4517 11.1201 27.5256 11.1923 27.5725C11.2643 27.6194 11.3436 27.6247 11.4302 27.5885C11.9638 27.4069 12.527 27.267 13.1197 27.1689C13.7125 27.0709 14.3465 27.0218 15.0215 27.0218ZM22.0527 28.333C22.921 27.8815 23.7958 27.5501 24.6771 27.3388C25.5583 27.1275 26.4648 27.0218 27.3965 27.0218C28.0715 27.0218 28.7054 27.0709 29.2983 27.1689C29.891 27.267 30.4541 27.4069 30.9878 27.5885C31.0744 27.6247 31.1537 27.6194 31.2257 27.5725C31.2979 27.5256 31.334 27.4517 31.334 27.3506V16.7106C31.334 16.6458 31.316 16.5881 31.28 16.5377C31.2438 16.4872 31.1825 16.4439 31.096 16.4077C30.4773 16.167 29.8748 15.9935 29.2885 15.8874C28.7021 15.7815 28.0715 15.7285 27.3965 15.7285C26.4648 15.7285 25.5388 15.8572 24.6186 16.1147C23.6983 16.3721 22.843 16.7583 22.0527 17.2731V28.333ZM21.209 30.8077C20.3019 30.1385 19.3233 29.6215 18.2733 29.2566C17.2233 28.8918 16.1394 28.7093 15.0215 28.7093C14.335 28.7093 13.6608 28.7854 12.9987 28.9374C12.3367 29.0897 11.6984 29.3136 11.084 29.6093C10.6831 29.7938 10.3016 29.7646 9.93958 29.5216C9.57752 29.2786 9.39648 28.9342 9.39648 28.4885V16.2739C9.39648 16.0314 9.45892 15.8039 9.5838 15.5913C9.70848 15.3785 9.88839 15.2252 10.1235 15.1314C10.885 14.7607 11.6785 14.4863 12.5043 14.3082C13.33 14.1301 14.1691 14.041 15.0215 14.041C16.1161 14.041 17.1856 14.1906 18.23 14.4899C19.2742 14.7893 20.2672 15.2311 21.209 15.8151C22.1508 15.2311 23.1438 14.7893 24.188 14.4899C25.2324 14.1906 26.3019 14.041 27.3965 14.041C28.2489 14.041 29.0879 14.1301 29.9137 14.3082C30.7394 14.4863 31.533 14.7607 32.2945 15.1314C32.5296 15.2252 32.7095 15.3785 32.8342 15.5913C32.959 15.8039 33.0215 16.0314 33.0215 16.2739V28.4885C33.0215 28.9342 32.8332 29.275 32.4567 29.5109C32.0802 29.7466 31.6843 29.7722 31.269 29.5877C30.6619 29.2991 30.0327 29.0806 29.3815 28.9321C28.7304 28.7836 28.0687 28.7093 27.3965 28.7093C26.2786 28.7093 25.1947 28.8918 24.1447 29.2566C23.0947 29.6215 22.1161 30.1385 21.209 30.8077Z" fill="%23DC6B00"/></svg>') center/contain no-repeat;
}
.footer__cta_list .navBtn--orange .navBtn__arrow {
  background: var(--color2) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%23DC6B00"/></svg>') center/contain no-repeat;
}
.footer__cta_list .navBtn--orange:hover .navBtn__icon {
  background: var(--color1) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42" fill="none"><path d="M14.251 15.667H12.501V28.5H28.834V15.667H27.084V14.5H28.9805C29.1167 14.5023 29.251 14.5317 29.376 14.5859C29.501 14.6402 29.6142 14.7184 29.709 14.8164C29.8038 14.9145 29.8787 15.0304 29.9287 15.1572C29.9787 15.284 30.0033 15.4194 30.001 15.5557V28.6104C30.0033 28.7467 29.9788 28.8829 29.9287 29.0098C29.8787 29.1366 29.8037 29.2526 29.709 29.3506C29.6143 29.4485 29.5009 29.5268 29.376 29.5811C29.251 29.6353 29.1166 29.6647 28.9805 29.667H12.3555C12.2191 29.6647 12.0841 29.6354 11.959 29.5811C11.834 29.5268 11.7207 29.4485 11.626 29.3506C11.5312 29.2526 11.4563 29.1366 11.4062 29.0098C11.3562 28.8829 11.3317 28.7467 11.334 28.6104V15.5557C11.3317 15.4194 11.3563 15.284 11.4062 15.1572C11.4563 15.0304 11.5312 14.9145 11.626 14.8164C11.7207 14.7184 11.834 14.6402 11.959 14.5859C12.0841 14.5316 12.2191 14.5023 12.3555 14.5H14.251V15.667ZM16.001 26.167H14.834V25H16.001V26.167ZM19.501 26.167H18.334V25H19.501V26.167ZM23.001 26.167H21.834V25H23.001V26.167ZM26.501 26.167H25.334V25H26.501V26.167ZM16.001 23.251H14.834V22.084H16.001V23.251ZM19.501 23.251H18.334V22.084H19.501V23.251ZM23.001 23.251H21.834V22.084H23.001V23.251ZM26.501 23.251H25.334V22.084H26.501V23.251ZM16.001 20.333H14.834V19.166H16.001V20.333ZM19.501 20.333H18.334V19.166H19.501V20.333ZM23.001 20.333H21.834V19.166H23.001V20.333ZM26.501 20.333H25.334V19.166H26.501V20.333ZM16.001 12.166C16.1557 12.166 16.3047 12.2275 16.4141 12.3369C16.5233 12.4462 16.5849 12.5945 16.585 12.749V16.249C16.585 16.4037 16.5235 16.5527 16.4141 16.6621C16.3047 16.7715 16.1557 16.833 16.001 16.833C15.8465 16.8329 15.6981 16.7713 15.5889 16.6621C15.4795 16.5527 15.418 16.4037 15.418 16.249V12.749C15.4181 12.5945 15.4796 12.4462 15.5889 12.3369C15.6982 12.2276 15.8464 12.1661 16.001 12.166ZM25.333 12.166C25.4877 12.166 25.6367 12.2275 25.7461 12.3369C25.8554 12.4462 25.9169 12.5945 25.917 12.749V16.249C25.917 16.4037 25.8555 16.5527 25.7461 16.6621C25.6367 16.7715 25.4877 16.833 25.333 16.833C25.1785 16.8329 25.0302 16.7713 24.9209 16.6621C24.8115 16.5527 24.75 16.4037 24.75 16.249V12.749C24.7501 12.5945 24.8116 12.4462 24.9209 12.3369C25.0302 12.2276 25.1785 12.1661 25.333 12.166ZM23.583 15.667H17.75V14.5H23.583V15.667Z" fill="%23fff"/></svg>') center/contain no-repeat;
}
.footer__cta_list .navBtn--orange:hover .navBtn__icon--book {
  background: var(--color1) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42" fill="none"><path d="M15.0215 27.0218C15.9532 27.0218 16.8596 27.1275 17.7409 27.3388C18.6221 27.5501 19.4969 27.8815 20.3652 28.333V17.2731C19.5749 16.7583 18.7196 16.3721 17.7994 16.1147C16.8791 15.8572 15.9532 15.7285 15.0215 15.7285C14.3465 15.7285 13.7158 15.7815 13.1295 15.8874C12.5432 15.9935 11.9407 16.167 11.3219 16.4077C11.2355 16.4366 11.1742 16.4781 11.138 16.5323C11.102 16.5863 11.084 16.6458 11.084 16.7106V27.3506C11.084 27.4517 11.1201 27.5256 11.1923 27.5725C11.2643 27.6194 11.3436 27.6247 11.4302 27.5885C11.9638 27.4069 12.527 27.267 13.1197 27.1689C13.7125 27.0709 14.3465 27.0218 15.0215 27.0218ZM22.0527 28.333C22.921 27.8815 23.7958 27.5501 24.6771 27.3388C25.5583 27.1275 26.4648 27.0218 27.3965 27.0218C28.0715 27.0218 28.7054 27.0709 29.2983 27.1689C29.891 27.267 30.4541 27.4069 30.9878 27.5885C31.0744 27.6247 31.1537 27.6194 31.2257 27.5725C31.2979 27.5256 31.334 27.4517 31.334 27.3506V16.7106C31.334 16.6458 31.316 16.5881 31.28 16.5377C31.2438 16.4872 31.1825 16.4439 31.096 16.4077C30.4773 16.167 29.8748 15.9935 29.2885 15.8874C28.7021 15.7815 28.0715 15.7285 27.3965 15.7285C26.4648 15.7285 25.5388 15.8572 24.6186 16.1147C23.6983 16.3721 22.843 16.7583 22.0527 17.2731V28.333ZM21.209 30.8077C20.3019 30.1385 19.3233 29.6215 18.2733 29.2566C17.2233 28.8918 16.1394 28.7093 15.0215 28.7093C14.335 28.7093 13.6608 28.7854 12.9987 28.9374C12.3367 29.0897 11.6984 29.3136 11.084 29.6093C10.6831 29.7938 10.3016 29.7646 9.93958 29.5216C9.57752 29.2786 9.39648 28.9342 9.39648 28.4885V16.2739C9.39648 16.0314 9.45892 15.8039 9.5838 15.5913C9.70848 15.3785 9.88839 15.2252 10.1235 15.1314C10.885 14.7607 11.6785 14.4863 12.5043 14.3082C13.33 14.1301 14.1691 14.041 15.0215 14.041C16.1161 14.041 17.1856 14.1906 18.23 14.4899C19.2742 14.7893 20.2672 15.2311 21.209 15.8151C22.1508 15.2311 23.1438 14.7893 24.188 14.4899C25.2324 14.1906 26.3019 14.041 27.3965 14.041C28.2489 14.041 29.0879 14.1301 29.9137 14.3082C30.7394 14.4863 31.533 14.7607 32.2945 15.1314C32.5296 15.2252 32.7095 15.3785 32.8342 15.5913C32.959 15.8039 33.0215 16.0314 33.0215 16.2739V28.4885C33.0215 28.9342 32.8332 29.275 32.4567 29.5109C32.0802 29.7466 31.6843 29.7722 31.269 29.5877C30.6619 29.2991 30.0327 29.0806 29.3815 28.9321C28.7304 28.7836 28.0687 28.7093 27.3965 28.7093C26.2786 28.7093 25.1947 28.8918 24.1447 29.2566C23.0947 29.6215 22.1161 30.1385 21.209 30.8077Z" fill="%23fff"/></svg>') center/contain no-repeat;
}
.footer__cta_list .navBtn--orange:hover .navBtn__arrow {
  background: var(--color1) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%23fff"/></svg>') center/contain no-repeat;
}
@media screen and (min-width: 576px) {
  .footer__cta_list .navBtn__txt {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .footer__cta {
    max-width: 470px;
    height: 60px;
    bottom: 20px;
    left: auto;
    right: 20px;
    z-index: 1030;
  }
  .footer__cta_list {
    grid-gap: 10px;
  }
  .footer__cta_list .navBtn {
    border-radius: 40px;
    border: 1px solid #DC6B00;
    color: var(--color2);
    font-size: 16px;
  }
  .footer__cta_list .navBtn__icon {
    width: 42px;
    height: 42px;
  }
  .footer__cta_list .navBtn__txt {
    text-align: left;
  }
  .footer__cta_list .navBtn__arrow {
    width: 16px;
    height: 16px;
  }
}

/*------------------------------------------------------
  main
-------------------------------------------------------*/
.breadcrumbArea {
  width: 100%;
  padding: 10px 0;
}
.breadcrumbArea__inner {
  display: flex;
  align-items: center;
  grid-gap: 6px;
}
.breadcrumbArea__inner > span {
  font-size: 12px;
  font-weight: 500;
  --lh: 1.5;
  flex-shrink: 0;
}
.breadcrumbArea__inner > span:last-child {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  flex-shrink: 1;
  overflow: hidden;
}
.breadcrumbArea__inner > span.sep {
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M8.33333 5.83268L12.5 9.99935L8.33333 14.166" stroke="%23BEBEBE" stroke-width="0.833333" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
  color: transparent;
}
.breadcrumbArea__inner a {
  color: #BEBEBE;
}

.pageTtlArea {
  width: 100%;
  padding: 28px 0 38px;
}
@media screen and (min-width: 768px) {
  .pageTtlArea {
    padding: 60px 0 48px;
  }
}
.pageTtlArea__ttl {
  --lh: 1;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  grid-gap: 8px;
}
.pageTtlArea__ttl_jp {
  font-weight: 700;
}
.pageTtlArea__ttl_en {
  padding-top: 14px;
  margin-left: -16px;
  font-size: 48px;
  font-weight: 700;
  position: relative;
}
.pageTtlArea__ttl_en::before {
  content: "";
  width: 12px;
  height: 27px;
  background: #DC6B00;
  display: block;
  position: absolute;
  top: 0;
  left: -25px;
  transform: skewX(-23deg);
}
@media screen and (min-width: 768px) {
  .pageTtlArea__ttl {
    font-size: 18px;
    grid-gap: 10px;
  }
  .pageTtlArea__ttl_en {
    padding-top: 30px;
    font-size: 60px;
  }
}

.pagination {
  width: 100%;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .pagination {
    margin-top: 100px;
  }
}
.pagination ul.page-numbers {
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 32px;
}
.pagination ul.page-numbers .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pagination ul.page-numbers .page-numbers.current, .pagination ul.page-numbers .page-numbers:hover {
  color: #CBCBCB;
  opacity: 1;
}
.pagination ul.page-numbers .page-numbers.next, .pagination ul.page-numbers .page-numbers.prev {
  background-color: transparent;
  color: transparent;
  position: relative;
}
.pagination ul.page-numbers .page-numbers.next::before, .pagination ul.page-numbers .page-numbers.prev::before {
  content: "";
  width: 9px;
  height: 9px;
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: #2A2A2A;
  position: absolute;
  top: 50%;
  transition: var(--speed);
}
.pagination ul.page-numbers .page-numbers.next:hover::before, .pagination ul.page-numbers .page-numbers.prev:hover::before {
  border-color: #CBCBCB;
}
.pagination ul.page-numbers .page-numbers.prev::before {
  left: 3px;
  transform: translate(0, -50%) rotate(-135deg);
}
.pagination ul.page-numbers .page-numbers.next::before {
  right: 3px;
  transform: translate(0, -50%) rotate(45deg);
}
.pagination ul.page-numbers .page-numbers.dots {
  pointer-events: none;
}

.secTtl {
  width: 100%;
  padding-left: 10px;
  white-space: nowrap;
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}
.secTtl--centering {
  align-items: center;
}
.secTtl__jp {
  font-weight: 700;
  --lh: 2;
}
.secTtl__en {
  padding-top: 12px;
  font-size: 48px;
  font-weight: 700;
  --lh: 1;
  position: relative;
}
.secTtl__en::before {
  content: "";
  width: 12px;
  height: 27px;
  background: #DC6B00;
  display: block;
  position: absolute;
  top: 0;
  left: -10px;
  transform: skewX(-23deg);
}
@media screen and (min-width: 768px) {
  .secTtl {
    padding-left: 0;
  }
  .secTtl__jp {
    font-size: 18px;
  }
  .secTtl__en {
    font-size: 60px;
  }
  .secTtl__en::before {
    width: 20px;
    height: 37px;
    left: -44px;
  }
}

.slideArrow {
  width: var(--size);
  height: var(--size);
  background: #2A2A2A url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%23fff"/></svg>') center/40px no-repeat;
  border: 1px solid #2A2A2A;
  border-radius: 50%;
  transition: var(--speed);
}
.slideArrow--prev {
  transform: scale(-1, 1);
}
.slideArrow:hover {
  background: #fff url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%232A2A2A"/></svg>') center/40px no-repeat;
}

.linkBtn {
  --color1: #5F6527;
  --color2: #fff;
  width: 100%;
  height: 40px;
  margin-top: 16px;
  background-color: var(--color1);
  border: 1px solid #5F6527;
  border-radius: 4px;
  color: var(--color2);
  font-weight: 700;
  --lh: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.linkBtn::after {
  content: "";
  width: 13px;
  height: 13px;
  background: #fff url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%235F6527"/></svg>') center/contain no-repeat;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  transition: var(--speed);
}
.linkBtn:hover {
  background-color: var(--color2);
  color: var(--color1);
}
.linkBtn:hover::after {
  background: var(--color1) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%23fff"/></svg>') center/contain no-repeat;
}
.linkBtn--white {
  --color1: #fff;
  --color2: #5F6527;
}
.linkBtn--white::after {
  background: #5F6527 url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%23fff"/></svg>') center/contain no-repeat;
}
.linkBtn--white:hover::after {
  background: #fff url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%235F6527"/></svg>') center/contain no-repeat;
}
.linkBtn--rev::after {
  left: 14px;
  right: auto;
  transform: translateY(-50%) scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .linkBtn {
    height: 64px;
  }
  .linkBtn::after {
    width: 14px;
    height: 14px;
  }
  .linkBtn--rev::after {
    left: 20px;
  }
}

.bnrWrap {
  width: 100%;
  max-width: 994px;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .bnrWrap {
    margin-top: 100px;
  }
}

.postItem__link {
  width: 100%;
  padding: 0 10px;
  display: flex;
  align-items: flex-start;
  grid-gap: 15px;
}
@media screen and (min-width: 768px) {
  .postItem__link {
    padding: 0;
    grid-gap: 25px;
    align-items: center;
  }
}
.postItem__thumb {
  width: 36.1905%;
  padding-top: 27.5206%;
  border-radius: 4px;
  flex-shrink: 0;
}
.postItem__thumb:not(:has(img)) {
  background-color: #F8F4E6;
  position: relative;
}
.postItem__thumb:not(:has(img))::after {
  content: "no image";
  color: #FFF;
  font-weight: 700;
  font-family: "Poppins", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .postItem__thumb {
    width: 280px;
    padding-top: 213px;
    border-radius: 10px;
  }
}
.postItem__txtWrap {
  width: 100%;
  font-size: 12px;
  --lh: 1.5;
}
@media screen and (min-width: 768px) {
  .postItem__txtWrap {
    font-size: 16px;
  }
}
.postItem__meta {
  margin-bottom: 6px;
  font-size: 10px;
  --ls: 0.1em;
  --lh: 1;
  display: flex;
  align-items: center;
  grid-gap: 6px;
}
.postItem__meta .cat {
  padding: 5px 8px;
  background-color: #5F6527;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  --ls: 0.05em;
}
@media screen and (min-width: 768px) {
  .postItem__meta {
    margin-bottom: 10px;
    font-size: 12px;
    grid-gap: 15px;
  }
}
.postItem__ttl {
  /*padding-bottom: 8px;
  margin-bottom: 10px;*/
  font-size: 14px;
  font-weight: 700;
  --ls: 0.1em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
	overflow: hidden;
}
@media screen and (min-width: 768px) {
  .postItem__ttl {
    /*padding-bottom: 16px;
    margin-bottom: 16px;*/
    font-size: 16px;
  }
}
.postItem__txt{
	padding-top: 10px;
	margin-top: 8px;
  border-top: 1px solid #2A2A2A;
}
@media screen and (min-width: 768px){
	.postItem__txt{
		padding-top: 16px;
		margin-top: 16px;
	}
}

.propertyItem {
  max-width: 100%;
}
.propertyItem__link {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 20px;
  display: block;
  overflow: hidden;
}
.propertyItem__thumb {
  width: 100%;
  padding-top: 73.3761%;
}
.propertyItem__thumb:not(:has(img)) {
  background-color: #5F6527;
  position: relative;
}
.propertyItem__thumb:not(:has(img))::after {
  content: "no image";
  color: #FFF;
  font-weight: 700;
  font-family: "Poppins", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.propertyItem__imgBlk {
  width: 100%;
  max-width: calc(100vw - 40px);
}
.propertyItem__imgBlk_slider {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.propertyItem__imgBlk_slider .swiper-slide {
  max-width: calc(100vw - 40px);
}
.propertyItem__imgBlk_slide {
  width: 100%;
  max-width: 100%;
  padding-top: min(100%, 100vw - 40px);
  border-radius: 10px;
}
.propertyItem__imgBlk_thumb {
  width: 100%;
  max-width: calc(100vw - 40px);
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}
.propertyItem__imgBlk_thumb .thumb {
  width: 100%;
  padding-top: 74.8858%;
  border-radius: 4px;
}
.propertyItem__txtWrap {
  width: 100%;
  padding: 24px 20px;
}
.propertyItem__infoBlk {
  padding: 8px 0 13px;
  margin-bottom: 16px;
  border-bottom: 3px dashed #2A2A2A;
}
.propertyItem__catch {
  color: #5F6527;
  font-weight: 700;
  --ls: 0.05em;
  --lh: 1.7;
}
.propertyItem__meta {
  margin-bottom: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 5px 10px;
}
.propertyItem__meta .new {
  padding: 5px 8px;
  background-color: #5F6527;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  --ls: 0.05em;
  --lh: 1;
  display: inline-block;
}
.propertyItem__meta .location {
  border-bottom: 1px solid #5F6527;
  color: #5F6527;
  font-size: 14px;
  font-weight: 500;
  --lh: 1.5;
  display: flex;
  align-items: center;
  grid-gap: 5px;
}
.propertyItem__meta .location::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/common/icon-map.svg) center/contain no-repeat;
  display: block;
  flex-shrink: 0;
}
.propertyItem__ttl {
  font-size: 20px;
  font-weight: 700;
  --ls: 0.05em;
  --lh: 1.7;
}
.propertyItem__access {
  margin-top: 14px;
}
.propertyItem__cat {
  padding: 0 10px;
  border: 1px solid #5F6527;
  border-radius: 30px;
  color: #5F6527;
  font-size: 14px;
  font-weight: 500;
  --lh: 1.5;
}
.propertyItem__price {
  margin-top: 24px;
  font-weight: 700;
}
.propertyItem__price strong {
  font-size: 32px;
  font-weight: 500;
}
.propertyItem__recomBlk {
  width: 100%;
  padding: 30px 12px 12px;
  margin-top: 40px;
  margin-bottom: 12px;
  background-color: rgba(255, 255, 255, 0.6);
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #ebebeb calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #ebebeb calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  border: 4px solid #DBCB00;
  border-radius: 10px;
  position: relative;
}
.propertyItem__recomBlk_ttl {
  width: 206px;
  padding: 10px;
  background-color: #DBCB00;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  --ls: 0.1em;
  --lh: 1;
  text-align: center;
  display: inline-block;
  position: absolute;
  top: 0;
  left: -5px;
  transform: translateY(-75%);
}
.propertyItem__recomBlk_list {
  width: 100%;
  font-weight: 500;
  --lh: 1.7;
}
.propertyItem__recomBlk_list li {
  padding-left: 20px;
  position: relative;
}
.propertyItem__recomBlk_list li::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #5F6527;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 9px;
  left: 2px;
}
.propertyItem__data {
  width: 100%;
  margin-top: 3px;
  font-weight: 500;
}
.propertyItem__data th, .propertyItem__data td {
  padding: 8px 0;
  vertical-align: middle;
}
.propertyItem__data th {
  width: 118px;
  font-weight: 700;
}
.propertyItem__data th .icon {
  width: 24px;
  margin-right: 5px;
  display: inline-block;
}
.propertyItem__data td.price {
  font-size: 16px;
  font-weight: 700;
}
.propertyItem__data td.price span {
  white-space: nowrap;
  display: inline-block;
}
.propertyItem__data td.price strong {
  font-size: 24px;
  font-weight: 500;
  --lh: 16px;
}
.propertyItem__dataBlk {
  font-size: 14px;
  --lh: 1.42857143;
}
.propertyItem__dataBlk th, .propertyItem__dataBlk td {
  padding: 6px 0;
}
.propertyItem__linkBtn {
  width: 100%;
  height: 40px;
  margin-top: 16px;
  background-color: #5F6527;
  border: 1px solid #5F6527;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  --lh: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.propertyItem__linkBtn::after {
  content: "";
  width: 13px;
  height: 13px;
  background: #fff url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%235F6527"/></svg>') center/contain no-repeat;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  transition: var(--speed);
}
.propertyItem__linkBtn:hover {
  background-color: #fff;
  color: #5F6527;
}
.propertyItem__linkBtn:hover::after {
  background: #5F6527 url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M7.57422 4.23956C7.78188 4.03223 8.11864 4.03202 8.32617 4.23956L11.709 7.62334C11.9166 7.83098 11.9166 8.16766 11.709 8.3753L8.32617 11.7591C8.11864 11.9666 7.78188 11.9664 7.57422 11.7591C7.36658 11.5515 7.36658 11.2148 7.57422 11.0071L10.0498 8.53057L4.66602 8.53057C4.37238 8.53057 4.13477 8.29296 4.13477 7.99932C4.13477 7.70568 4.37238 7.46807 4.66602 7.46807L10.0498 7.46807L7.57422 4.99151C7.36658 4.78387 7.36658 4.44719 7.57422 4.23956Z" fill="%23fff"/></svg>') center/contain no-repeat;
}
.propertyItem__row {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 640px) {
  .propertyItem__imgBlk {
    max-width: 600px;
  }
}
@media screen and (min-width: 768px) {
  .propertyItem:has(.propertyItem__imgBlk) {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    grid-gap: 30px;
  }
  .propertyItem:has(.propertyItem__imgBlk) .propertyItem__txtWrap {
    max-width: 555px;
    padding: 0;
  }
  .propertyItem__imgBlk {
    width: 45%;
    max-width: 325px;
    flex-shrink: 0;
  }
  .propertyItem__imgBlk:not(:has(img)) {
    position: relative;
  }
  .propertyItem__imgBlk:not(:has(img))::before {
    content: "no image";
    width: 100%;
    padding-top: 50%;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .propertyItem__imgBlk:not(:has(img))::after {
    content: "";
    width: 100%;
    padding-top: 100%;
    background-color: #F8F4E6;
    border-radius: 20px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  .propertyItem__imgBlk_slide {
    border-radius: 20px;
  }
  .propertyItem__imgBlk_thumb {
    margin-top: 18px;
    grid-gap: 12px;
  }
  .propertyItem__imgBlk_thumb .thumb {
    padding-top: 87.4308%;
    border-radius: 6px;
  }
  .propertyItem__txtWrap {
    padding: 30px 25px;
  }
  .propertyItem__infoBlk {
    padding: 0 0 20px;
    margin-bottom: 40px;
    border-bottom: 3px dashed #2A2A2A;
  }
  .propertyItem__infoBlk .propertyItem__ttl {
    font-size: 22px;
  }
  .propertyItem__infoBlk + .propertyItem__recomBlk {
    margin-top: 45px;
  }
  .propertyItem__meta {
    margin-bottom: 8px;
    grid-gap: 4px 8px;
  }
  .propertyItem__meta .new {
    font-size: 16px;
  }
  .propertyItem__ttl {
    margin-bottom: 5px;
  }
  .propertyItem__price {
    margin-top: 18px;
  }
  .propertyItem__data {
    margin-top: 8px;
  }
  .propertyItem__dataBlk {
    font-size: 16px;
  }
  .propertyItem__dataBlk th, .propertyItem__dataBlk td {
    padding: 10px 0;
  }
  .propertyItem__dataBlk td.price strong {
    font-size: 32px;
  }
  .propertyItem__linkBtn {
    max-width: 362px;
    height: 44px;
    margin-top: 50px;
  }
  .propertyItem__row {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .propertyItem__imgBlk {
    width: 49%;
    max-width: 585px;
  }
  .propertyItem__txtWrap {
    padding: 30px 40px;
  }
  .propertyItem__infoBlk .propertyItem__ttl {
    font-size: 25px;
  }
}