@charset "utf-8";
/*CSS Document*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400, 500, 600, 700;
  font-style: normal;
  line-height: 1;
  color: #555;
}

ul {
  list-style: none;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;

  text-decoration: none;
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 5rem;

  border: none;
  cursor: pointer;
  font-family: inherit;

  transition: all 0.3s;
}

.container {
  overflow: hidden;
}

/* HEADER */

.header {
  padding: 4rem 7rem;
  /* max-width: 108rem; */
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 3.5rem;
}

/* NAVIGATION */

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.6rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #cf711f;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 50px;
  color: #333;
  background-color: #fab348;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #cf711f;
}

/* mobile */

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* FOOTER */

.footer {
  padding: 12.8rem;
  max-width: 1080px;
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 1fr;
  column-gap: 7rem;
}

div ul {
  list-style: none;
  justify-content: center;
}

.footer-logo-space {
  align-self: center;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.6rem;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #cf711f;
}

.footer__sns_links {
  align-self: center;
}

.footer__sns_links ul {
  display: flex;
  gap: 2rem;
}

.sns-icon {
  height: 24px;
  width: 24px;
  color: #1d8d60;
}

.footer__copyright {
  display: block;
  padding: 16px 0;
  text-align: center;
}
