@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

.hide-sp {
  display: block;
}
@media (max-width: 767px) {
  .hide-sp {
    display: none;
  }
}

body.is-menuOpen {
  overflow: hidden;
}

/*============================
.l-header
============================*/
.l-header {
  width: 100%;
  height: 100px;
  background-color: #fff;
}

.l-header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
  padding: 0 40px;
}

.l-header__logo {
  flex-shrink: 0;
}

.l-header__logoLink {
  display: block;
}

.l-header__logoImg {
  display: block;
  width: 323px;
  height: 49px;
}

.l-header__menuPc {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex: 1 0 0;
}

.l-header__nav {
  flex-shrink: 0;
}

.l-header__navList {
  display: flex;
  align-items: center;
  gap: 0 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-header__navLink {
  display: block;
  padding: 16px;
  font-family: "42dot Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.28px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}
.l-header__navLink:hover {
  opacity: 0.7;
}

.l-header__action {
  flex-shrink: 0;
}

.l-header__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 30px;
  border-radius: 20px;
  background-color: #a83232;
  text-decoration: none;
}
.l-header__contact:hover {
  opacity: 0.7;
}

.l-header__contactIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.l-header__contactIcon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.l-header__contactTxt {
  font-family: "42dot Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.28px;
  color: #fff;
  white-space: nowrap;
}

.l-header__menuSp {
  display: none;
}
.l-header__menuPanel {
  display: none;
}

/* sp: max-width 767px */
@media (max-width: 767px) {
  .l-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 74px;
  }

  .l-header__inner {
    justify-content: space-between;
    gap: 0;
    padding: 0 2px 0 16px;
  }

  .l-header__logoImg {
    width: 200px;
    height: 30px;
  }

  .l-header__menuPc {
    display: none;
  }

  .l-header__menuSp {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .l-header__mailSp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 50px;
    text-decoration: none;
  }

  .l-header__mailSpIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 50px;
  }

  .l-header__mailSpIcon img {
    display: block;
    width: 26px;
    height: auto;
  }

  .l-header__menuBtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 52px;
    height: 44px;
    padding: 14px;
    border: none;
    background: none;
    cursor: pointer;
  }

  .l-header__menuBtnLine {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .l-header__menuBtn[aria-expanded="true"] .l-header__menuBtnLine:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .l-header__menuBtn[aria-expanded="true"] .l-header__menuBtnLine:nth-child(2) {
    opacity: 0;
  }

  .l-header__menuBtn[aria-expanded="true"] .l-header__menuBtnLine:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .l-header__menuPanel {
    display: block;
    position: fixed;
    top: 74px;
    left: 0;
    z-index: 90;
    width: 100%;
    height: calc(100dvh - 74px);
    overflow-y: auto;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }

  .l-header__menuPanel.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .l-header__menuPanelInner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 24px 10px 40px;
  }

  .l-header__menuNav {
    width: 100%;
  }

  .l-header__menuList {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .l-header__menuLink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    padding: 0 0 0 10px;
    border-bottom: 1px solid #d3d3d3;
    font-family: "42dot Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.12px;
    color: #333;
    text-decoration: none;
  }

  .l-header__menuLinkIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
  }

  .l-header__menuLinkIcon img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .l-header__menuContact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    max-width: 100%;
    height: 55px;
    border: 1px solid #d3d3d3;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0 5px 0 #d3d3d3;
    text-decoration: none;
  }

  .l-header__menuContactTxt {
    font-family: "42dot Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.12px;
    color: #333;
    text-align: center;
  }
}

/*============================
.l-mv
============================*/
.l-mv {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  background-color: #fff;
}

.l-mv__inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 144px;
}

.l-mv__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 65px;
  width: 395px;
}

.l-mv__body {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.l-mv__ttl {
  margin: 0;
  font-family: "42dot Sans", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.44px;
  color: #333;
}

.l-mv__lead {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.48px;
  color: #333;
  white-space: nowrap;
}

.l-mv__tagline {
  margin: 0;
  padding-top: 8px;
  font-family: "42dot Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.36px;
  color: #bdbbbb;
}

.l-mv__scroll {
  position: relative;
  width: 48px;
  height: 89px;
}

.l-mv__scrollTxt {
  margin: 0 0 15px;
  font-family: "42dot Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.48px;
  color: #333;
  white-space: nowrap;
}

.l-mv__scrollCircle {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid #333;
  border-radius: 50%;
}

.l-mv__scrollLine {
  position: absolute;
  left: 50%;
  bottom: 16px;
  display: block;
  width: 1px;
  height: 16px;
  background-color: #333;
  transform: translateX(-50%);
}

.l-mv__scrollLine::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: translateX(-50%) rotate(45deg);
}

.l-mv__graphic {
  position: absolute;
  z-index: 0;
  width: 682.4px;
  height: 682.4px;
}

.l-mv__graphic--01 {
  top: -127px;
  left: 455px;
}

.l-mv__graphic--02 {
  top: 71px;
  left: 728px;
}

.l-mv__graphicImg {
  display: block;
  width: 100%;
  height: 100%;
}

/* sp: max-width 767px */
@media (max-width: 767px) {
  .l-mv {
    height: 566px;
  }

  .l-mv__inner {
    align-items: flex-start;
    padding: 68px 32px 0;
  }

  .l-mv__content {
    width: 309px;
    gap: 161px;
  }

  .l-mv__body {
    gap: 24px;
  }

  .l-mv__ttl {
    font-size: 32px;
    letter-spacing: 0.96px;
  }

  .l-mv__graphic {
    width: 266.85px;
    height: 266.85px;
  }

  .l-mv__graphic--01 {
    top: 153.43px;
    left: 69.58px;
  }

  .l-mv__graphic--02 {
    top: 236.93px;
    left: 161.15px;
  }
}

/*============================
.l-principles
============================*/
.l-principles {
  position: relative;
  width: 100%;
  padding: 120px 0;
  overflow: hidden;
}

.l-principles__bg {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.l-principles__bgImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-principles__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.23);
}

.l-principles__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 80px;
}

.l-principles__card {
  width: 100%;
  max-width: 1100px;
  padding: 48px 40px;
  border-radius: 15px;
  background-color: #fff;
  text-align: center;
}

.l-principles__ttl {
  margin: 0 0 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.7;
  letter-spacing: 2.08px;
  color: #333;
}

.l-principles__txt {
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1.28px;
  color: #333;
}

.l-principles__txt p {
  margin: 0 0 24px;
}

.l-principles__txt p:last-child {
  margin-bottom: 0;
}

/* sp: max-width 767px */
@media (max-width: 767px) {
  .l-principles {
    padding: 80px 0;
  }

  .l-principles__inner {
    padding: 0 24px;
  }

  .l-principles__card {
    padding: 40px 24px;
  }

  .l-principles__ttl {
    font-size: 20px;
    letter-spacing: 1.6px;
  }
  .l-principles__txt p {
    text-align: left;
  }
}

/*============================
.l-service
============================*/
.l-service {
  position: relative;
  width: 100%;
  padding: 120px 0 120px;
  overflow: hidden;
  background-color: #fff;
}

.l-service__deco {
  position: absolute;
  z-index: 0;
  top: 222px;
  left: 0;
  width: 100%;
  height: 1520px;
}

.l-service__graphic {
  position: absolute;
  width: 800px;
  height: 800px;
}

.l-service__graphic--top {
  top: -280px;
  right: 0;
}

.l-service__graphic--bottom {
  top: 1040px;
  right: 0;
}

.l-service__graphicImg {
  display: block;
  width: 100%;
  height: 100%;
}

.l-service__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.l-service__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
  text-align: center;
}

.l-service__headingTtl {
  margin: 0;
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 2.56px;
  color: #333;
}

.l-service__headingSub {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.44px;
  color: #666;
  text-transform: uppercase;
}

.l-service__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0 80px;
}

.l-service__group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.l-service__itemHead {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 32px;
}

.l-service__itemNum {
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 0.88;
  color: #c97878;
  opacity: 0.45;
}

.l-service__itemTtl {
  flex: 1 0 0;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 2.56px;
  color: #333;
}

.l-service__overview {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.l-service__overviewLabel {
  margin: 0;
  font-family: "42dot Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.28px;
  color: #a83232;
}

.l-service__overviewTxt {
  margin: 0;
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1.6px;
  color: #333;
}

.l-service__overviewTxt--lg {
  font-size: 22px;
  letter-spacing: 1.76px;
}

.l-service__cards {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
}

.l-service__cards--two {
  gap: 40px;
}

.l-service__cards--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 37px 40px;
  margin-bottom: 0;
}

.l-service__card {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  border: 1px solid #999;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 5px 0 #8e8e8e;
}

.l-service__card--center {
  align-items: center;
  text-align: center;
}

.l-service__cardTitleWrap {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.l-service__cardIcon {
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 4px;
  background-color: #333;
  flex-shrink: 0;
}

.l-service__cardTitle {
  margin: 0;
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1.6px;
  color: #333;
}

.l-service__cardTxt {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.l-service__cardTxt--loose {
  line-height: 2;
}

.l-service__cardBody {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1.28px;
  color: #333;
}

.l-service__cardBody p {
  margin: 0 0 27px;
}

.l-service__cardBody p.l-service__cardBodyLast {
  margin-bottom: 0;
}

/* sp: max-width 767px */
@media (max-width: 767px) {
  .l-service {
    padding: 80px 0;
  }

  .l-service__deco {
    top: 0;
    left: 0;
    width: 375px;
    height: 100%;
  }

  .l-service__graphic--top {
    top: -93px;
    left: 106px;
  }

  .l-service__graphic--bottom {
    width: 760px;
    height: 760px;
    top: 2249px;
    left: 106px;
  }

  .l-service__list {
    padding: 0 24px;
  }

  .l-service__overview {
    margin-bottom: 0;
  }

  .l-service__cards {
    flex-direction: column;
    margin-bottom: 32px;
  }

  .l-service__cards--two {
    gap: 24px;
    margin-bottom: 0;
  }

  .l-service__cards--grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .l-service__card {
    padding: 24px;
  }
  .l-service__itemHead {
    display: block;
  }
  .l-service__itemTtl {
    margin: 16px 0 0;
    line-height: 1.4;
  }
}

/*============================
.l-achievements
============================*/
.l-achievements {
  width: 100%;
  padding: 120px 0;
  background-color: #f6f6f6;
}

.l-achievements__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.l-achievements__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.l-achievements__headingTtl {
  margin: 0;
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 2.56px;
  color: #333;
}

.l-achievements__headingSub {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.44px;
  color: #666;
  text-transform: uppercase;
}

.l-achievements__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.l-achievements__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 353px;
  padding: 70px 58px;
  border-radius: 15px;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 1.44px;
  color: #333;
}

.l-achievements__cardLbl {
  margin: 0;
  font-size: 18px;
  line-height: 1;
}

.l-achievements__cardValue {
  margin: 0;
  font-size: 18px;
  line-height: 1;
}

.l-achievements__cardValueNum {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 2.24px;
  color: #a83232;
}

/* sp: max-width 767px */
@media (max-width: 767px) {
  .l-achievements {
    padding: 80px 0;
  }

  .l-achievements__inner {
    padding: 0 24px;
  }

  .l-achievements__list {
    flex-direction: column;
  }

  .l-achievements__card {
    width: 100%;
    padding: 40px 24px;
  }
}

/*============================
.l-message
============================*/
.l-message {
  position: relative;
  width: 100%;
  padding: 120px 0;
  overflow: hidden;
  background-color: #fff;
}

.l-message__graphic {
  position: absolute;
  z-index: 0;
  top: 90px;
  right: 0;
  width: 800px;
  height: 800px;
}

.l-message__graphicImg {
  display: block;
  width: 100%;
  height: 100%;
}

.l-message__logo {
  position: absolute;
  z-index: 2;
  top: 80px;
  left: 1125px;
  width: 90px;
  height: 100px;
}

.l-message__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  text-align: center;
}

.l-message__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.l-message__headingTtl {
  margin: 0;
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 2.56px;
  color: #333;
}

.l-message__headingSub {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.44px;
  color: #666;
  text-transform: uppercase;
}

.l-message__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
}

.l-message__lead {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1.28px;
  color: #333;
}

.l-message__txt {
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2.8;
  letter-spacing: 1.28px;
  color: #333;
}

.l-message__txt p {
  margin: 0 0 45px;
}

.l-message__txt p:last-child {
  margin-bottom: 0;
}

/* sp: max-width 767px */
@media (max-width: 767px) {
  .l-message {
    padding: 80px 0;
  }

  .l-message__graphic {
    top: 139px;
    left: 130px;
    width: 760px;
    height: 760px;
    opacity: 0.12;
  }

  .l-message__logo {
    top: 32px;
    left: 259.5px;
    width: 88.73px;
    height: 98px;
  }

  .l-message__inner {
    padding: 0 24px;
  }

  .l-message__heading {
    margin-top: 70px;
  }

  .l-message__body {
    gap: 32px;
  }
  .l-message__txt p {
    text-align: left;
  }
}

/*============================
.l-about
============================*/
.l-about {
  width: 100%;
  padding: 120px 0;
  background-color: #f6f6f6;
}

.l-about__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 60px;
  text-align: center;
}

.l-about__headingTtl {
  margin: 0;
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 2.56px;
  color: #333;
}

.l-about__headingSub {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.44px;
  color: #666;
  text-transform: uppercase;
}

.l-about__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.l-about__row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid #d3d3d3;
}

.l-about__label {
  flex-shrink: 0;
  width: 172px;
  margin: 0;
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1.28px;
  color: #333;
}

.l-about__value {
  flex: 1 0 0;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1.28px;
  color: #333;
}

/* sp: max-width 767px */
@media (max-width: 767px) {
  .l-about {
    padding: 80px 0;
  }

  .l-about__heading {
    margin-bottom: 40px;
  }

  .l-about__list {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 24px;
  }

  .l-about__label {
    width: 80px;
  }
}

/*============================
.l-access
============================*/
.l-access {
  width: 100%;
  padding: 120px 0;
  background-color: #fff;
}

.l-access__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 896px;
  margin: 0 auto;
  padding: 0 80px;
}

.l-access__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.l-access__headingTtl {
  margin: 0;
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 2.56px;
  color: #333;
}

.l-access__headingSub {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.44px;
  color: #666;
  text-transform: uppercase;
}

.l-access__map {
  display: block;
  width: 100%;
  aspect-ratio: 627 / 420;
  background-color: #c4c4c4;
}

.l-access__address {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

/* sp: max-width 767px */
@media (max-width: 767px) {
  .l-access {
    padding: 80px 0;
  }

  .l-access__inner {
    padding: 0 24px;
  }
}

/*============================
.l-initiatives
============================*/
.l-initiatives {
  width: 100%;
  padding: 120px 0;
  background-color: #f6f6f6;
}

.l-initiatives__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.l-initiatives__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.l-initiatives__headingTtl {
  margin: 0;
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 2.56px;
  color: #333;
}

.l-initiatives__headingSub {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.44px;
  color: #666;
  text-transform: uppercase;
}

.l-initiatives__lead {
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-family: "42dot Sans", sans-serif;
  color: #333;
}

.l-initiatives__leadTtl {
  margin: 0;
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 2.24px;
}

.l-initiatives__leadTxt {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1.28px;
}

.l-initiatives__leadTxt p {
  margin: 0;
}

.l-initiatives__cards {
  display: contents;
}

.l-initiatives__card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 32px;
  border: 1px solid #999;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 5px 0 #8e8e8e;
}

.l-initiatives__cardIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 124px;
  height: 124px;
}

.l-initiatives__cardIcon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.l-initiatives__cardBody {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 12px;
  color: #333;
}

.l-initiatives__cardTitleWrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 1.76px;
}

.l-initiatives__cardNum {
  flex-shrink: 0;
}

.l-initiatives__cardTitle {
  flex: 1 0 0;
  margin: 0;
}

.l-initiatives__cardTxt {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1.28px;
}

/* sp: max-width 767px */
@media (max-width: 767px) {
  .l-initiatives {
    padding: 80px 0;
  }

  .l-initiatives__inner {
    padding: 0 24px;
  }

  .l-initiatives__leadTxt {
    line-height: 1.8;
  }

  .l-initiatives__cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .l-initiatives__card {
    flex-direction: column;
    align-items: center;
  }

  .l-initiatives__cardBody {
    width: 100%;
  }
}

/*============================
.l-news
============================*/
.l-news {
  width: 100%;
  padding: 120px 0;
  background-color: #fff;
}

.l-news__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 80px;
}

.l-news__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.l-news__headingTtl {
  margin: 0;
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 2.56px;
  color: #333;
}

.l-news__headingSub {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.44px;
  color: #666;
  text-transform: uppercase;
}

.l-news__list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d9d9d9;
}

.l-news__item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 33px 0;
  border-bottom: 1px solid #d9d9d9;
}

.l-news__date {
  flex-shrink: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1.44px;
  color: #666;
  text-transform: uppercase;
}

.l-news__title {
  flex: 1 0 0;
  margin: 0;
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1.28px;
  color: #333;
}

/* sp: max-width 767px */
@media (max-width: 767px) {
  .l-news {
    padding: 80px 0;
  }

  .l-news__inner {
    padding: 0 24px;
  }

  .l-news__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
  }
}

/*============================
.l-contact
============================*/
.l-contact {
  width: 100%;
  padding: 64px 0;
  background-color: #fff;
}

.l-contact__page {
  max-width: 1440px;
  margin: 0 auto;
}

.l-contact__frame {
  position: relative;
  overflow: hidden;
  width: 1120px;
  max-width: 100%;
  height: 320px;
  margin: 0 auto;
  background-color: #a83232;
}

.l-contact__graphic {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 739px;
  height: 320px;
}

.l-contact__graphicImg {
  display: block;
  width: 100%;
  height: auto;
}

.l-contact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
  height: 100%;
  text-align: center;
}

.l-contact__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.l-contact__headingTtl {
  margin: 0;
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 2.56px;
  color: #fff;
}

.l-contact__headingSub {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.44px;
  color: #fff;
  text-transform: uppercase;
}

.l-contact__lead {
  margin: 0;
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1.28px;
  color: #fff;
}

.l-contact__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 424px;
  max-width: 100%;
  height: 58px;
  padding: 20px;
  border: 1px solid #a83232;
  border-radius: 100px;
  background-color: #fff;
  box-shadow: 0 2px 0 #c97878;
  text-decoration: none;
}

.l-contact__btnTxt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1.44px;
  color: #a83232;
  white-space: nowrap;
}

.l-contact__btnIcon {
  display: block;
  width: 24px;
  height: 24px;
}

.l-contact__btnIcon img {
  display: block;
  width: 100%;
  height: 100%;
}

/* sp: max-width 767px */
@media (max-width: 767px) {
  .l-contact {
    padding: 0;
  }

  .l-contact__frame {
    width: 100%;
    height: auto;
    padding: 64px 24px;
    border-radius: 0;
  }

  .l-contact__graphic {
    top: -4.875px;
    left: -81px;
    width: 587px;
    height: 573.78px;
  }

  .l-contact__inner {
    height: auto;
    padding: 0;
  }

  .l-contact__btn {
    width: 100%;
  }
}

/*============================
.l-footer
============================*/
.l-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 60px 80px;
  background-color: #212121;
}

.l-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 1280px;
}

.l-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.l-footer__logo {
  display: block;
  width: 459px;
  max-width: 100%;
  height: auto;
}

.l-footer__address {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1.28px;
  color: #fff;
}

.l-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.l-footer__navList {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 31px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.l-footer__navLink {
  display: block;
  padding: 8px 0;
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1.28px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.l-footer__navLink:hover {
  opacity: 0.7;
}

.l-footer__copy {
  width: 100%;
  max-width: 1280px;
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1.44px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

/* sp: max-width 767px */
@media (max-width: 767px) {
  .l-footer {
    gap: 0;
    padding: 32px 0 16px;
  }

  .l-footer__top {
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
    max-width: none;
  }

  .l-footer__brand {
    gap: 32px;
    padding: 0 20px;
  }

  .l-footer__logo {
    width: 100%;
  }

  .l-footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    align-items: stretch;
    background-color: #FFFFFF;
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
  }

  .l-footer__navList,
  .l-footer__nav li {
    display: contents;
  }

  .l-footer__navLink {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 19px 10px;
    background-color: #2A2A2A;
    font-size: 14px;
    letter-spacing: 1.12px;
    text-align: center;
    white-space: normal;
  }

  .l-footer__navList li:nth-child(5) .l-footer__navLink,
  .l-footer__navList--sub .l-footer__navLink {
    grid-column: 1 / -1;
  }

  .l-footer__copy {
    padding: 30px 20px 0;
    max-width: none;
  }
}

/*============================
.p-news-title
============================*/
.p-news-title {
  width: 100%;
}

.p-news-title__head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
  padding: 10px;
  background-color: #f6f6f6;
}

.p-news-title__headTtl {
  margin: 0;
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 0.88;
  color: #333;
  white-space: nowrap;
}

.p-news-title__breadcrumb {
  padding: 26px 80px;
}

.p-news-title__breadcrumbList {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}

.p-news-title__breadcrumbLink {
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1.28px;
  color: #a83232;
  text-decoration: none;
}

.p-news-title__breadcrumbSep {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  letter-spacing: 0.54px;
  color: #d3d3d3;
}

.p-news-title__breadcrumbItem--current {
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1.28px;
  color: #333;
}

/* sp: max-width 767px */
@media (max-width: 767px) {
.p-news-title {
  width: 100%;
}

.p-news-title__head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
  padding: 10px;
  background-color: #f6f6f6;
}

.p-news-title__headTtl {
  margin: 0;
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 0.88;
  color: #333;
  white-space: nowrap;
}

.p-news-title__breadcrumb {
  padding: 10px;
}

.p-news-title__breadcrumbList {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}

.p-news-title__breadcrumbLink {
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 1.28px;
  color: #a83232;
  text-decoration: none;
}

.p-news-title__breadcrumbSep {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 10px;
  letter-spacing: 0.54px;
  color: #d3d3d3;
}

.p-news-title__breadcrumbItem--current {
  font-family: "42dot Sans", sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 1.28px;
  color: #333;
}
}

/*============================
.p-news-detail
============================*/
.p-news-detail {
  width: 100%;
  padding: 120px 0;
  color: #333;
}

.p-news-detail__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.p-news-detail__ttl {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 2.56px;
}

.p-news-detail__txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1.28px;
}

.p-news-detail__txt p {
  margin: 0 0 27px;
}

.p-news-detail__txt p:last-child {
  margin-bottom: 0;
}

.p-news-detail__sign {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1.28px;
}

.p-news-detail__sign p {
  margin: 0;
}

/* sp: max-width 767px */
@media (max-width: 767px) {
.p-news-detail {
  width: 100%;
  padding: 60px 16px;
  color: #333;
}

.p-news-detail__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.p-news-detail__ttl {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 2.56px;
}

.p-news-detail__txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1.28px;
}

.p-news-detail__txt p {
  margin: 0 0 27px;
}

.p-news-detail__txt p:last-child {
  margin-bottom: 0;
}

.p-news-detail__sign {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1.28px;
}

.p-news-detail__sign p {
  margin: 0;
}
}
