/* CSS Document */
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* ヘッダー */
.header {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 32px;
  background-color: #f5f5f5;
}

.header__title {
  font-size: 24px;
  color: #333;
}

.header__nav--list {
  display: flex;
  gap: 20px;
}

.header__nav--link {
  color: #333;
  display: inline-block;
  text-align: center;
  line-height: 1.8;
}

.button {
  display: inline-block;
  width: 200px;
  padding: 16px 12px;
  text-align: center;
  font-size: 16px;
  color: #F2EDCD;
}

.header__cta {
  background-color: #024074;
}

.header__cta.button {
  display: flex;
  align-items: center;
}

.header__cta.button img {
  margin-right: 8px;
  width: 45px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .header {
    justify-content: center;
    padding: 20px;
  }
     
  .header__nav-list {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .header__title {
    position: absolute;
    left: 32px;
  }

  .header__nav--link {
    color: #333;
    display: inline-block;
    text-align: center;
    line-height: 1.8;
  }
  
  .header__cta--button {
    position: absolute;
    right: 32px;
    display: flex;
    padding: 12px 40px;
    align-items: center;
    color: #F2EDCD;
    background-color: #024074;
  }
  
  .header__cta--button img {
    margin-right: 8px;
    width: 45px;
    object-fit: cover;
  }
}

@media screen and (max-width: 768px) {
  .header {
    padding: 10px 20px;    
  }

  .header__title img {
    aspect-ratio: 80 / 40;
    width: 80px;
  }

  .header__nav--link {
    color: #F5F5F5;
    text-align: left;
    border-bottom: 1px solid #F5F5F5;
    padding-bottom: 10px;
  }

  .header__nav--list {
    padding: 2.6rem;
  }

  .header__cta--button {
    width: 200px;
    padding: 12px;
    text-align: center;
    color: #F2EDCD;
    padding: 0;
    border: 2px solid #FFFFFF;
    width: 100%;
  }
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger__line {
  width: 100%;
  height: 2px;
  background-color: #333;
}

.header__nav {
  display: flex;
}

.header__nav--list {
  display: flex;
}

@media (max-width: 768px) {  
  .hamburger {
    display: flex;
  }

  .header__nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #024074;
    z-index: 1000;
  }

  .header__nav.active {
    display: flex;
  }

  .header__nav--list {
    flex-direction: column;
    padding: 20px;
  }

  .header__nav--item {
    padding: 10px 0;
  }

  /* オンラインショップボタン */
  .header__cta--button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
  }

  .header__cta--button img {
    width: 32px;
  }
}

/* footer */
.footer {
  padding: 40px;
  background-color: #024074;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer__nav {
  margin-top: 0;
}

.footer__logo {
  margin-right: 20px;
  margin-left: 0;
}

.footer__logo--img {
max-width: 12.5rem;
}

.footer__nav--list {
display: flex;
gap: 20px;
list-style: none;
padding: 0;
margin: 0;
}

.footer__nav--item {
margin: 0;
}

.footer__nav--item a {
color: #F5F5F5;
font-size: 16px;
}

.footer__button--wrapper {
margin-left: auto;
display: flex;
align-items: center;
justify-content: center;
padding: 14px 16px;
background-color: #f5f5f5;
text-decoration: none;
width: 200px;
height: 3.75rem;
margin-top: 20px;
}

.footer__cta--button {
color: #024074;
align-items: center;
justify-content: center;
padding: 9px;
}

.footer__cta--button__img {
width: 42px;
margin-right: 4px;
}

.footer__cta--button span {
line-height: 2.5rem;
}

.snsLink {
width: 100%;
display: block;
overflow: hidden;
clear: both;
line-height: 50px;
border-top: 1px solid #F5F5F5;
border-bottom: 1px solid #F5F5F5;
}

.sns__name {
width: 33.33%;
display: block;
float: left;
text-align: center;
position: relative;
color: #f5f5f5;
border-right: 1px solid #f5f5f5;
}

.sns__name:last-child {
border-right: none;
}

.sns__name-img {
width: 1.875rem;
height: auto;
vertical-align: middle;
margin: 0 20px 0 0;
}

.footer__copyLight {
text-align: center;
display: block;
width: 100%;
color: #F5F5F5;
padding: 40px 0 0;
clear: both;
}


@media screen and (max-width: 768px) {
.footer {
  padding: 1.25rem;
}

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

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo--img {
  aspect-ratio: 110 / 53;
  width: 110px;
}

.footer__nav--list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  width: 100%;
}

.footer__nav--item a {
  font-size: 0.875rem;
}

.footer__nav--item {
  text-align: left;
}

.footer__button--wrapper {
  margin-top: 1.25rem;
  width: 100%;
  height: 2.25rem;
}

.footer__cta--button__img {
  width: 42px;
  margin-right: 4px;
}

.footer__cta--button span {
  font-size: 0.875rem;
}

.snsLink {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
}

.sns__name {
  width: auto;
  float: none;
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0;
}

.sns__name-img {
  margin: 1.25rem;
}

.sns__name span {
  display: none;
}

.snsLink, .sns__name {
  border: none;
}

.footer__copyLight {
  padding: 1.25rem;
}
}