@charset "UTF-8";
:root {
  --text: #000;
  --black: #191919;
  --main: #FF5645;
  --ac: #CA0010;
  --bg: #F9F9F9;
  --gothic: Noto Sans JP, Helvetica Neue, Helvetica, Hiragino Sans, Hiragino Kaku Gothic ProN, Arial, Yu Gothic, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  --en: Outfit, Helvetica Neue, Helvetica, Hiragino Sans, Hiragino Kaku Gothic ProN, Arial, Yu Gothic, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  --ls: 0;
  --lh: 1.6;
  --headerHeight: 60px;
}
@media screen and (min-width: 1024px) {
  :root {
    --headerHeight: 80px;
  }
}
:root {
  --innerWidth: calc(100% - 32px);
  --innerMax: 600px;
}
@media screen and (min-width: 768px) {
  :root {
    --innerWidth: calc(100% - 40px);
    --innerMax: 1000px;
  }
}
:root {
  --speed: 0.3s;
}

*, *::before, *::after {
  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-color: #fff;
  color: var(--text);
  font-size: 14px;
  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;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

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: 0.3s;
}
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: var(--innerWidth);
  max-width: var(--innerMax);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .inner--wide {
    max-width: 1200px;
  }
}

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

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

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

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

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

.bg {
  background-color: var(--bg);
}

.js-collapse {
  cursor: pointer;
}

/*------------------------------------------------------
    header
-------------------------------------------------------*/
.header {
  width: 100%;
  height: var(--headerHeight);
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  transition: var(--speed);
}
.header__inner {
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 10px;
}
@media screen and (min-width: 1200px) {
  .header__inner {
    width: calc(100% - 68px);
  }
}
.header__sitelogo {
  flex-shrink: 0;
}
.header__sitelogo_link {
  display: flex;
  align-items: center;
  grid-gap: 6px;
}
.header__sitelogo_img {
  width: 53px;
  display: block;
}
.header__sitelogo_txt {
  font-size: 10px;
  font-weight: 700;
  --lh: 1.2;
}
.header__sitelogo_txt strong {
  font-size: 160%;
}
@media screen and (min-width: 1024px) {
  .header__sitelogo_img {
    width: 80px;
  }
  .header__sitelogo_txt {
    font-size: 12px;
  }
  .header__sitelogo_txt strong {
    font-size: 158.33%;
  }
}
@media screen and (min-width: 1200px) {
  .header__sitelogo_link {
    grid-gap: 12px;
  }
  .header__sitelogo_img {
    width: 84px;
  }
}
.header__navWrap {
  background-color: #fff;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .header__navWrap {
    width: 100%;
    height: calc(100vh - var(--headerHeight));
    align-items: flex-start;
    position: fixed;
    top: var(--headerHeight);
    left: 0;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
    transition: var(--speed);
  }
  .header__navWrap.visible {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (min-width: 1024px) {
  .header__navWrap {
    align-items: center;
  }
}
.header__gnavWrap {
  display: contents;
}
.header__gnav > li {
  font-size: 16px;
}
.header__gnav > li > a {
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header__gnav > li.menu_btn > a {
  background-color: var(--ac);
  border: 1px solid var(--ac);
  color: #fff;
  font-weight: 700;
  --ls: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 15px;
}
.header__gnav > li.menu_btn > a::before {
  display: none;
}
.header__gnav > li.menu_btn > a::after {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M15.334 12.1289L15.7461 12.501L15.334 12.873L10.334 17.373L9.66406 16.6289L14.25 12.501L9.66406 8.37305L10.334 7.62891L15.334 12.1289Z" fill="%23CA0010"/></svg>') center/contain no-repeat;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.header__gnav > li.menu_btn > a:hover {
  background-color: #fff;
  color: var(--ac);
}
@media screen and (max-width: 1023px) {
  .header__gnav {
    width: var(--innerWidth);
    max-width: 400px;
    padding: 32px 26px 30px;
    margin: 20px 0 30px;
    background-color: var(--bg);
    box-shadow: 1px 4px 4px 1px rgba(0, 0, 0, 0.22);
    display: grid;
    grid-gap: 17px;
  }
  .header__gnav > li > a {
    width: 100%;
    padding-bottom: 5px;
  }
  .header__gnav > li > a::before {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #FFB941 0%, #FF5645 100%);
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .header__gnav > li > a::after {
    content: "";
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M15.334 12.1289L15.7461 12.501L15.334 12.873L10.334 17.373L9.66406 16.6289L14.25 12.501L9.66406 8.37305L10.334 7.62891L15.334 12.1289Z" fill="%23fff"/></svg>') center/contain no-repeat, linear-gradient(0deg, #FFB941 0%, #FF5645 100%);
    border: 1px solid #fff;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
  }
  .header__gnav > li > a:hover {
    color: var(--main);
    opacity: 1;
  }
  .header__gnav > li.menu_btn {
    margin-top: 42px;
  }
  .header__gnav > li.menu_btn > a {
    width: calc(100% + 14px);
    padding: 10px;
    margin: 0 -7px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .header__gnav {
    display: flex;
    align-items: center;
    grid-gap: 20px;
  }
  .header__gnav > li > a {
    padding: 10px 0;
    font-size: 14px;
  }
  .header__gnav > li > a::before {
    content: "";
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #FF5645 0%, #FFB941 108.62%);
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: scale(0, 1) translateX(-50%);
    transform-origin: left;
    transition: var(--speed);
  }
  .header__gnav > li > a:hover::before {
    transform: scale(1, 1) translateX(-50%);
  }
  .header__gnav > li:has(.sub-menu) {
    position: relative;
  }
  .header__gnav > li:has(.sub-menu) > a {
    grid-gap: 0.5em;
  }
  .header__gnav > li:has(.sub-menu) > a::before {
    display: none;
  }
  .header__gnav > li:has(.sub-menu) > a::after {
    content: "";
    width: 8px;
    height: 8px;
    background: url('data:image/svg+xml;charset=utf8,<svg width="9" height="9" viewBox="0 0 9 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.144531 6.32422L4.49805 1.9707L8.85156 6.32422L8.14453 7.03125L4.49805 3.38477L0.851562 7.03125L0.144531 6.32422Z" fill="%23CA0010"/></svg>') center/contain no-repeat;
    display: block;
    flex-shrink: 0;
    transition: var(--speed);
  }
  .header__gnav > li:has(.sub-menu) > a:hover::after {
    transform: rotate(180deg);
  }
  .header__gnav > li.menu_btn {
    margin-left: -5px;
  }
  .header__gnav > li.menu_btn > a {
    width: 130px;
    padding: 10px;
    font-size: 16px;
    font-family: var(--en);
  }
  .header__gnav .sub-menu {
    min-width: 134px;
    padding: 16px 16px 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 1px 4px 4px 1px rgba(0, 0, 0, 0.22);
    display: grid;
    grid-gap: 13px;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 10;
    opacity: 0;
    transform: scale(1, 0) translate(-50%, 100%);
    transform-origin: bottom;
    pointer-events: none;
    transition: var(--speed);
  }
  .header__gnav .sub-menu::before {
    content: "";
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FF5645 0%, #FFB941 108.62%);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header__gnav .sub-menu.visible {
    opacity: 1;
    transform: scale(1, 1) translate(-50%, 100%);
    pointer-events: auto;
  }
  .header__gnav .sub-menu > li > a {
    width: 100%;
    padding-bottom: 2px;
    border-bottom: 1px solid #898989;
    font-size: 14px;
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .header__gnav {
    grid-gap: 30px;
  }
  .header__gnav > li > a {
    font-size: 16px;
  }
  .header__gnav > li.menu_btn {
    margin-left: -15px;
  }
  .header__gnav > li.menu_btn > a {
    width: 175px;
    font-size: 18px;
  }
}
@media screen and (min-width: 1440px) {
  .header__gnav {
    grid-gap: 40px;
  }
}
.header__spToggler {
  width: 30px;
  height: 23px;
  padding: 0;
  border: 0;
  line-height: 1;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  flex-shrink: 0;
  position: relative;
}
.header__spToggler:focus {
  outline: 0;
  box-shadow: none;
}
.header__spToggler span {
  width: 30px;
  height: 1px;
  margin: 0 auto;
  background-color: var(--text);
  display: block;
  transition: var(--speed);
}
.header__spToggler.open span {
  width: 25px;
  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);
}
@media screen and (min-width: 768px) {
  .header.scrolled {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  }
}

/*------------------------------------------------------
  main
-------------------------------------------------------*/
.pageTtl {
  width: 100%;
  height: 150px;
  margin-bottom: 50px;
  position: relative;
}
.pageTtl::before, .pageTtl::after {
  content: "";
  width: 25%;
  height: 100%;
  background: linear-gradient(180deg, #FF5847 0%, rgba(255, 176, 38, 0.7) 100%);
  display: block;
  position: absolute;
  top: 0;
}
.pageTtl::before {
  clip-path: polygon(0 0, 100% 0%, 50% 100%, 0% 100%);
  left: 0;
}
.pageTtl::after {
  clip-path: polygon(50% 0, 100% 0%, 100% 100%, 0 100%);
  right: 0;
}
.pageTtl__inner {
  height: 100%;
  --ls: 0.03em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.pageTtl__ttl {
  font-size: 142.86%;
  font-weight: 700;
}
.pageTtl__en {
  color: var(--main);
  font-weight: 600;
}

.secTtl {
  --lh: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 8px;
}
.secTtl::before {
  content: "";
  width: 22px;
  height: 34px;
  background: url(../img/secttl.svg) center/contain no-repeat;
  display: block;
  flex-shrink: 0;
  order: -1;
}
.secTtl__jp {
  margin-left: 8px;
  font-size: 114.29%;
  font-weight: 500;
  --ls: 0.1em;
  order: 1;
}
.secTtl__en {
  font-size: 228.57%;
  font-weight: 600;
  --ls: 0.03em;
}
@media screen and (min-width: 768px) {
  .secTtl {
    grid-gap: 10px;
  }
  .secTtl::before {
    width: 27px;
    height: 43px;
  }
  .secTtl__jp {
    padding-top: 20px;
    margin-left: 15px;
    font-size: 100%;
  }
  .secTtl__en {
    font-size: 400%;
  }
}

.section {
  padding: 0 0 80px;
}
.section h2:not(:last-child), .section h3:not(:last-child), .section p:not(:last-child), .section ul:not(:last-child) {
  margin-bottom: 15px;
}
.section h2:not(:first-child), .section h3:not(:first-child), .section p:not(:first-child), .section ul:not(:first-child) {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .section h2:not(:last-child), .section h3:not(:last-child), .section p:not(:last-child), .section ul:not(:last-child) {
    margin-bottom: 20px;
  }
  .section h2:not(:first-child), .section h3:not(:first-child), .section p:not(:first-child), .section ul:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .section h2:not(:last-child), .section h3:not(:last-child), .section p:not(:last-child), .section ul:not(:last-child) {
    margin-bottom: 30px;
  }
  .section h2:not(:first-child), .section h3:not(:first-child), .section p:not(:first-child), .section ul:not(:first-child) {
    margin-top: 30px;
  }
}
.section h2 {
  padding-bottom: 5px;
  font-size: 128.57%;
  font-weight: 700;
  position: relative;
}
.section h2::before {
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #FFB941 0%, #FF5645 100%);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .section h2 {
    font-size: 150%;
  }
}
.section ul {
  margin-left: 1em;
}
.section ul li {
  list-style: disc;
}
.section ul.borderd {
  padding: 20px 10px 20px 30px;
  margin-left: 0;
  border: 1px solid var(--text);
}
@media screen and (min-width: 768px) {
  .section ul.borderd {
    padding: 30px 20px 30px 40px;
  }
}
.section h3 {
  font-weight: 700;
}
.section h3 + p {
  margin-top: -15px !important;
}
@media screen and (min-width: 768px) {
  .section h3 + p {
    margin-top: -20px !important;
  }
}
@media screen and (min-width: 1024px) {
  .section h3 + p {
    margin-top: -30px !important;
  }
}
.section p:has(a:not([href*="tel:"])) {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section p a:not([href*="tel:"]) {
  width: 100%;
  max-width: 323px;
  height: 50px;
  background-color: var(--ac);
  border: 1px solid var(--ac);
  color: #fff;
  font-weight: 700;
  --ls: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 15px;
}
.section p a:not([href*="tel:"])::before {
  display: none;
}
.section p a:not([href*="tel:"])::after {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M15.334 12.1289L15.7461 12.501L15.334 12.873L10.334 17.373L9.66406 16.6289L14.25 12.501L9.66406 8.37305L10.334 7.62891L15.334 12.1289Z" fill="%23CA0010"/></svg>') center/contain no-repeat;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.section p a:not([href*="tel:"]):hover {
  background-color: #fff;
  color: var(--ac);
}

/*------------------------------------------------------
    footer
-------------------------------------------------------*/
.footer {
  padding: 100px 0 20px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 100px 0 100px;
  }
}
.footer__sitelogo {
  margin-bottom: 25px;
}
.footer__sitelogo_link {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.footer__sitelogo_img {
  width: 120px;
  display: block;
}
.footer__sitelogo_txt {
  font-weight: 700;
  --lh: 1.2;
}
.footer__sitelogo_txt strong {
  font-size: 157.14%;
}
@media screen and (min-width: 768px) {
  .footer__sitelogo {
    margin-bottom: 60px;
  }
  .footer__sitelogo_img {
    width: 110px;
  }
  .footer__sitelogo_txt {
    font-size: 87.5%;
  }
}
.footer__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 55px;
}
@media screen and (min-width: 768px) {
  .footer__row {
    flex-direction: row;
    justify-content: space-between;
    grid-gap: 40px;
  }
}
.footer__address_list dt {
  margin-bottom: 5px;
  font-size: 114.29%;
  font-weight: 500;
  display: flex;
  align-items: center;
  grid-gap: 5px;
}
.footer__address_list dt::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: var(--text);
  display: block;
  flex-shrink: 0;
}
.footer__address_list dd {
  padding-left: 20px;
}
.footer__address_list dd:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .footer__address {
    font-size: 87.5%;
    flex-shrink: 0;
  }
}
.footer__nav {
  width: 100%;
}
.footer__nav_list {
  width: 100%;
  font-size: 114.29%;
  font-weight: 500;
  --ls: 0.05em;
  display: grid;
  grid-gap: 30px;
}
.footer__nav_list a {
  position: relative;
}
.footer__nav_list a::before {
  content: "";
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF5645 0%, #FFB941 108.62%);
  display: block;
  position: absolute;
  bottom: -8px;
  left: 12px;
  transition: var(--speed);
}
.footer__nav_list a:hover {
  color: var(--main);
  opacity: 1;
}
.footer__nav_list a:hover::before {
  width: 16px;
}
.footer__nav_list .menu_btn {
  width: 100%;
  padding: 0 10px;
  margin-top: 30px;
}
.footer__nav_list .menu_btn > a {
  width: 100%;
  max-width: 323px;
  height: 50px;
  background-color: var(--ac);
  border: 1px solid var(--ac);
  color: #fff;
  font-weight: 700;
  --ls: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 15px;
}
.footer__nav_list .menu_btn > a::before {
  display: none;
}
.footer__nav_list .menu_btn > a::after {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M15.334 12.1289L15.7461 12.501L15.334 12.873L10.334 17.373L9.66406 16.6289L14.25 12.501L9.66406 8.37305L10.334 7.62891L15.334 12.1289Z" fill="%23CA0010"/></svg>') center/contain no-repeat;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.footer__nav_list .menu_btn > a:hover {
  background-color: #fff;
  color: var(--ac);
}
@media screen and (min-width: 768px) {
  .footer__nav {
    width: auto;
    max-width: 826px;
    font-size: 87.5%;
  }
  .footer__nav_list {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 32px 35px;
  }
  .footer__nav_list .menu_btn {
    margin-top: 20px;
    padding: 0;
  }
}
@media screen and (min-width: 1200px) {
  .footer__nav {
    padding-right: min(50vw - 500px, 100px);
  }
}
.footer__copyright {
  margin-top: 60px;
  font-size: 71.43%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 100px;
    font-size: 81.25%;
  }
}
.footer__pageTop {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border: 1px solid var(--ac);
  border-radius: 50%;
  color: var(--ac);
  font-size: 12px;
  --lh: 1.285;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -70px;
  right: 0;
  z-index: 1000;
  transition: var(--speed);
}
.footer__pageTop::before {
  content: "";
  width: 12px;
  height: 12px;
  background: url('data:image/svg+xml;charset=utf8,<svg width="9" height="9" viewBox="0 0 9 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.144531 6.32422L4.49805 1.9707L8.85156 6.32422L8.14453 7.03125L4.49805 3.38477L0.851562 7.03125L0.144531 6.32422Z" fill="%23CA0010"/></svg>') center/contain no-repeat;
  display: block;
}
.footer__pageTop:hover {
  background-color: var(--ac);
  color: #fff;
  opacity: 1;
}
.footer__pageTop:hover::before {
  background: url('data:image/svg+xml;charset=utf8,<svg width="9" height="9" viewBox="0 0 9 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.144531 6.32422L4.49805 1.9707L8.85156 6.32422L8.14453 7.03125L4.49805 3.38477L0.851562 7.03125L0.144531 6.32422Z" fill="%23fff"/></svg>') center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .footer__pageTop {
    width: 92px;
    height: 88px;
    font-size: 14px;
    top: 0;
  }
}
.footer__entryBtn {
  width: 100%;
  height: 40px;
  background: linear-gradient(180deg, #EE4F5C 0%, #C0000F 50%, #B6000E 100%);
  border-top: 1px solid #FFF;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-weight: 700;
  --ls: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 15px;
  position: fixed;
  bottom: 0;
  left: 0;
}
.footer__entryBtn::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #fff url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M15.334 12.1289L15.7461 12.501L15.334 12.873L10.334 17.373L9.66406 16.6289L14.25 12.501L9.66406 8.37305L10.334 7.62891L15.334 12.1289Z" fill="%23CA0010"/></svg>') center/contain no-repeat;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}

/*------------------------------------------------------
  animation
-------------------------------------------------------*/
.js-fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition-duration: 0.5s;
}
.js-fadeIn.on {
  opacity: 1;
  transform: translateY(0);
}