@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?&family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Serif+JP:wght@600;700&family=Outfit:wght@500;700&display=swap");
:root {
  --text: #111;
  --main: #F09C00;
  --ac: #F05500;
  --serif: Noto Serif JP, Times New Roman, 游明朝体, Yu Mincho, YuMincho, ヒラギノ明朝 Pro, Hiragino Mincho Pro, MS P明朝, MS PMincho, serif;
  --en: Outfit, Noto Sans JP, Helvetica Neue, Helvetica, Hiragino Sans, Hiragino Kaku Gothic ProN, Arial, Yu Gothic, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  --headerHeight: 50px;
  --innerWidth: calc(100% - 40px);
  --innerMax: 1200px;
  --innerOut: calc( (100% - var(--innerMax) + 30px) / 2 );
  --ls: 0;
  --lh: 1.7;
  --speed: 0.3s;
  --rainbow: linear-gradient(90deg, #FFE109 14.285%, #DD5E09 14.285%, #DD5E09 28.57%, #E60012 28.57%, #E60012 42.855%, #A5318E 42.855%, #A5318E 57.14%, #079A3E 57.14%, #079A3E 71.425%, #00A0E9 71.425%, #00A0E9 85.71%, #073190 85.71%);
  --btnColor: transparent;
  --txtColor: transparent;
}
@media screen and (min-width: 1024px) {
  :root {
    --headerHeight: 60px;
  }
}
@media screen and (min-width: 1290px) {
  :root {
    --innerOut: calc( (100% - var(--innerMax)) / 2 );
  }
}

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

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

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-size: 16px;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
}
body::-webkit-scrollbar {
  display: none;
}

main {
  padding-bottom: 120px;
  margin-top: var(--headerHeight);
  background: url(../images/main_bg.jpg) left bottom -20px/375px no-repeat;
  position: relative;
}
main::after {
  content: "";
  width: 100%;
  height: 10px;
  background: var(--rainbow);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  main {
    padding-bottom: 56px;
    background-position: left bottom;
    background-size: 384px;
  }
  main::after {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  main {
    margin-top: calc(var(--headerHeight) + 20px);
  }
}

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;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: bottom;
}

strong {
  font-weight: 700;
}

/* ============= common class ================ */
.disp_none {
  display: none !important;
}
@media screen and (max-width: 575px) {
  .disp_sm {
    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) {
  .disp_sm {
    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: "Outfit", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.serif {
  font-family: var(--serif);
}

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

.js-collapse {
  cursor: pointer;
}

.txt--main {
  color: var(--main);
}
.txt--ac {
  color: var(--ac);
}

.bg--main {
  background-color: var(--main);
  color: #fff;
}
.bg--ac {
  background-color: var(--ac);
  color: #fff;
}

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

/* ============= common parts ================ */
.inner {
  width: var(--innerWidth);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: var(--innerMax);
  }
}
@media screen and (min-width: 1024px) {
  .inner {
    padding-right: 30px;
  }
}
@media screen and (min-width: 1290px) {
  .inner {
    padding-right: 0;
  }
}

.moreBtn {
  width: 217px;
  height: 46px;
  padding: 0 14px 0 0;
  background-color: #fff;
  border: 1px solid #BEBEBE;
  border-radius: 30px;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  --btnColor: var(--main);
}
.moreBtn::after {
  content: "";
  width: 18px;
  height: 18px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="8" viewBox="0 0 19 8" fill="none"><path d="M18.8006 4.49613C18.9958 4.30087 18.9958 3.98429 18.8006 3.78902L15.6186 0.607044C15.4233 0.411782 15.1068 0.411782 14.9115 0.607044C14.7162 0.802306 14.7162 1.11889 14.9115 1.31415L17.7399 4.14258L14.9115 6.97101C14.7162 7.16627 14.7162 7.48285 14.9115 7.67811C15.1068 7.87337 15.4233 7.87337 15.6186 7.67811L18.8006 4.49613ZM0.297852 4.14258V4.64258H18.447V4.14258V3.64258H0.297852V4.14258Z" fill="%23F09C00"/></svg>') center/contain no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
}
.moreBtn:hover {
  background-color: var(--btnColor);
  border-color: #fff;
  color: #fff;
  opacity: 1;
}
.moreBtn:hover::after {
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="8" viewBox="0 0 19 8" fill="none"><path d="M18.8006 4.49613C18.9958 4.30087 18.9958 3.98429 18.8006 3.78902L15.6186 0.607044C15.4233 0.411782 15.1068 0.411782 14.9115 0.607044C14.7162 0.802306 14.7162 1.11889 14.9115 1.31415L17.7399 4.14258L14.9115 6.97101C14.7162 7.16627 14.7162 7.48285 14.9115 7.67811C15.1068 7.87337 15.4233 7.87337 15.6186 7.67811L18.8006 4.49613ZM0.297852 4.14258V4.64258H18.447V4.14258V3.64258H0.297852V4.14258Z" fill="%23fff"/></svg>') center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .moreBtn {
    width: 238px;
    padding: 0;
  }
  .moreBtn::after {
    width: 20px;
    height: 20px;
    right: 38px;
  }
}
.moreBtn--freeWidth {
  width: auto;
  padding: 0 30px;
  grid-gap: 16px;
}
.moreBtn--freeWidth::after {
  position: relative;
  top: auto;
  right: auto;
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .moreBtn--freeWidth {
    width: auto;
    padding: 0 30px;
  }
}
.moreBtn--main {
  --btnColor: var(--main);
  border-color: var(--btnColor);
  color: var(--btnColor);
}
.moreBtn--main::after {
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="8" viewBox="0 0 19 8" fill="none"><path d="M18.8006 4.49613C18.9958 4.30087 18.9958 3.98429 18.8006 3.78902L15.6186 0.607044C15.4233 0.411782 15.1068 0.411782 14.9115 0.607044C14.7162 0.802306 14.7162 1.11889 14.9115 1.31415L17.7399 4.14258L14.9115 6.97101C14.7162 7.16627 14.7162 7.48285 14.9115 7.67811C15.1068 7.87337 15.4233 7.87337 15.6186 7.67811L18.8006 4.49613ZM0.297852 4.14258V4.64258H18.447V4.14258V3.64258H0.297852V4.14258Z" fill="%23F09C00"/></svg>') center/contain no-repeat;
}
.moreBtn--ac {
  --btnColor: var(--ac);
  border-color: var(--btnColor);
  color: var(--btnColor);
}
.moreBtn--ac::after {
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="8" viewBox="0 0 19 8" fill="none"><path d="M18.8006 4.49613C18.9958 4.30087 18.9958 3.98429 18.8006 3.78902L15.6186 0.607044C15.4233 0.411782 15.1068 0.411782 14.9115 0.607044C14.7162 0.802306 14.7162 1.11889 14.9115 1.31415L17.7399 4.14258L14.9115 6.97101C14.7162 7.16627 14.7162 7.48285 14.9115 7.67811C15.1068 7.87337 15.4233 7.87337 15.6186 7.67811L18.8006 4.49613ZM0.297852 4.14258V4.64258H18.447V4.14258V3.64258H0.297852V4.14258Z" fill="%23F05500"/></svg>') center/contain no-repeat;
}
.moreBtn--rev {
  padding: 0 0 0 14px;
}
.moreBtn--rev::after {
  transform: translateY(-50%) scale(-1, 1);
  left: 35px;
  right: auto;
}

.secTtl {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 10px;
  position: relative;
}
.secTtl::after {
  content: "";
  width: 100%;
  height: 10px;
  background: var(--rainbow);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.secTtl__jp {
  font-size: 12px;
  font-weight: 700;
  --ls: 0.05em;
  --lh: 1;
  display: flex;
  align-items: center;
  grid-gap: 4px;
}
.secTtl__jp::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--ac);
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.secTtl__en {
  font-size: 68px;
  font-weight: 500;
  --lh: 0.9;
}
.secTtl--jp {
  padding-bottom: 32px;
  flex-direction: column-reverse;
  grid-gap: 8px;
}
.secTtl--jp .secTtl__jp {
  font-size: 36px;
  --lh: 0.9;
  display: block;
}
.secTtl--jp .secTtl__jp::first-letter {
  font-size: 55px;
  font-weight: 600;
  --ls: -0.1em;
}
.secTtl--jp .secTtl__jp::before {
  display: none;
}
.secTtl--jp .secTtl__en {
  font-size: 12px;
  font-weight: 700;
  --ls: 0.05em;
  --lh: 1;
  display: flex;
  align-items: center;
  grid-gap: 4px;
}
.secTtl--jp .secTtl__en::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--ac);
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .secTtl {
    padding-bottom: 32px;
    align-items: center;
  }
  .secTtl::after {
    width: 378px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/*------------------------------------------------------
    header
-------------------------------------------------------*/
.header {
  width: 100%;
  height: var(--headerHeight);
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
}
.header__inner {
  --innerWidth: calc(100% - 20px);
  --innerMax: 1376px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (min-width: 576px) {
  .header__inner {
    --innerWidth: calc(100% - 40px);
  }
}
@media screen and (min-width: 1024px) {
  .header__inner {
    padding-right: 0;
  }
}
.header__sitelogo {
  width: 107px;
  margin-right: auto;
  flex-shrink: 0;
}
.header__navWrap {
  transition: var(--speed);
}
@media screen and (max-width: 1023px) {
  .header__navWrap {
    width: calc(100% - 20px);
    height: 100vh;
    background-color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-gap: 40px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    transform: scale(0, 1);
    transform-origin: right;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
  }
  .header__navWrap.visible {
    transform: scale(1, 1);
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (min-width: 1024px) {
  .header__navWrap {
    display: block;
  }
}
.header__navWrap_gnavWrap {
  display: contents;
}
.header__navWrap_btnWrap {
  width: 165px;
  display: grid;
  grid-template-rows: repeat(2, 41px);
  grid-gap: 16px;
}
.header__navWrap_btnWrap .header__btnWrap_btn--contact {
  border: 1px solid #fff;
}
@media screen and (max-width: 1023px) {
  .header__gnav {
    display: grid;
    grid-gap: 24px;
  }
  .header__gnav a {
    width: 100%;
    color: #fff;
    font-weight: 600;
    --lh: 1;
    text-align: center;
    white-space: nowrap;
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .header__gnav {
    margin-right: 10px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    grid-gap: 10px;
  }
}
@media screen and (min-width: 1240px) {
  .header__gnav {
    margin-right: 16px;
    font-size: 14px;
    grid-gap: 16px;
  }
}
.header__btnWrap {
  height: 41px;
  margin-right: 5px;
}
@media screen and (min-width: 1024px) {
  .header__btnWrap {
    margin-right: 0;
  }
}
.header__btnWrap_list {
  width: 165px;
  height: 100%;
  display: grid;
}
@media screen and (min-width: 768px) {
  .header__btnWrap_list {
    width: auto;
    grid-template-columns: repeat(2, 150px);
    grid-gap: 10px;
  }
  .header__btnWrap_list > li {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .header__btnWrap_list {
    grid-template-columns: repeat(2, 140px);
  }
}
@media screen and (min-width: 1240px) {
  .header__btnWrap_list {
    grid-template-columns: repeat(2, 165px);
    grid-gap: 16px;
  }
}
.header__btnWrap_btn {
  width: 100%;
  height: 100%;
  background-color: var(--btnColor);
  border: 1px solid transparent;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  --lh: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header__btnWrap_btn:hover {
  background-color: #fff;
  border-color: var(--btnColor);
  color: var(--btnColor);
  opacity: 1;
}
.header__btnWrap_btn::after {
  content: "";
  width: 9px;
  height: 17px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="18" viewBox="0 0 10 18" fill="none"><path d="M2.49092 5.16663L3.24113 4.41714L7.32731 8.5019C7.39318 8.56736 7.44545 8.64519 7.48112 8.73092C7.51679 8.81665 7.53516 8.9086 7.53516 9.00145C7.53516 9.09431 7.51679 9.18625 7.48112 9.27198C7.44545 9.35772 7.39318 9.43555 7.32731 9.501L3.24113 13.5879L2.49163 12.8384L6.3268 9.00251L2.49092 5.16663Z" fill="%23fff"/></svg>') center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.header__btnWrap_btn--contact {
  --btnColor: var(--text);
  border-color: #fff;
}
.header__btnWrap_btn--contact:hover::after {
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="18" viewBox="0 0 10 18" fill="none"><path d="M2.49092 5.16663L3.24113 4.41714L7.32731 8.5019C7.39318 8.56736 7.44545 8.64519 7.48112 8.73092C7.51679 8.81665 7.53516 8.9086 7.53516 9.00145C7.53516 9.09431 7.51679 9.18625 7.48112 9.27198C7.44545 9.35772 7.39318 9.43555 7.32731 9.501L3.24113 13.5879L2.49163 12.8384L6.3268 9.00251L2.49092 5.16663Z" fill="%23111"/></svg>') center/contain no-repeat;
}
.header__btnWrap_btn--corporate {
  --btnColor: var(--ac);
}
.header__btnWrap_btn--corporate:hover::after {
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="18" viewBox="0 0 10 18" fill="none"><path d="M2.49092 5.16663L3.24113 4.41714L7.32731 8.5019C7.39318 8.56736 7.44545 8.64519 7.48112 8.73092C7.51679 8.81665 7.53516 8.9086 7.53516 9.00145C7.53516 9.09431 7.51679 9.18625 7.48112 9.27198C7.44545 9.35772 7.39318 9.43555 7.32731 9.501L3.24113 13.5879L2.49163 12.8384L6.3268 9.00251L2.49092 5.16663Z" fill="%23F05500"/></svg>') center/contain no-repeat;
}
@media screen and (min-width: 1024px) and (max-width: 1239px) {
  .header__btnWrap_btn {
    padding: 0 10px;
    grid-gap: 5px;
  }
  .header__btnWrap_btn::after {
    position: relative;
    top: 0;
    right: 0;
    transform: translateY(0);
  }
  .header__btnWrap_btn > span {
    width: 100%;
    text-align: center;
    display: block;
  }
}
.header__spToggler {
  width: 41px;
  height: 41px;
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 3.5px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 3.5px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.header__spToggler:focus {
  outline: 0;
  box-shadow: none;
}
.header__spToggler span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  display: block;
  transition: var(--speed);
}
.header__spToggler.open span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}
.header__spToggler.open span + span {
  transform: rotate(-45deg);
}
.header__spToggler.open span + span + span {
  transform: scale(0);
}

/*------------------------------------------------------
    footer
-------------------------------------------------------*/
.footer {
  padding: 32px 0 50px;
  background: #111;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .footer {
    padding: 56px 0;
  }
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 40px;
}
.footer__infoBlk {
  font-size: 14px;
  --lh: 1.4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 15px;
}
.footer__infoBlk_logo {
  width: 160px;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer__infoBlk {
    grid-gap: 24px;
  }
}
.footer__navBlk {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 24px;
}
.footer__navBlk_listWrap {
  display: contents;
}
.footer__navBlk_list {
  width: 100%;
  font-weight: 600;
  --lh: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  grid-gap: 16px;
}
.footer__navBlk_list .disp_header {
  display: none;
}
.footer__navBlk_btnWrap {
  width: 165px;
  display: grid;
  grid-template-rows: repeat(2, 41px);
  grid-gap: 8px;
}
.footer__navBlk_btn {
  width: 100%;
  height: 100%;
  background-color: var(--btnColor);
  border: 1px solid transparent;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  --lh: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.footer__navBlk_btn:hover {
  background-color: #fff;
  border-color: var(--btnColor);
  color: var(--btnColor);
  opacity: 1;
}
.footer__navBlk_btn--contact {
  --btnColor: var(--text);
  border-color: #fff;
}
.footer__navBlk_btn--contact:hover::after {
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="18" viewBox="0 0 10 18" fill="none"><path d="M2.49092 5.16663L3.24113 4.41714L7.32731 8.5019C7.39318 8.56736 7.44545 8.64519 7.48112 8.73092C7.51679 8.81665 7.53516 8.9086 7.53516 9.00145C7.53516 9.09431 7.51679 9.18625 7.48112 9.27198C7.44545 9.35772 7.39318 9.43555 7.32731 9.501L3.24113 13.5879L2.49163 12.8384L6.3268 9.00251L2.49092 5.16663Z" fill="%23111"/></svg>') center/contain no-repeat;
}
.footer__navBlk_btn--corporate {
  --btnColor: var(--ac);
}
.footer__navBlk_btn--corporate:hover::after {
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="18" viewBox="0 0 10 18" fill="none"><path d="M2.49092 5.16663L3.24113 4.41714L7.32731 8.5019C7.39318 8.56736 7.44545 8.64519 7.48112 8.73092C7.51679 8.81665 7.53516 8.9086 7.53516 9.00145C7.53516 9.09431 7.51679 9.18625 7.48112 9.27198C7.44545 9.35772 7.39318 9.43555 7.32731 9.501L3.24113 13.5879L2.49163 12.8384L6.3268 9.00251L2.49092 5.16663Z" fill="%23F05500"/></svg>') center/contain no-repeat;
}
.footer__navBlk_btn::after {
  content: "";
  width: 9px;
  height: 17px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="18" viewBox="0 0 10 18" fill="none"><path d="M2.49092 5.16663L3.24113 4.41714L7.32731 8.5019C7.39318 8.56736 7.44545 8.64519 7.48112 8.73092C7.51679 8.81665 7.53516 8.9086 7.53516 9.00145C7.53516 9.09431 7.51679 9.18625 7.48112 9.27198C7.44545 9.35772 7.39318 9.43555 7.32731 9.501L3.24113 13.5879L2.49163 12.8384L6.3268 9.00251L2.49092 5.16663Z" fill="%23fff"/></svg>') center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .footer__navBlk_btnWrap {
    width: auto;
    grid-template-rows: repeat(1, 41px);
    grid-template-columns: repeat(2, 165px);
  }
}
.footer__btmBlk {
  width: 100%;
  font-size: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 6px;
}
.footer__btmBlk_navList {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 16px;
}
@media screen and (min-width: 768px) {
  .footer__btmBlk {
    margin-top: 20px;
  }
}
.footer__ctaBlk {
  width: calc(100% - 16px);
  height: 40px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1041;
}
.footer__ctaBlk_list {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
}
.footer__ctaBlk_list > li {
  width: 100%;
  height: 100%;
}
.footer__ctaBlk_list_btn {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FFF 27.4%, #E0E0E0 100%);
  border-color: #EAEAEA;
  border-style: solid;
  border-width: 1px 1px 0;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 0 4px 0 #D4D4D4;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 8px;
}
.footer__ctaBlk_list_btn .icon {
  width: 24px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .footer__ctaBlk_list_btn {
    pointer-events: auto !important;
  }
}
@media screen and (min-width: 1024px) {
  .footer__ctaBlk {
    width: 46px;
    height: auto;
    top: 50%;
    bottom: auto;
    left: auto;
    right: 0;
    transform: translate(0, -50%);
  }
  .footer__ctaBlk_list {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 214px);
  }
  .footer__ctaBlk_list_btn {
    border-width: 1px 0 1px 1px;
    border-radius: 5px 0 0 5px;
    flex-direction: column;
  }
  .footer__ctaBlk_list_btn .icon {
    width: 26px;
  }
  .footer__ctaBlk_list_btn .txt {
    writing-mode: vertical-rl;
  }
}
.footer__backTop {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border: 2px solid var(--ac);
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
}
.footer__backTop img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 1024px) {
  .footer__backTop {
    right: 30px;
  }
}
@media screen and (min-width: 1290px) {
  .footer__backTop {
    right: 0;
  }
}