html {
  font-family: "Noto Serif JP", "Noto Sans JP";
  font-size: calc(10/375*100vw);
  color: #3A3A3A;
}

@media (min-width: 769px) {
  html {
    font-size: calc(10/1920 * 100vw);
  }

  .sp {
    display: none !important;
  }
}

@media (max-width:768px) {
  .pc {
    display: none !important;
  }
}


.no-scroll {
  overflow: hidden;
}

.header {
  width: 100%;
  height: 50px;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  z-index: 1200;
  position: fixed;
}

@media (min-width: 769px) {
  .header {
    padding: 0 5rem;
    height: 10rem;
  }
}

/* ロゴ */
.header-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.header-nav-sp {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 2.6rem;
  transform: translateX(100vw);
  transition: transform 0.3s ease;
  overflow-y: auto;
}


.header-nav-sp.is-active {
  transform: translateX(0);
}

.header-nav-pc {
  display: none;
  align-items: center;
  margin: 0 auto;
}

.header-nav-pc .headernav-link {
  color: #3A3A3A;
  text-decoration: none;
  font-size: clamp(16px, 2rem, 20px);
  transition: color 0.3s ease;
}

.header-nav-pc .headernav-link:hover {
  color: #699FC2;
}

.header-nav-pc .headernav-link span {
  display: block;
  font-size: clamp(12px, 1.6rem, 16px);
  color: #699FC2;
  margin-top: 5px;
}

.header__reservation-btn {
  display: none;
  background: #699FC2;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.header__reservation-btn:hover {
  background: #5a8ba8;
}

.headernav-contact:hover {
  background: #fff;
  color: #5a8ba8;
  border: 1px solid #5a8ba8;
}

.headernav-contact:hover .headernav-contact-link {
  color: #5a8ba8;
}

.headernav-list {
  padding: 5rem 2rem 0;
  font-size: clamp(14px, 1.6rem, 24px);
}

@media (min-width: 769px) {
  .header-logo {
    flex: 0 0 auto;
  }

  .header-nav-pc {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
  }

  .headernav-list {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    list-style: none;
    text-align: center;
    justify-content: center;
    gap: calc(100 / 1920 * 100vw);
    padding: 0;
  }

  .headernav-contact {
    flex: 0 0 auto;
    height: 6rem;
  }

  .headernav-contact-link {
    padding: 1rem;
  }
}


.headernav-item {
  width: auto;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.headernav-link {
  display: block;
  color: #3A3A3A;
  text-decoration: none;
  padding: 1rem 0;
}

.headernav-link span {
  display: block;
  color: #699FC2;
  margin-top: 5px;
}

.headernav-contact-wrap {
  text-align: center;
  padding: 2rem;
}

.headernav-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #699FC2;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  gap: 10px;
  border-radius: 50px;
  position: relative;
  width: 22%;
  max-width: 300px;
  height: 70%;
  max-height: 60px;
}



@media (max-width:768px) {
  .headernav-contact {
    display: none;
  }
}

@media (max-width:768px) {
  .header-nav-sp .headernav-contact {
    display: flex;
    margin-top: 3rem;
    width: 100%;
    max-width: 300px;
    padding: 1.5rem;
    margin: 0 auto;
    color: #fff !important;
  }

  .header-nav-sp .headernav-contact-link {
    color: #fff !important;
  }

  .header-nav-sp .headernav-contact:hover .headernav-contact-link {
    color: #699FC2 !important;
  }
}

.headernav-contact {
  margin-top: 0;
}


.headernav-contact-link {
  color: #fff;
  text-decoration: none;
  font-size: clamp(14px, 2.2rem, 24px);
  display: flex;
  align-items: center;
}

/* SP版でのフォントサイズ調整 */
@media (max-width: 768px) {
  .headernav-contact-link {
    font-size: clamp(14px, 1.6rem, 24px);
  }
}

.headernav-contact-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}

.headernav-contact-arrow img {
  width: 100%;
  height: 100%;
  display: block;
}

@media (min-width: 769px) {
  .headernav-contact-arrow {
    width: 4rem;
    height: 4rem;
  }
}




/* 右側の青四角（メニューボタン） */
.header-menu {
  width: 50px;
  height: 50px;
  background-color: #699FC2;
  border: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 1200;
}

/* ハンバーガー全体 */
.headernav-sp-icon {
  width: 34px;
  height: 27px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* 各線 */
.headernav-icon-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s;
  border-radius: 0.2rem;
}

/*ハンバーガーアイコンを×アイコンにするための記述*/
.headernav-sp-icon.is-active .headernav-icon-line:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
  /*位置調整と線の角度調整*/
}

.headernav-sp-icon.is-active .headernav-icon-line:nth-child(2) {
  opacity: 0;
}

.headernav-sp-icon.is-active .headernav-icon-line:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

.mv {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/bg_mv_sp.png);
  aspect-ratio: 375 / 667;
}

.mv-text-container {
  padding-top: 80px;
  padding-left: 10px;
  padding-right: 10px;
}

.mv-maintext {
  font-size: 2.7rem;
  line-height: 1.83;
}

@media (min-width: 769px) {
  .header-logo img {
    height: 9rem;
  }

  .header-nav-sp {
    display: none;
  }

  .header-menu {
    display: none;
  }

  .header-nav-pc {
    display: flex;
  }

  .header__reservation-btn {
    display: inline-block;
  }

  .mv {
    background-image: url(../images/bg_mv_pc.png);
    aspect-ratio: 1920 / 1080;
    position: relative;
  }

  .mv-text-container {
    padding-top: 120px;
    padding-left: 80px;
    padding-right: 80px;
  }

  .mv-maintext {
    font-size: 7rem;
    left: 9%;
    top: 50%;
    position: absolute;
    line-height: 1.5;
    text-align: center;
  }
}

.news-container {
  padding-top: 3rem;
  padding-left: 1.6rem;
  text-align: left;
}

.section-title {
  font-size: clamp(14px, 3.2rem, 36px);
}

.section-line {
  width: 2.8rem;
  background-color: #699FC2;
  display: inline-block;
  padding-top: 1px;
  margin-top: 4px;
  margin-bottom: 0.3rem;
}

.section-subtitle {
  font-size: clamp(14px, 1.6rem, 18px);
  padding-bottom: 3rem;
}


@media(min-width:769px) {
  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: clamp(14px, 1.8rem, 18px);
    padding-bottom: 6rem;
  }
}

.news-list {
  font-family: 'Noto Serif JP', serif;
  margin-left: 1.6rem;
}

.news-meta {
  display: flex;
  align-items: center;
  padding-top: 20px;
}

.news-date {
  font-family: 'Lora', serif;
  font-size: clamp(14px, 1.4rem, 16px);
}

.news-label {
  font-family: 'Lora', serif;
  font-size: clamp(10px, 1rem, 12px);
  background-color: #EAF3F6;
  padding: 0.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 50px;
}

.news-content {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(14px, 1.4rem, 16px);
  margin: 0.4rem 0 0 0;
  padding-bottom: 2.3rem;
}

.view-more {
  padding-right: 1.6rem;
  padding-bottom: 3rem;
  text-align: right;
}

.view-more a {
  display: inline-block;
  padding: 0.2rem 2rem;
  line-height: 28px;
  text-align: center;
  font-family: 'Lora', serif;
  font-size: clamp(14px, 1.4rem, 16px);
  color: #fff;
  background-color: #699FC2;
}

.view-more a:hover {
  background-color: #5a8bb0;
}

@media (min-width: 626px) {
  .news {
    margin: 0 auto;
    display: flex;
    padding: 30px 1.6rem;
    max-width: 1200px;
    gap: clamp(20px, 10.43vw - 60.3px, 140px);
  }

  .news-container {
    padding-top: 0.5rem;
    padding-left: 0;
    text-align: left;
  }

  .news-list {
    flex: 1;
    margin-left: 0;
  }

  .news-item {
    display: flex;
    align-items: flex-start;
    gap: 60px;
  }

  .news-meta {
    flex: 0 0 120px;
    padding-top: 0;
    align-items: flex-start;
    padding-top: 20px;
    gap: 30px;
  }

  .news-date {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .news-label {
    font-size: 12px;
    margin-left: 0;
  }

  .news-content {
    font-size: clamp(14px, 1.6rem, 16px);
    flex: 1;
    margin: 0;
    padding-top: 20px;
  }

  .view-more {
    padding-right: 0;
    padding-bottom: 0;
  }

  .view-more a {
    padding: 0.5rem 3rem;
    font-size: 16px;
    min-width: 120px;
  }
}


.concept {
  padding: 3rem 1.6rem;
  text-align: center;
  background-color: #EAF3F6;
}

.concept-read {
  margin: 2rem 0 2rem;
  color: #699FC2;
  font-family: 'Lora', serif;
  font-size: clamp(14px, 2rem, 24px);
  line-height: 1.5;
}

picture img {
  width: 100%;
  height: auto;
}

.lead-text {
  font-size: clamp(14px, 1.4rem, 16px);
  line-height: 2;
}

.lead-text .text {
  margin-bottom: 4rem;
  margin-top: 0;
}


@media (min-width: 769px) {
  .concept {
    display: flex;
    flex-direction: column;
    padding: 6rem 0 8rem;
  }

  .concept-container {
    text-align: center;
  }

  .concept-content {
    width: 100%;
    max-width: 2000px;
    display: flex;
    gap: calc(114 / 2000 * 100%);
    align-items: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-right: auto;
    margin-left: auto;
  }

  .concept-image {
    width: 52%;
  }

  .concept-text {
    flex: 1;
    text-align: left;
  }

  .concept-read {
    text-align: left;
    font-size: clamp(20px, 2.4rem, 24px);
  }

  .lead-text {
    font-size: 16px;
    text-align: left;
  }

  .lead-text .text {
    margin-bottom: 1.5em;
  }


}

.section-container {
  text-align: center;
}

.features {
  padding-top: 3rem;
}


.features-box {
  padding: 0 1.6rem;
  margin-bottom: 1.5rem;
}

.features-list {
  padding-bottom: 2.5rem;
}

.features-box-img {
  width: 100%;
  height: auto;
}

.features-number {
  font-size: clamp(20px, 2.4rem, 32px);
  color: #699FC2;
  font-family: 'Lora', serif;
  margin-top: 2rem;
}

.features-text {
  font-size: clamp(20px, 2rem, 24px);
  margin-top: 1.5rem;
}

.features-text-p {
  margin-top: 1.5rem;
  font-size: clamp(14px, 1.4rem, 16px);
  line-height: 2;
}



@media (min-width: 769px) {
  .features {
    padding: 6rem 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .features-box {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }

  .features-list {
    display: flex;
    gap: 7rem;
    align-items: center;
    margin-bottom: 60px;
  }

  .features-box-img {
    flex: 0 0 50%;
    padding: 0;
    margin-bottom: 0;
    aspect-ratio: 600 / 340;
    width: 50%;
  }

  .features-content {
    flex: 1;
    text-align: left;
  }

  .features-number {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 15px;
  }

  .features-text {
    font-size: clamp(20px, 2.4rem, 24px);
    margin-top: 0;
    margin-bottom: 15px;
  }

  .features-text-p {
    font-size: clamp(14px, 1.6rem, 16px);
  }




  .features-list:nth-child(2) {
    flex-direction: row-reverse;
  }
}

.service {
  padding: 3rem 1.6rem;
  text-align: center;
  background-color: #EAF3F6;
}

.service-list {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-list li {
  text-align: center;
  position: relative;
}

.service-card {
  background: #fff;
  padding-bottom: 4rem;
}

.card-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10rem;
  height: 10rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2rem;
  z-index: 1;
  bottom: 26%;
}

.card-icon img {
  width: 3rem;
  height: auto;
}

.service-img {
  width: 100%;
  height: auto;
}

.service-title {
  margin: 3rem 0 1.8rem;
  font-size: clamp(20px, 2.4rem, 32px);
  position: relative;
  z-index: 2;
}

.service-btn {
  display: inline-block;
  background: #E1B88A;
  width: 75.5%;
  padding: 1.5rem;
}

.service-btn:hover {
  background-color: #fff;
  border: 1px solid #E1B88A;
}

.service-btn:hover .vm {
  color: #E1B88A;
}



.vm {
  position: relative;
  display: inline-block;
  font-size: clamp(20px, 2rem, 24px);
  font-family: 'Noto Sans JP', sans-serif;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
}



.vm .arrow {
  position: absolute;
  top: 50%;
  right: -5rem;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 0.4rem solid #fff;
  border-right: 0.4rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

@media (min-width: 769px) {

  .service {
    padding: 6rem 0 8rem;
    margin: 0 auto;
  }

  .service-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: calc(38 / 1200 * 100%);
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.6rem;
    box-sizing: border-box;
  }

  .service-card {

    box-sizing: border-box;
  }

  .card-icon img {
    width: 5rem;
  }

  .service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: #E1B88A;
    width: 30rem;
    height: 6rem;
    min-width: 180px;
    min-height: 40px;
    padding: 0 3rem;
  }

  .vm {
    font-size: clamp(14px, 2.4rem, 24px);
    font-weight: bold;
  }

  .service-title {
    margin: 4rem 0;
    font-size: clamp(20px, 3.2rem, 32px);

  }

  .card-icon {
    height: 16rem;
    width: 16rem;
    bottom: 30%;
    padding-top: 3.5rem;
  }
}

.contact {
  padding-top: 3rem;
}


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

.contact-box {
  justify-content: center;
  background-color: #699FC2;
  margin: 0 1.6rem 1.6rem 1.6rem;
}

.contact-btn-box {
  display: flex;
  justify-content: center;
}


.contact-btn {
  margin-top: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-width: 310px;
  padding: 3rem;
  width: clamp(330px, 33rem, 600px);
  background: #fff;
  font-size: clamp(14px, 1.6rem, 16px);
  color: #3a3a3a;
  border-radius: 10px;
  text-decoration: none;
}

.contact-btn:hover {
  background: #EAF3F6;
  border: 1px solid #5a8ba8;
}

.triangle-arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #3a3a3a;
  display: block;
}

.contact-btn-p {
  position: absolute;
  left: 51%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Noto Sans JP';
  font-weight: bold;
  font-size: clamp(14px, 1.6rem, 24px);
}

.icon-calendar,
.icon-mail {
  position: absolute;
  width: 4rem;
  min-width: 30px;
  height: auto;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}

.icon-phone {
  width: 2rem;
  height: 2rem;
  position: relative;
  top: 0.2em;
}

.contact-inner {
  padding: 2.5rem 0;
  text-align: center;
  font-family: 'Noto Sans JP';
  font-size: clamp(14px, 1.8rem, 24px);
  letter-spacing: 0.1em;
  color: #fff;
}

.phone {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  font-size: clamp(14px, 2.4rem, 40px);
}



@media (min-width: 769px) {
  .contact-content {
    font-size: clamp(16px, 2rem, 20px);
  }

  .icon-phone {
    min-width: 40px;
    min-height: 40px;
    width: 5rem;
    height: 5rem;
    position: relative;
    top: 0.15em;
  }

  .phone {
    display: flex;
    align-items: center;
    font-size: clamp(24px, 4rem, 40px);
  }

  .phone-number {
    font-size: clamp(32px, 4rem, 40px);
  }


  .contact-btn {
    margin-top: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-width: 310px;
    background: #fff;
    color: #3a3a3a;
    border-radius: 10px;
    text-decoration: none;
    height: clamp(80px, 10rem, 100px);
    width: clamp(340px, 44rem, 440px);
  }

  .contact-inner {
    padding: 25px 0;
    text-align: center;
    font-family: 'Noto Sans JP';
    font-size: clamp(14px, 1.8rem, 20px);
    letter-spacing: 0.1em;
    color: #fff;
  }

  .contact-btn-p {
    font-size: clamp(18px, 2.4rem, 24px);
  }
}

.contact-btn-box ul {
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
  margin: 2rem 0 0;
}



.hour {
  font-size: clamp(14px, 1.4rem, 16px);
  line-height: 1.5;
}

@media (min-width: 769px) {
  .contact {
    margin: 0 auto;
    padding: 6rem 1.6rem 8rem;
  }

  .contact-box {
    display: flex;
    gap: calc(300 / 2000 * 100%);
    max-width: 1100px;
    flex-direction: row-reverse;
    align-items: center;
    margin: 0 auto;
    padding: 0 1.6rem;
  }

  .contact-btn-box ul {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    margin: 3.5rem 0;
  }
}



.access {
  padding-top: 3rem;
  background-color: #EAF3F6;
}

.access-content {
  padding: 0 1.6rem;
}

.access-container {
  text-align: center;
  margin-bottom: 2px;
}

.access-list {
  display: grid;
  grid-template-columns: 14rem 1fr;
  row-gap: 8px;
  font-size: clamp(12px, 1.2rem, 16px);
  list-style: none;
  padding: 3rem 2rem;
  font-family: 'Noto Sans JP';
}


.access-list li {
  display: flex;
  margin-bottom: 25px;
}

.access-label {
  width: 11rem;
  line-height: 2;
  font-weight: normal;
}

.access-value {
  flex: 1;
  line-height: 2;
}

@media (min-width: 769px) {
  .access {
    padding-top: 6rem;
    padding-bottom: calc(150 / 1920 * 100%);
  }

  .access-content {
    display: flex;
    margin: 0 auto;
    gap: calc(98 / 2000 * 100%);
    align-items: center;
    justify-content: center;
    padding-bottom: calc(70 / 1920 * 100%);
    max-width: 1200px;
  }

  .shop-photo {
    flex: 0 0 auto;
    width: 50rem;
    height: auto;
    object-fit: cover;
    margin: 0 16px;
  }

  .access-list {
    display: grid;
    grid-template-columns: 28rem 1fr;
    padding: 0;
    font-size: clamp(12px, 1.6rem, 16px);
  }

  .access-list li {
    margin-bottom: 20px;
  }

  .access-label {
    font-weight: normal;
    width: auto;
    word-break: auto-phrase;
  }
}

.location-map {
  width: 100%;
}

.location-map iframe {
  width: 100%;
  height: 150px;
  border: 0;
  display: block;
}

@media (min-width: 769px) {
  .location-map iframe {
    height: 232px;
  }
}

.footer-nav {
  text-align: center;
  padding: 25px 0 0;
}

.footer-nav-list {
  display: inline-flex;
  align-items: center;
  list-style: none;
}

.footer-nav-item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: #fff;
  margin: 0 10px;
  vertical-align: middle;
}

.footer-nav-link {
  display: inline-block;
  color: #fff;
  font-family: "Lora", serif;
  padding: 6px 0;
  text-decoration: none;
}

.footer-nav-link:hover,
.footer-nav-link:focus {
  color: #0b76c2;
  outline: none;
}

.footer-nav-link[aria-current="page"],
.footer-nav-link.active {
  font-weight: 700;
  color: #0b76c2;
}


@media (min-width: 769px) {
  .footer-nav {
    padding: 20px 16px 0;
  }

  .footer-nav-list {
    flex-wrap: wrap;
    justify-content: center;
  }


  .footer-copy {
    font-size: 12px;
    padding-bottom: 20px;
  }

  .footer-nav-item:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 16px;
    background-color: #fff;
    margin: 0 clamp(30px, calc(50 / 1920 * 100vw), 50px);
    vertical-align: middle;
  }
}

footer {
  background-color: #699FC2;
  color: #fff;
}

.footer-btn {
  padding: 2rem 2rem 0;
}

.footer-btn :hover {
  background-color: #699FC2;
  color: #fff;
  border: 1px solid #fff;

}

.footer-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 5rem;
  width: 30rem;
  background: #fff;
  color: #699FC2;
  font-size: clamp(14px, 1.6rem, 24px);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  border-radius: 100px;
  text-decoration: none;
  margin: 0 auto;
  /* 中央寄せ */
}

/* 矢印の位置をボタン右端に追従 */
.footer-btn .arrow {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}

.footer-btn .arrow img {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-white {
  width: 10rem;
  height: auto;
  display: block;
  margin: 0 auto;
}

.footer-copy {
  font-size: 10px;
  text-align: center;
  padding: 14px;
}

@media (min-width: 769px) {
  .footer-nav {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 2rem 5rem;
  }

  .footer-nav>nav {
    display: contents;
  }

  .logo-white {
    order: 1;
    margin: 0;
    width: 20rem;
    max-width: 90px;
  }

  .footer-nav-list {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    font-size: clamp(14px, 2rem, 20px);
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .footer-btn {
    order: 3;
    padding-top: 0;
    margin: 0;
  }

  .footer-btn a {
    margin: 0;
    width: 38rem;
    max-width: 300px;
    height: 7rem;
    max-height: 60px;
    font-size: clamp(14px, 2.2rem, 24px);
  }

  .footer-copy {
    order: 4;
    flex-basis: 100%;
    text-align: center;
    font-size: 12px;
    padding-bottom: 0;
  }
}