html {
	scroll-behavior: smooth;
	scroll-padding-top: 4rem;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
	font-family: var(--font-family-ja);
  font-size: 1rem;
  line-height: 2;
  color: var(--color-black);
  background-color: var(--color-white);
  width: 100%;
}

h1, h2, h3, h4, h5, h6, p {
  line-height: 2;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.container {
	max-width: 1440px;
  padding-inline: clamp(1rem, -0.408rem + 6.01vw, 5rem);
  margin-inline: auto;
  width: 100%;
}

.for-sp {
  display: none;
}
@media screen and (max-width: 767px) {
	html {
		scroll-padding-top: 3rem;
	}
  .for-pc {
    display: none!important;
  }
  .for-sp {
    display: inline-block;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .3s;
}
@media (hover:hover) {
  a:hover {
    opacity: .7;
  }
}
a:focus-visible {
  opacity: .7;
}

@media (min-width: 768px) {
   a[href^="tel:"] {
       pointer-events: none;
   }
}

/* ================
    header & drawer
================ */
.header {
  background-color: #fff;
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-inline: 2.5rem 1.6rem;
  width: 100%;
  height: 4rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.header.is-active {
  animation: activeFadeIn 0.3s forwards;
  visibility: visible;
}
@keyframes activeFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.header__logo {
  display: block;
  max-width: 12.4375rem;
  box-sizing: content-box;
  position: relative;
  z-index: 100;
  margin-left: 0rem;
  padding: 0.9rem 0.8rem 0.9rem 0.9rem;
  border-radius: 4px;

  img {
    width: 100%;
  }
}

.header__buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: fit-content;
  gap: 1rem;
}
/* fv共通ボタン */
.header__buttons {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}
.header__buttons .button {
  font-size: .875rem;
  font-weight: 400;
  padding-inline: 1rem;
  position: relative;
  height: 2.5rem;
  white-space: nowrap;
}
.header__buttons .button:nth-of-type(1) {
  padding-inline: 1.3125rem;
}
.header__buttons .button:nth-of-type(2):hover,
.header__buttons .button:nth-of-type(2):focus-visible {
  color: var(--color-brand-blue);
}
.header__buttons .button:nth-of-type(1)::before {
  content: "";
  background: url(/assets/images/common/icon-download--white.svg) no-repeat center center / contain;
  width: 1.0625rem;
  height: 1rem;
  margin-right: .5rem;
}
.header__buttons .button:hover:nth-of-type(1)::before,
.header__buttons .button:focus-visible:nth-of-type(1)::before {
  background: url(/assets/images/common/icon-download--black.svg) no-repeat center center / contain;
}
.header__buttons .button:nth-of-type(2)::before {
  content: "";
  background: url(/assets/images/common/icon-headphones--white.svg) no-repeat center center / contain;
  width: 1.0625rem;
  height: 1rem;
  margin-right: .5rem;
}
.header__buttons .button:hover:nth-of-type(2)::before,
.header__buttons .button:focus-visible:nth-of-type(2)::before {
  background: url(/assets/images/common/icon-headphones--blue.svg) no-repeat center center / contain;
}

.header__dropDownMenu {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem 2.5rem 0 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2.5rem;
  position: absolute;
  top: 4rem;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media screen and (min-width:1270px) {
	.header__dropDownMenu {
		padding-bottom: 1.5rem;
	}
}
.header__dropDownMenu.is-active {
  visibility: visible;
  animation: activeFadeIn 0.3s forwards;
}
.headerNav {
  align-items: stretch;
  display: flex;
  gap: 1.5rem;
}
.headerNavList {
  align-items: center;
  display: flex;
  gap: 1.5rem;
}
.headerNavList__item a {
  display: block;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.5rem 0.5rem 2rem 0.5rem;
}

.header-dropDownMenu--right {
  .header-dropDownMenu-right__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 1rem;
  }
  .button {
    background-color: inherit;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    font-size: 14px;
    font-weight: 400;
    height: 2.5rem;
    padding-inline: 1.625rem;
    position: relative;
  }
  .button:hover,
  .button:focus-visible {
    opacity: 1;
    background-color: var(--color-white);
    color: var(--color-black);
  }
  .button:nth-of-type(1)::before {
    content: "";
    background: url(/assets/images/common/icon-login--white.svg) no-repeat center center / contain;
    width: 1rem;
    height: 1rem;
    margin-right: .5rem;
  }
  .button:nth-of-type(1):hover::before,
  .button:nth-of-type(1):focus-visible::before {
    background: url(/assets/images/common/icon-login--black.svg) no-repeat center center / contain;
  }
  .button:nth-of-type(2)::before {
    content: "";
    background: url(/assets/images/common/icon-cart--white.svg) no-repeat center center / contain;
    width: 1rem;
    height: 1rem;
    margin-right: .5rem;
  }
  .button:nth-of-type(2):hover::before,
  .button:nth-of-type(2):focus-visible::before {
    background: url(/assets/images/common/icon-cart--black.svg) no-repeat center center / contain;
  }
  .button:nth-of-type(3)::before {
    content: "";
    background: url(/assets/images/common/icon-send--white.svg) no-repeat center center / contain;
    width: 1.0625rem;
    height: 1rem;
    margin-right: .5rem;
  }
  .button:nth-of-type(3):hover::before,
  .button:nth-of-type(3):focus-visible::before {
    background: url(/assets/images/common/icon-send--black.svg) no-repeat center center / contain;
  }
}
@media screen and (min-width:1270px) {
	.headerNavList {
		display: none;
	}
}  
/* プラスマイナス風ボタン */
.header-dropDownMenu__button {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--color-black);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  cursor: pointer;

  .line {
    display: inline-block;
    border-radius: 100px;
    background-color: var(--color-black);
    width: 1rem;
    height: .125rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s, transform 0.3s ease, top 0.3s ease;
  }
  .line:nth-of-type(1) {
    top: 0.8125rem;
  }
  .line:nth-of-type(2) {
    top: 1.1875rem;
  }
  .line:nth-of-type(3) {
    top: 1.5625rem;
  }
  &.is-active .line:nth-of-type(1) {
    top: 1.1875rem;
    opacity: 0;
  }
  &.is-active .line:nth-of-type(3) {
    top: 1.1875rem;
    opacity: 0;
  }
}

.header__buttons {
  display: flex;
  gap: 1rem;
}

/* ハンバーガーメニュー */
.drawerBtn {
  background-color: var(--color-black);
  border-radius: 50%;
  place-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  position: relative;
  z-index: 1002;
  display: none;
}
.drawerBtn__line {
  background-color: var(--color-white);
  border-radius: 0;
  display: block;
  width: 1rem;
  height: .0625rem;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s;
}
.drawerBtn__line:nth-child(1) {
  top: .6563rem;
}
.drawerBtn__line:nth-child(2) {
  top: .9688rem;
}
.drawerBtn__line:nth-child(3) {
  top: 1.2813rem;
}
.drawerBtn.is-active .drawerBtn__line:nth-child(1) {
  top: .9375rem;
  transform: translateX(-50%) rotate(45deg) ;
}
.drawerBtn.is-active .drawerBtn__line:nth-child(2) {
  transform: translateX(-50%);
  opacity: 0;
}
.drawerBtn.is-active .drawerBtn__line:nth-child(3) {
  top: .9375rem;
  transform: translateX(-50%) rotate(-45deg);
}

.drawerMenu {
  background-color: var(--color-black);
  color: var(--color-white);
  box-sizing: border-box;
  height: 100vh;
  height: 100dvh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  width: 100%;
  z-index: 1000;
  overscroll-behavior: contain;
  overflow: hidden;
}
.drawerMenu.is-active,
.drawerMenu.is-active::before {
  opacity: 1;
  visibility: visible;
}
.drawerMenu__inner {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  width: 100%;
  height: 100%;
  padding: 5.4rem 1.5rem 4rem;
  overflow-y: auto;
}
.drawerMenuList {
  display: flex;
  flex-direction: column;
  height: max-content;
  width: 100%;
}
.drawerMenu__link {
  color: var(--color-white);
  font-family: var(--fontNotoSansJp);
  font-size: 1.125rem;
  font-weight: 400;
  padding: 1.45rem 0;
  /* Reset button styles */
  background: transparent;
  border: none;
	border-bottom: 1px solid #C8CFD5;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
}

.drawerMenu__linkText {
  pointer-events: none;
}

.drawerMenu__icon {
  background-color: var(--color-white);
  border-radius: 4px;
  flex-shrink: 0;
  height: 1.5rem;
  position: relative;
  width: 1.5rem;
}
.drawerMenu__icon::before,
.drawerMenu__icon::after {
  background-color: var(--color-black, #222);
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.drawerMenu__icon::before {
  height: 2px;
  width: 12px;
}
.drawerMenu__icon::after {
  height: 12px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 2px;
}
.js-accordItem.open .drawerMenu__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.drawerMenu__sub {
  background: var(--color-white);
  padding: 1.35rem 1.5rem;
}
.drawerMenu__subList {
  display: flex;
  flex-direction: column;
}
.drawerMenu__subList a {
  align-items: center;
  color: var(--color-black, #222);
  display: flex;
  font-size: 1rem;
  justify-content: space-between;
  padding: 0.625rem 0;
  text-decoration: none;
}
.drawerMenu__subList a::after {
  content: "";
  background-image: url(/assets/images/common/icon-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
	width: .5rem;
	height: .5rem;
}

.drawerMenu-top__buttons {
  margin-block: 2.5rem;

  .button {
    width: 100%;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 400;
    height: 3.75rem;
		max-width: 20rem;
		margin-inline: auto;
  }
  .button:nth-of-type(1) {
    border-color: var(--color-white);
    margin-bottom: 1rem;
  }
  .button:nth-of-type(1)::before {
    content: "";
    background: url(/assets/images/common/icon-download--black.svg) no-repeat center center / contain;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .button:nth-of-type(2)::before {
    content: "";
    background: url(/assets/images/common/icon-headphones--white.svg) no-repeat center center / contain;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

.drawerMenu {
  .drawerMenu-bottom__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
    gap: 0.5rem;
  }
  .drawerMenu-bottom__buttons .button {
    background-color: inherit;
    border-radius: 8px;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    font-size: .875rem;
    font-weight: 400;
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    gap: 0.5rem;
    height: 98px;
    position: relative;
    width: 100%;
    text-align: center;
    padding: 1rem 0.25rem 0.75rem;
    line-height: 1.5;
  }
  .drawerMenu-bottom__buttons .button:nth-of-type(1)::before {
    display: block;
    content: "";
    background: url(/assets/images/common/icon-login--white.svg) no-repeat center center / contain;
    width: 1rem;
    height: 1rem;
    margin-inline: auto;
  }
  .drawerMenu-bottom__buttons .button:nth-of-type(2)::before {
    display: block;
    content: "";
    background: url(/assets/images/common/icon-cart--white.svg) no-repeat center center / contain;
    width: 1rem;
    height: 1rem;
    margin-inline: auto;
  }
  .drawerMenu-bottom__buttons .button:nth-of-type(3)::before {
    display: block;
    content: "";
    background: url(/assets/images/common/icon-send--white.svg) no-repeat center center / contain;
    width: 1.0625rem;
    height: 1rem;
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding: 0 0.5rem;
    height: 3rem;
    border-bottom: 1px solid #C8CFD5;
    opacity: 1;
    visibility: visible;
  }
  .header__logo {
    padding: 0.5rem 0;
    max-width: 7.125rem;
  }
  .drawerBtn {
    display: grid;
  }
}

/* ============= */
/* ファーストビューヘッダー */
/* ============= */
#header-include {
  min-height: 126.453px;
}
#header-include .header.is-active {
  min-height: 0;
}
/* ナビメニュー上 */
.fv__head-top {
  display: flex;
  justify-content: flex-end;
  column-gap: 1rem;
  row-gap: .5rem;
  padding: .5rem 2.5rem;
  border-bottom: .0625rem solid #C8CFD5;
}
.fv-head-top__buttons {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}
.fv-head-top__buttons .button {
  font-size: .75rem;
  font-weight: 400;
  height: 2rem;
  padding-inline: 1rem;
  position: relative;
}
.fv-head-top__buttons .button:nth-of-type(1)::before {
  content: "";
  background: url(/assets/images/common/icon-login--black.svg) no-repeat center center / contain;
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
}
.fv-head-top__buttons .button:hover:nth-of-type(1)::before,
.fv-head-top__buttons .button:focus-visible:nth-of-type(1)::before {
  background: url(/assets/images/common/icon-login--white.svg) no-repeat center center / contain;
}
.fv-head-top__buttons .button:nth-of-type(2)::before {
  content: "";
  background: url(/assets/images/common/icon-cart--black.svg) no-repeat center center / contain;
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
}
.fv-head-top__buttons .button:hover:nth-of-type(2)::before,
.fv-head-top__buttons .button:focus-visible:nth-of-type(2)::before {
  background: url(/assets/images/common/icon-cart--white.svg) no-repeat center center / contain;
}
.fv-head-top__buttons .button:nth-of-type(3)::before {
  content: "";
  background: url(/assets/images/common/icon-send--black.svg) no-repeat center center / contain;
  width: 1.0625rem;
  height: 1rem;
  margin-right: .5rem;
}
.fv-head-top__buttons .button:hover:nth-of-type(3)::before,
.fv-head-top__buttons .button:focus-visible:nth-of-type(3)::before {
  content: "";
  background: url(/assets/images/common/icon-send--white.svg) no-repeat center center / contain;
}

/* ナビメニュー下 */
.fv__head-bottom {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0;
  justify-content: space-between;
  padding: .5rem 2.5rem .5rem 1.6rem;
	border-bottom: 1px solid #C8CFD5;
}
.fv-head-bottom__nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.fv__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.fv-nav__lists {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  margin-left: .8rem;
} 
.fv-nav__lists--scroll {
	display: none;
}
.fv-nav__list a {
  border-bottom: 2px solid transparent;
  font-size: .9375rem;
  font-weight: 400;
  padding: 0.5em;
  transition: 0.3s;
}
.fv-nav__lists--scroll .fv-nav__list > a {
	padding: 0.4em;
}
.fv-nav__list a span {
	transition: all 0.3s;
}
@media (hover: hover) {
	.fv-nav__list a:hover {
		opacity: 1;
	}
	.fv-nav__list a:hover span {
		opacity: 0.7;
	}
}
.fv__head {
  position: relative;
}
.has-megaMenu a::after {
	opacity: 0;
	transition: all 0.3s;
}
html:not(.is-touchDevice) .has-megaMenu:hover > a,
html:not(.is-touchDevice) .has-megaMenu:focus-within > a,
.has-megaMenu.is-active > a {
	position: relative;
}
html:not(.is-touchDevice) .has-megaMenu:hover > a::after,
html:not(.is-touchDevice) .has-megaMenu:focus-within > a::after,
.has-megaMenu.is-active > a::after {
	height: 4px;
	width: calc(100% - 1em);
	background: var(--color-accent-red);
	position: absolute;
	bottom: -1.3rem;
	content: "";
	left: 50%;
	transform: translateX(-50%);
	opacity: 1;
	transition: all 0.3s;
}
html:not(.is-touchDevice) .has-megaMenu.has-megaMenu-scroll:hover > a::after,
html:not(.is-touchDevice) .has-megaMenu.has-megaMenu-scroll:focus-within > a::after,
.has-megaMenu.has-megaMenu-scroll.is-active > a::after {
	bottom: -0.85rem;
}
html:not(.is-touchDevice) .headerNavList__item.has-megaMenu:hover > a::after,
html:not(.is-touchDevice) .headerNavList__item.has-megaMenu:focus-within > a::after,
.headerNavList__item.has-megaMenu.is-active > a::after {
	bottom: 0;
}

.fv-nav__list.has-megaMenu .megaMenu,
.headerNavList__item.has-megaMenu .megaMenu {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 20px);
  padding-top: 20px;
  transition: 0.2s;
  visibility: hidden;
  width: 100%;
  z-index: 20;
}
html:not(.is-touchDevice) .fv-nav__list.has-megaMenu:hover .megaMenu,
html:not(.is-touchDevice) .fv-nav__list.has-megaMenu:focus-within .megaMenu,
.fv-nav__list.has-megaMenu.is-active .megaMenu,
html:not(.is-touchDevice) .headerNavList__item.has-megaMenu:hover .megaMenu,
html:not(.is-touchDevice) .headerNavList__item.has-megaMenu:focus-within .megaMenu,
.headerNavList__item.has-megaMenu.is-active .megaMenu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.megaMenu__inner {
  display: flex;
  margin-inline: auto;
	background: var(--color-white);
	border-bottom:  1px solid #C8CFD5;

}
a.megaMenu__top {
  align-items: center;
  background: var(--color-panel);
	color: var(--color-black);
  display: flex;
  flex: none;
  font-size: clamp(1rem, 0.912rem + 0.38vw, 1.25rem);
  line-height: 1.5;
  padding-inline: clamp(1rem, 0.472rem + 2.25vw, 2.5rem) 1.5rem;
  width: clamp(14rem, 11.887rem + 9.01vw, 20rem);
	justify-content: space-between;
}
.megaMenu__list {
  display: grid;
  gap: 1rem clamp(1.25rem, -0.07rem + 5.63vw, 5rem);
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: row;
  flex: 1;
  padding: 2rem clamp(1rem, 0.472rem + 2.25vw, 2.5rem);
	max-width: 64rem;
}
.megaMenu__list a {
  align-items: center;
  color: var(--color-black);
  display: flex;
  font-size: .9375rem;
  gap: 0.5rem;
  justify-content: space-between;
	padding: 0;
}
@media (hover: hover) {
  .megaMenu__list a:hover {
    opacity: 0.7;
  }
}
.megaMenu__arrow {
  display: inline-block;
  vertical-align: middle;
  color: var(--color-black);
  line-height: 1;
  position: relative;
  width: 0.7em;
  height: 0.1em;
  background: currentColor;
}
.megaMenu__arrow::after {
  content: '';
  width: 0.45em;
  height: 0.45em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}
@media screen and (min-width:1270px) {
	.fv-nav__lists--scroll {
		display: flex;
	}
}
@media screen and (max-width: 1024px) {
	.megaMenu__list {
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 1140px) {
  #header-include .header.is-active {
    min-height: 0;
  }
  .fv__head-top {
  padding: .5rem;
  }
	.fv__head-bottom {
	align-items: flex-end;
  padding: .5rem;
	}
	.fv__head-bottom .header__buttons {
		flex-direction: column;
		gap: 0.5rem;
	}
	.fv__head-bottom .header__buttons .button {
		white-space: nowrap;
    width: 100%;
	}
}
@media screen and (max-width: 767px) {
  #header-include {
    min-height: 3rem;
  }
}

/* ============= */
/* フッター */
/* ============= */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
}
.footer__container {
  display: flex;
  max-width: 1440px;
  margin-inline: auto;
}
.footer__contents {
  flex: 1;
  min-width: 0;
  padding-block: 7.5rem 4.277rem;
  margin-inline: 5.25rem 5.5556vw;
}

.footer__logo {
  display: block;
  width: 17.375rem;
  img {
    width: 100%;
  }
}
.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  column-gap: 5rem;
  row-gap: 3.25rem;
  margin-top: 4.5rem;
}
.footer-nav__link {
  color: #fff;
  font-size: .875rem;
  font-weight: 400;
  display: block;
  width: 100%;
  padding-block: .375rem;
}
/* 第一階層 */
.footer-nav__lists-1 {
  .line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    padding-bottom: .5rem;
    margin-bottom: 0.5rem;
  }
  .line .footer-nav__link {
    font-size: 1rem;
    font-weight: 500;
  }
}
/* 第二階層 */
.footer-nav__lists-2 {
  & > li > .footer-nav__link {
    color: rgb(255 255 255 / 0.8);
    line-height: 1.6;
  }
}

/* 最下部ナビゲーション */
.footer__nav-bottom {
  margin-top: 3.3rem;
  ul {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    column-gap: 4.25rem;
    row-gap: 0;
  }
}
.footer-nav-bottom__link,
.copyright {
  color: #fff;
  font-size: .75rem;
  font-weight: 300;
  display: block;
  padding-block: 0.5rem;
}
.copyright {
  margin-top: 3rem;
}

.footer__image {
  border-radius: 12px;
  overflow: hidden;
  flex: 0 1 48.3333%;
  position: relative;
  margin: 1rem;

  img {
    width: 100%;
    height: 101%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 1080px) {
  .footer__nav {
    grid-template-columns: 1fr;
    margin-top: 2.3rem;
    gap: 1.75rem;
  }
  .footer__image {
    img {
      position: static;
      transform: none;
    }
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 1rem;
  }
  .footer__container {
    display: block;
  }
  .footer__contents {
    flex: 1;
    min-width: 0;
    padding-block: 5rem 2.5rem;
    margin-inline: 2rem;
  }
  .footer__logo {
    width: 15rem;
  }
  .footer-nav__lists-1 {
    width: 100%;
    .line {
      display: grid;
      grid-template-columns: auto 2.5rem;
      padding-bottom: 0.45rem;
      margin-bottom: 0.7rem;
      position: relative;
    }
    .line > .footer-nav__link {
      font-size: 1rem;
      position: relative;
      width: fit-content;
    }
  }
  .footer-nav__icon {
    display: block;
    /* .line全体をクリック領域にする */
    position: absolute;
    inset: 0;
    width: 100%;
    aspect-ratio: unset;
    padding: 0;
  }
  .footer-nav__icon::after {
    content: "";
    background: url(/assets/images/common/icon-arrow--white.svg) no-repeat center center / contain;
    width: .875rem;
    height: .875rem;
    position: absolute;
    right: 0.0625rem;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    transition: transform 0.3s;
  }
  .js-accordItem.open {
    .footer-nav__icon::after {
      transform: translateY(-50%) rotate(0deg);
    }
  }
  .footer__nav-bottom ul {
    display: block;
  }
  .footer-nav-bottom__link {
    padding-block: 0.3rem;
  }
  .footer__nav-bottom,
  .copyright {
    margin-top: 2rem;
  }
  .footer__image {
    margin: 1rem 1rem 0 1rem;
  }
}

/* =============== */
/* 共通アコーディオン */
/* footer SPあり */
/* =============== */
.js-accordHeading {
  cursor: pointer;
}
.js-accordBody {
  /* JSが未実行/失敗時は[hidden]が付与されず開閉制御されないため、
     デフォルトはmax-heightで隠さず全文閲覧できる状態にしておく。
     開閉時のmax-heightはJS側が都度インラインで指定するため、
     この初期値はアニメーションに影響しない。 */
  max-height: none;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .footer-nav__lists-1 .js-accordBody {
    display: block; /* JSでhidden属性が付いていてもPCでは常に表示する */
    max-height: none;
    overflow: visible;
  }
}