@charset "utf-8";

/* =============================================================

lyt__subpage




















*  ============================================================= */

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

.lyt__subpage-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 154px;
  background-color: #e3e3dc;
}

.lyt__subpage-side-logo {
  position: absolute;
  top: 28px;
  left: 20px;
  width: 120px;
}

.lyt__subpage-side-text {
  position: absolute;
  bottom: 28px;
  left: 20px;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.lyt__subpage-conts {
  width: 88%;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .lyt__subpage {
    display: flex;
    align-items: flex-start;
  }
  .lyt__subpage-side {
    position: sticky;
    top: 0;
    flex-shrink: 0;
    align-items: flex-end;
    justify-content: center;
    width: 320px;
    height: 100dvh;
  }
  .lyt__subpage-side-logo {
    top: auto;
    bottom: 40px;
    left: 40px;
    width: 160px;
  }
  .lyt__subpage-side-text {
    top: 80px;
    bottom: auto;
    left: 40px;
    font-size: 1.4rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
  .lyt__subpage-conts {
    width: calc(100% - 320px);
    margin: 0 6.4% 0 4%;
  }
}

@media (min-width: 1200px) {
  .lyt__subpage-conts {
    margin: 0 8% 0 6.4%;
  }
}

/* =============================================================

lyt__blk




















*  ============================================================= */

.lyt__blk-40 {
  padding-top: 40px;
}

.lyt__blk-120 {
  padding-top: 120px;
}

.lyt__blk-160 {
  padding-top: 160px;
}

/* =============================================================

c-header




















*  ============================================================= */

.c-header {
  width: 100%;
  padding-top: 80px;
}

.c-header.bg {
  background-image: url("../img/common/fv-bg.png");
  background-position: right -40px top -20px;
  background-repeat: no-repeat;
  background-size: 200px;
}

@media (min-width: 1024px) {
  .c-header {
    padding-top: 160px;
  }
  .c-header.bg {
    background-size: 320px;
  }
}

.c-header__title {
  font-size: 2.8rem;
}

.c-header__title.sml {
  font-size: 2.4rem;
  line-height: 1.6;
}

.c-header__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 16px;
  background-color: #5d6960;
  border-radius: 3px;
}

.c-header__text {
  margin-top: 40px;
  font-size: 1.8rem;
  line-height: 2;
}

/* =============================================================

c-heading




















*  ============================================================= */

.c-heading__title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 2.4rem;
  line-height: 1.5;
}

.c-heading__line {
  position: relative;
  width: 100%;
  height: 1px;
  background: #d6d6d6;
}

.c-heading__line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: #5d6960;
}

/* =============================================================

c-subtitle




















*  ============================================================= */

.c-subtitle {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 44px;
  font-size: 1.5rem;
  line-height: 1.8;
}

.c-subtitle::before {
  content: "";
  width: 4px;
  border-radius: 4px;
  background: #5d6960;
}

/* =============================================================

c-text




















*  ============================================================= */

.c-text {
  margin-top: 40px;
  font-size: 1.8rem;
  line-height: 2;
}

.c-text.text-center {
  text-align: center;
}

/* =============================================================

c-button




















*  ============================================================= */

.c-button__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 1024px) {
  .c-button__wrapper {
    flex-direction: row;
  }
}

.c-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 48px 20px 24px;
  font-size: 1.8rem;
  letter-spacing: 0.16em;
  color: #5d6960;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 10px;
}

.c-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 14px;
  height: 12px;
  background: url("../img/common/icon-arrow.png") no-repeat center / contain;
  transform: translateY(-50%);
}

@media (min-width: 1024px) {
  .c-button {
    width: calc((100% - 40px) / 3);
    padding: 20px 40px 20px 16px;
  }
  .c-button::after {
    position: absolute;
    right: 16px;
    transition: transform 0.5s ease;
  }
  .c-button:hover::after {
    transform: translateY(-50%) translateX(8px);
  }
}
