/* =========================================================
  Base
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Noto Sans JP", Meiryo, Arial, sans-serif;
  line-height: 1.6;
  color: rgba(11, 27, 43, 1);
  background-color: rgba(255, 255, 255, 1);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================================================
  Header (PC)
========================================================= */
.header-container {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition:
    background-color 0.4s ease,
    box-shadow 0.4s ease;
}

.header-transparent {
  background-color: transparent;
}

.header-transparent .header-logo-scrolled {
  display: none;
}

.header-transparent .header-logo-default {
  display: block;
}

.header-transparent .header-nav-link {
  color: rgba(255, 255, 255, 0.95);
}

.header-transparent .header-cta {
  color: rgba(6, 42, 82, 1);
  background-color: rgba(255, 255, 255, 1);
}

.header-transparent .header-cta-arrow {
  color: rgba(6, 42, 82, 1);
}

.header-transparent.is-scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-transparent.is-scrolled .header-logo-default {
  display: none;
}

.header-transparent.is-scrolled .header-logo-scrolled {
  display: block;
}

.header-transparent.is-scrolled .header-nav-link {
  color: rgba(0, 0, 0, 1);
}

.header-transparent.is-scrolled .header-cta {
  color: rgba(255, 255, 255, 1);
  background-color: rgba(24, 49, 84, 1);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.header-transparent.is-scrolled .header-cta-arrow {
  color: rgba(255, 255, 255, 1);
}

.header-static {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-static .header-nav-link {
  color: rgba(0, 0, 0, 1);
}

.header-static .header-cta {
  color: rgba(255, 255, 255, 1);
  background-color: rgba(24, 49, 84, 1);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.header-static .header-cta-arrow {
  color: rgba(255, 255, 255, 1);
}

.header-wrapper {
  width: min(calc(100vw * 1366 / 1440), 100%);
  margin: 0 auto;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(100vw * 16 / 1440) calc(100vw * 50 / 1440);
}

.header-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.header-logo img {
  width: calc(100vw * 144 / 1440);
  height: calc(100vw * 62 / 1440);
  object-fit: contain;
}

.header-link-area {
  flex: 1;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(100vw * 24 / 1440);
}

.header-nav-link {
  font-size: calc(100vw * 14 / 1440);
  font-weight: 400;
  white-space: nowrap;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  position: relative;
  transition: color 0.4s ease;
}

.header-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 0;
  background-color: currentColor;
  transition: height 0.4s ease;
}

.header-nav-link:hover {
  opacity: 1;
}

.header-nav-link:hover::after {
  height: 2px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: calc(100vw * 32 / 1440);
}

.header-sns {
  display: flex;
  align-items: center;
  gap: calc(100vw * 10 / 1440);
}

.header-sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

.header-sns-link img {
  width: calc(100vw * 29 / 1440);
}

.header-sns-link:hover{
	opacity:0.5;
}

.header-sns :first-child img {
  width: calc(100vw * 41 / 1440);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(100vw * 10 / 1440);
  width: calc(100vw * 207 / 1440);
  height: calc(100vw * 50 / 1440);
  padding: calc(100vw * 8 / 1440) calc(100vw * 24 / 1440);
  border: none;
  border-radius: calc(100vw * 40 / 1440);
  font-size: calc(100vw * 14 / 1440);
  line-height: 120%;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: inset 0 calc(100vw * 4 / 1440) calc(100vw * 4 / 1440)
    rgba(0, 0, 0, 0.25);
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.4s ease,
    color 0.4s ease;
   text-align:center;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 calc(100vw * 4 / 1440) calc(100vw * 4 / 1440) rgba(0, 0, 0, 0.25),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-cta-arrow {
  font-size: calc(100vw * 10 / 1440);
  line-height: 1;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  transition: color 0.4s ease;
}
.fv-margin-adjustment {
  margin-top: calc(100vw * 95 / 1440);
}
@media (min-width: 769px) {
  .sp-menu-btn,
  .sp-drawer,
  .sp-drawer-overlay {
    display: none;
  }
}

/* =========================================================
  Header (SP)
========================================================= */
@media (max-width: 768px) {
  .fv-margin-adjustment {
    margin-top: calc(100vw * 53 / 375);
  }
  .header-link-area {
    display: none;
  }

  .header-logo img {
    width: calc(100vw * 89 / 375);
    height: calc(100vw * 38 / 375);
  }

  .header-right {
    display: none;
  }

  .header-wrapper {
    width: 100%;
  }

  .header-content {
    padding: calc(100vw * 20 / 375) calc(100vw * 20 / 375);
    position: relative;
    z-index: 20;
    max-height: calc(100vw * 53 / 375);
  }

  .sp-menu-btn {
    display: inline-flex;
    width: calc(100vw * 33 / 375);
    height: calc(100vw * 33 / 375);
    margin-left: auto;
    padding: 0;
    border: none;
    background: rgba(40, 71, 107, 1);
    position: relative;
    cursor: pointer;
    z-index: 30;
  }

  .sp-menu-btn span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw * 20 / 375);
    height: calc(100vw * 2 / 375);
    background: rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
  }

  .header-transparent .sp-menu-btn span {
    background: rgba(255, 255, 255, 1);
  }

  .header-transparent.is-scrolled .sp-menu-btn span {
    background: rgba(255, 255, 255, 1);
  }

  .header-static .sp-menu-btn span {
    background: rgba(255, 255, 255, 1);
  }

  .sp-menu-btn span:nth-child(1) {
    top: calc(100vw * 8 / 375);
  }

  .sp-menu-btn span:nth-child(2) {
    top: calc(100vw * 15 / 375);
  }

  .sp-menu-btn span:nth-child(3) {
    top: calc(100vw * 22 / 375);
  }

  body.is-open .sp-menu-btn {
    opacity: 0;
    pointer-events: none;
  }

  .sp-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 40;
  }

  body.is-open .sp-drawer-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .sp-drawer {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 0 calc(100vw * 20 / 375) calc(100vw * 120 / 375);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
  }

  body.is-open .sp-drawer {
    opacity: 1;
    visibility: visible;
  }

  .sp-drawer-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: calc(100vw * 10 / 375) 0;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 1;
  }

  .sp-drawer-logo img {
    width: calc(100vw * 75 / 375);
    height: auto;
    display: block;
  }

  .sp-drawer-close {
    width: calc(100vw * 33 / 375);
    height: calc(100vw * 33 / 375);
    border: none;
    border-radius: 0;
    background: #274564;
    color: #fff;
    font-size: calc(100vw * 36 / 375);
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .sp-drawer-nav {
    border-top: calc(100vw * 1 / 375) solid rgb(215, 215, 215);
  }

  .sp-drawer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vw * 50 / 375);
    border-bottom: calc(100vw * 1 / 375) solid rgb(215, 215, 215);
    font-size: calc(100vw * 16 / 375);
    font-weight: bold;
    color: #28476b;
    letter-spacing: 0.03em;
    line-height: 160%;
    font-family:
      "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  }

  .sp-drawer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vw * 70 / 375);
    min-height: calc(100vw * 70 / 375);
    width: auto;
    max-width: calc(100vw * 339 / 375);
    margin: calc(100vw * 30 / 375) auto 0;
    padding: 0;
    background-color: #28476b;
    color: #ffffff;
    border-radius: 0;
    font-size: calc(100vw * 16 / 375);
    font-weight: 800;
    text-decoration: none;
    box-shadow: calc(100vw * 4 / 375) calc(100vw * 4 / 375)
      calc(100vw * 4 / 375) rgba(0, 0, 0, 0.25);
    z-index: 60;
    margin-left: calc(100vw * 18 / 375);
    margin-right: calc(100vw * 18 / 375);
    font-family:
      "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
    text-align:center;
  }

  body.is-open {
    overflow: hidden;
    touch-action: none;
  }
	
.header-hamburger{
	margin-top:calc(100vw * 30 / 375);
	display:flex;
	align-items:center;
	justify-content:center;
	gap:calc(100vw * 30 / 375)
}
  .header-hamburger img{
	  width:calc(100vw * 40 / 375)
  }
}

/* =========================================================
  お問い合わせはこちら(PC)
========================================================= */
.contact-container {
  position: relative;
  background-image: url(assets/image/service-03.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.contact-wrapper {
  padding: calc(100vw * 64 / 1440) 0;
}

.contact-content {
  text-align: center;
}

.contact-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(40, 72, 108, 0.8);
  z-index: 1;
}

.contact-container > * {
  position: relative;
  z-index: 2;
}

h2.contact-title {
  font-size: calc(100vw * 36 / 1440);
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.1em;
  margin: calc(100vw * 9 / 1440) 0;
  font-family:
    "Zen Antique", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.contact-content p {
  font-size: calc(100vw * 20 / 1440);
  color: #ffffff;
  letter-spacing: 0.03em;
  padding: calc(100vw * 56 / 1440) 0;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
}

a.contact-button {
  width: calc(100vw * 300 / 1440);
  background-color: #ffffff;
  color: #28476b;
  box-shadow: calc(100vw * 4 / 1440) calc(100vw * 4 / 1440)
    calc(100vw * 4 / 1440) rgba(0, 0, 0, 0.25);
  height: calc(100vw * 70 / 1440);
  font-size: calc(100vw * 20 / 1440);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

a.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: calc(100vw * 6 / 1440) calc(100vw * 6 / 1440)
    calc(100vw * 8 / 1440) 0 rgba(0, 0, 0, 0.4);
}

@media (min-width: 769px) {
  .contact-text-sp {
    display: none;
  }
}

/* =========================================================
  お問い合わせはこちら(SP)
========================================================= */
@media (max-width: 768px) {
  .contact-container {
    position: relative;
    background-image: url(assets/image/service-03.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .contact-wrapper {
    padding-top: calc(100vw * 60 / 375);
    padding-bottom: calc(100vw * 30 / 375);
    padding-left: calc(100vw * 20 / 375);
    padding-right: calc(100vw * 20 / 375);
  }

  .contact-content {
    text-align: center;
  }

  .contact-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(40, 72, 108, 0.8);
    z-index: 1;
  }

  .contact-container > * {
    position: relative;
    z-index: 2;
  }

  h2.contact-title {
    font-size: calc(100vw * 24 / 375);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
  }

  .contact-content p {
    font-size: calc(100vw * 18 / 375);
    color: #ffffff;
    padding-top: calc(100vw * 56 / 375);
    padding-bottom: calc(100vw * 56 / 375);
  }

  a.contact-button {
    width: calc(100vw * 339 / 375);
    background-color: #ffffff;
    color: #28476b;
    box-shadow: calc(100vw * 4 / 375) calc(100vw * 4 / 375)
      calc(100vw * 4 / 375) rgba(0, 0, 0, 0.15);
    height: calc(100vw * 70 / 375);
    font-size: calc(100vw * 18 / 375);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
}

/* =========================================================
  Footer (PC)
========================================================= */
.footer-wrapper {
  padding: calc(100vw * 24 / 1440) 0 calc(100vw * 13 / 1440);
}

.footer-content {
  text-align: center;
}

.footer-logo img {
  width: calc(100vw * 247 / 1440);
  margin: 0 auto;
}

.footer-page-link-list ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: calc(100vw * 24 / 1440);
  padding: calc(100vw * 24 / 1440) 0;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.footer-sns-link-list ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: calc(100vw * 90 / 1440);
  padding: calc(100vw * 13 / 1440) 0;
}

.footer-sns-link-list img{
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

.footer-sns-link-list img:hover {
  opacity: 0.5;
}

.footer-sns-link-list ul li a img {
  width: calc(100vw * 29 / 1440);
}

.footer-sns-link-list ul li:first-child a img {
  width: calc(100vw * 41 / 1440);
}

.footer-copyright {
  text-align: center;
  padding: calc(100vw * 56 / 1440) 0 calc(100vw * 16 / 1440);
}

.footer-copyright p {
  font-size: calc(100vw * 10 / 1440);
  letter-spacing: 0.03em;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
}

/* =========================================================
  Footer (SP)
========================================================= */
@media (max-width: 768px) {
  .footer-wrapper {
    padding-top: calc(100vw * 24 / 375);
  }

  .footer-content {
    text-align: center;
    padding: 0 calc(100vw * 18 / 375);
  }

  .footer-logo img {
    width: calc(100vw * 247 / 375);
    margin: 0 auto;
  }

  .footer-page-link-list ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    --colGap: calc(100vw * 20 / 375);
    --rowGap: calc(100vw * 28 / 375);
    column-gap: var(--colGap);
    row-gap: var(--rowGap);
    padding-top: calc(100vw * 24 / 375);
    padding-bottom: calc(100vw * 24 / 375);
  }

  .footer-page-link-list ul li {
    display: flex;
    justify-content: center;
    min-width: 0;
  }

  .footer-page-link-list ul li:nth-child(1) {
    order: 1;
  }
  .footer-page-link-list ul li:nth-child(2) {
    order: 2;
  }
  .footer-page-link-list ul li:nth-child(3) {
    order: 3;
  }
  .footer-page-link-list ul li:nth-child(4) {
    order: 4;
  }
  .footer-page-link-list ul li:nth-child(5) {
    order: 5;
  }
  .footer-page-link-list ul li:nth-child(7) {
    order: 6;
  }
  .footer-page-link-list ul li:nth-child(8) {
    order: 7;
  }
  .footer-page-link-list ul li:nth-child(6) {
    order: 8;
  }
  .footer-page-link-list ul li:nth-child(9) {
    order: 9;
  }

  .footer-page-link-list ul li:nth-child(-n + 4) {
    flex: 0 0 calc((100% - (var(--colGap) * 3)) / 4);
    max-width: calc((100% - (var(--colGap) * 3)) / 4);
  }

  .footer-page-link-list ul li:nth-child(5),
  .footer-page-link-list ul li:nth-child(7),
  .footer-page-link-list ul li:nth-child(8) {
    flex: 0 0 calc((100% - (var(--colGap) * 2)) / 3);
    max-width: calc((100% - (var(--colGap) * 2)) / 3);
  }

  .footer-page-link-list ul li:nth-child(6),
  .footer-page-link-list ul li:nth-child(9) {
    flex: 0 0 calc((100% - (var(--colGap) * 1)) / 2);
    max-width: calc((100% - (var(--colGap) * 1)) / 2);
  }

  .footer-page-link-list ul li a {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    font-size: calc(100vw * 14 / 375);
    line-height: 1.4;
    padding: 0;
  }

  .footer-sns-link-list {
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
    padding-left: calc(100vw * 20 / 375);
    padding-right: calc(100vw * 20 / 375);
  }

  .footer-sns-link-list ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: calc(100vw * 20 / 375);
    padding-bottom: calc(100vw * 20 / 375);
  }

  .footer-sns-link-list ul li a img {
    width: calc(100vw * 29 / 375);
  }

  .footer-sns-link-list ul li:first-child a img {
    width: calc(100vw * 41 / 375);
  }

  .footer-copyright {
    text-align: center;
    padding-top: calc(100vw * 20 / 375);
    padding-bottom: calc(100vw * 10 / 375);
  }

  .footer-copyright p {
    font-size: calc(100vw * 10 / 375);
  }
}

/* =========================================================
  404
========================================================= */	
.not-found-fv-container {
　background-image: url(assets/image/404-fv-background.webp);
  background-size: cover;
  background-position: center;
}

.not-found-fv-content {
  padding-top: calc(100vw * 81.5 / 1440);
  padding-bottom: calc(100vw * 81.5 / 1440);
  padding-left: calc(100vw * 200 / 1440);
  padding-right: calc(100vw * 200 / 1440);
}

.not-found-fv-content h1 {
  font-size: calc(100vw * 40 / 1440);
  line-height: calc(100vw * 44 / 1440);
  font-weight: bold;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.not-found-fv-content p {
  font-size: calc(100vw * 25 / 1440);
  line-height: calc(100vw * 44 / 1440);
  color: #ffffff;
  font-family:
    "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

@media (max-width: 768px) {
  .not-found-fv-content {
    padding: calc(100vw * 23 / 375) calc(100vw * 18 / 375);
    height: calc(100vw * 95 / 375);
  }

  .not-found-fv-content h1 {
    font-size: calc(100vw * 20 / 375);
    line-height: calc(100vw * 44 / 375);
    letter-spacing: -0.12em;
  }

  .not-found-fv-content p {
    font-size: calc(100vw * 10 / 375);
    line-height: 1;
    margin: calc(100vw * -2 / 375);
  }
}

.not-found-container {
  background-color: rgba(255, 255, 255, 1);
  padding: calc(100vw * 60 / 1440) 0;
  padding-bottom:0;
  overflow-x: hidden;
}

.not-found-wrapper {
  width: calc(100vw * 1024 / 1440);
  margin: 0 auto;
  overflow-x: hidden;
}

.not-found-content {
  max-width: calc(100vw * 1024 / 1440);
  margin: 0 auto;
  box-sizing: border-box;
padding-bottom: calc(100vw * 60 / 1440);
}

.not-found-title {
  font-size: calc(100vw * 32 / 1440);
  font-weight: bold;
  color: rgba(40, 71, 107, 1);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.not-found-subtitle {
  font-size: calc(100vw * 24 / 1440);
  color: rgba(0, 0, 0, 1);
  margin: calc(100vw * 40 / 1440) 0 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.not-found-text {
  font-size: calc(100vw * 16 / 1440);
  color: rgba(0, 0, 0, 1);
  margin: calc(100vw * 50 / 1440) 0 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.back-to-top {
  margin-top: calc(100vw * 50 / 1440);
  display: flex;
  justify-content: center;
  align-items: center;
}

.back-to-top a {
  width: calc(100vw * 480 / 1440);
  height: calc(100vw * 60 / 1440);
  background-color: rgba(40, 71, 107, 1);
  color: rgba(255, 255, 255, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(100vw * 10 / 1440);
  font-weight: bold;
  font-size: calc(100vw * 18 / 1440);
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  box-shadow: calc(100vw * 4 / 1440) calc(100vw * 4 / 1440)
    calc(100vw * 4 / 1440) 0 rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.back-to-top a:hover {
  transform: translateY(-2px);
  box-shadow: calc(100vw * 6 / 1440) calc(100vw * 6 / 1440)
    calc(100vw * 8 / 1440) 0 rgba(0, 0, 0, 0.4);
}

.back-to-top .button-arrow {
  font-size: calc(100vw * 15 / 1440);
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.back-to-top .button-arrow svg {
  width: 1em;
  height: 1em;
}

@media (max-width: 768px) {
  .not-found-container {
    padding: calc(100vw * 60 / 375) 0;
	  padding-bottom:0;
  }

  .not-found-wrapper {
    padding: 0 calc(100vw * 18 / 375);
    width: 100%;
  }

  .not-found-content {
    max-width: 100%;
    padding: 0;
	  padding-bottom:calc(100vw * 60 / 375);
  }

  .not-found-title {
    font-size: calc(100vw * 32 / 375);
  }

  .not-found-subtitle {
    font-size: calc(100vw * 24 / 375);
    padding: calc(100vw * 40 / 375) 0 0;
  }

  .not-found-text {
    font-size: calc(100vw * 16 / 375);
    padding: calc(100vw * 50 / 375) 0 0;
  }

  .back-to-top {
    margin: calc(100vw * 50 / 375) 0 0;
  }
	
  .back-to-top a {
    width: calc(100vw * 339 / 375);
    height: calc(100vw * 60 / 375);
    font-size: calc(100vw * 18 / 375);
    gap: calc(100vw * 10 / 375);
    box-shadow: calc(100vw * 4 / 375) calc(100vw * 4 / 375)
      calc(100vw * 4 / 375) 0 rgba(0, 0, 0, 0.25);
  }
	
  .back-to-top .button-arrow {
    font-size: calc(100vw * 12 / 375);
  }
}

.footer-page-link-list ul li a{
	transition:0.3s;
    font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
}
.footer-page-link-list ul li a:hover{
	opacity:0.6;
	transition:0.3s;
}
@media(max-width:768px){
	.footer-page-link-list ul li a{
		font-size:14px;
    }
}