:root {
  --header-height: 96px;
  --z-index-header: 100;
  --z-index-nav: 99;
}

@media (width <= 768px) {
  :root {
    --header-height: 48px;
  }
}

.sbw-brand .kv,
#interview {
  margin-block-start: var(--header-height);
}

.tcoHeader *,
.tcoFooter * {
  box-sizing: border-box;
}

.tcoHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: var(--z-index-header);
  background-color: #fff;
  height: var(--header-height);
}

.tcoHeader ul li,
.tcoFooter ul li {
  list-style: none;
}

.tcoHeader a,
.tcoFooter a {
  transition: opacity 0.3s;
}
.tcoHeader a:hover,
.tcoFooter a:hover {
  opacity: 0.7;
}

.tcoHeader__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  position: relative;
  padding-inline: 40px;
}

@media (width <= 768px) {
  .tcoHeader__inner {
    padding-inline: 20px;
  }
}

.tcoHeader__logo {
  width: 152px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tcoHeader__logo a {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
}

@media (width <= 768px) {
  .tcoHeader__logo {
    width: 91px;
  }
}

.tcoHeader__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.tcoHeader__sns {
}

.tcoHeader__snsItems {
  display: flex;
  align-items: center;
  gap: 34px;
}

@media (width <= 768px) {
  .tcoHeader__snsItems {
    display: none;
  }
}

.tcoHeader__snsItem a {
  display: block;
}

.tcoHeader__snsItem:nth-child(1) a {
  width: 35px;
}
.tcoHeader__snsItem:nth-child(2) a {
  width: 50px;
}
.tcoHeader__snsItem:nth-child(3) a {
  width: 30px;
}

.tcoHeader__snsItem a img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.tcoHeader__navBtn {
  width: 30px;
  aspect-ratio: 24 / 22;
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.tcoHeader__navBtn .line {
  display: block;
  width: 100%;
  height: 2px;
  background: #c10671;
  position: absolute;
  transition: all 0.3s;
}
.tcoHeader__navBtn .line:nth-child(1) {
  top: 0;
}
.tcoHeader__navBtn .line:nth-child(2) {
  top: 36%;
}
.tcoHeader__navBtn .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  display: block;
  line-height: 1;
}
.tcoHeader__navBtn[aria-expanded="true"] .line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.tcoHeader__navBtn[aria-expanded="true"] .line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.tcoHeader__navBtn[aria-expanded="true"] .text {
  opacity: 0;
}
.tcoHeader__navBtn .text img {
  display: block;
  margin: 0 auto;
}

@media (width <= 768px) {
  .tcoHeader__navBtn {
    width: 24px;
  }
  .tcoHeader__navBtn .line {
    height: 1px;
  }
}

.tcoHeader__cart {
  position: relative;
  margin: 0 auto 0 15px;
}

.tcoHeader__cart img {
  display: block;
}

.tcoHeader__nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  max-width: 488px;
  height: calc(100vh - var(--header-height));
  background: #ffe9f3;
  z-index: var(--z-index-nav);
  padding-block: 0 150px;
  padding-inline: 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
  overflow-y: auto;
}

.tcoHeader__nav[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (width <= 768px) {
  .tcoHeader__cart {
    margin-left: 14px;
  }

  .tcoHeader__cart img {
    width: 25px;
    height: auto;
  }

  .tcoHeader__nav {
    max-width: 100%;
    padding-inline: 20px;
  }
}

.tcoHeader__navItems {
}

.tcoHeader__navItem {
  border-bottom: 2px solid #fff;
}

.tcoHeader__navItem a, .tcoHeader__navItem span {
  display: block;
  gap: 20px;
  padding-block: 30px;
  position: relative;
  font-size: 24px;
  font-weight: 500;
  line-height: calc(35 / 24);
  color: #e3007c;
  text-decoration: none;
  transition: text-decoration 0.3s;
}
.tcoHeader__navItem a.lv3{
	font-size: 20px;
	line-height: calc(20 / 24);
	margin-left: 20px;
}
@media (width <= 768px) {
  .tcoHeader__navItem a, .tcoHeader__navItem span {
    font-size: 18px;
    padding-block: 24px;
  }
}

.tcoHeader__navItem a::before,
.tcoHeader__navItem a::after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  transform-origin: center right;
}
.tcoHeader__navItem a::before {
  transform: translate(0%, -50%) rotate(45deg);
}
.tcoHeader__navItem a::after {
  transform: translate(0%, -50%) rotate(-45deg);
}

@media (width <= 768px) {
  .tcoHeader__navItem a::before,
  .tcoHeader__navItem a::after {
    width: 8px;
    height: 1px;
  }
}
.tcoHeader__navItem a:hover {
  text-decoration: underline;
}

.tcoHeader__banner {
  width: 360px;
  margin: 40px auto 0;
}

.tcoHeader__banner a {
  display: block;
  border: 2px solid #fff;
}

.tcoHeader__banner img {
  display: block;
  width: 100%;
  height: auto;
}

.tcoHeader__navBottom {
  margin-block-start: 35px;
}

@media (width <= 768px) {
  .tcoHeader__banner {
    width: 275px;
    margin-top: 30px;
  }

  .tcoHeader__banner a {
    border-width: 1px;
  }

  .tcoHeader__navBottom {
    margin-block-start: 40px;
  }
}

.tcoHeader__navBottomText {
  font-size: 20px;
  font-weight: 500;
  line-height: calc(29 / 20);
  letter-spacing: 0.1em;
  color: #3B3B3B;
  text-align: center;
}

@media (width <= 768px) {
  .tcoHeader__navBottomText {
    font-size: 18px;
  }
}

.tcoHeader__navSnsItems {
  margin-block-start: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
  max-width: fit-content;
  margin-inline: auto;
  padding-block: 5px;
  padding-inline: 24px;
  background: #fff;
  border-radius: 68px;
}

@media (width <= 768px) {
  .tcoHeader__navSnsItems {
    margin-block-start: 10px;
    padding-block: 8px;
    padding-inline: 36px;
    border-radius: 34px;
  }
}

.tcoHeader__navSnsItem:nth-child(1) {
  width: 35px;
}
.tcoHeader__navSnsItem:nth-child(2) {
  width: 50px;
}
.tcoHeader__navSnsItem:nth-child(3) {
  width: 30px;
}
.tcoHeader__navSnsItem:nth-child(4) {
  width: 37px;
}

.tcoHeader__navSnsItem a {
  display: block;
}
.tcoHeader__navSnsItem img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.tcoFooter {
  background: #fff;
}

.tcoFooter__inner {
  padding-inline: 20px;
  max-width: 1420px;
  margin-inline: auto;
}

.tcoFooter__contents {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}

@media (width <= 1280px) {
  .tcoFooter__contents {
    padding-inline-start: 0;
  }
}

@media (width <= 1080px) {
  .tcoFooter__contents {
    grid-template-columns: 1fr;
  }
}

.tcoFooter__content {
  position: relative;
  padding-inline: 20px;
  padding-block: 120px;
}

@media (width <= 1080px) {
  .tcoFooter__content {
    padding-block: 80px;
    padding-inline: 0;
  }
}

@media (width <= 768px) {
  .tcoFooter__content {
    padding-block: 40px;
  }
}

.tcoFooter__content:nth-child(2)::before {
  content: "";
  display: block;
  width: 1px;
  height: 233px;
  background: #C4C4C4;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media (width <= 1080px) {
  .tcoFooter__content:nth-child(2)::before {
    width: calc(100% - 40px);
    height: 1px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.tcoFooter__title {
  font-size: 36px;
  font-weight: 500;
  line-height: calc(52 / 36);
  color: #3B3B3B;
  text-align: center;
}

@media (width <= 768px) {
  .tcoFooter__title {
    font-size: 22px;
  }
}

.tcoFooter__line {
  display: block;
  margin-block-start: 22px;
  width: 80px;
  margin-inline: auto;
}

@media (width <= 768px) {
  .tcoFooter__line {
    margin-block-start: 20px;
    width: 60px;
  }
}

.tcoFooter__line img {
  display: block;
  width: 100%;
  height: auto;
}

.tcoFooter__small {
  margin-block-start: 20px;
  font-size: 20px;
  line-height: calc(30 / 20);
  text-align: center;
  color: #3B3B3B;
}

@media (width <= 768px) {
  .tcoFooter__small {
    font-size: 15px;
    letter-spacing: -0.03em;
  }
}

.tcoFooter__snsItems {
  margin-block-start: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

@media (width <= 768px) {
  .tcoFooter__snsItems {
    margin-block-start: 20px;
    gap: 55px;
  }
}

.tcoFooter__snsItem {
  width: 80px;
}

@media (width <= 768px) {
  .tcoFooter__snsItem {
    width: 50px;
  }
}

.tcoFooter__snsItem:nth-child(2) {
  width: 70px;
}

@media (width <= 768px) {
  .tcoFooter__snsItem:nth-child(2) {
    width: 40px;
  }
}

.tcoFooter__snsItem a {
  display: block;
}

.tcoFooter__snsItem img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}