@charset "utf-8";
/*==========================
common
==========================*/
html {
  font-size: 62.5%
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #2B2B2B;
  background-color: white;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

div{
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;  
  text-decoration: none;
}



/*==========================
footer
==========================*/
.footer_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 4.5vw;
}

.footer_logo_wrap {
  text-align: center;
}

.footer_logo {
  width: 90%;
  max-width: 233px;
  aspect-ratio: 172 / 89;
  margin: 0 auto;
}

.footer_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer_title {
  font-size: 1.8rem;
  margin-top: 10px;
  text-align: center;
}

.footer_subtitle {
  font-size: 1.4rem;
  text-align: center;
}

.info_wrap {
  width: 235px;
  margin-top: 80px;
}

.footer_address {
  font-style: normal;
}

.footer_list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 20px;
    margin-top: 35px;
}

.footer_list dt,
.footer_list dd {
  color: #4F6F5E;
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
}

/* パートナー */

.partners_title {
  color: #4F6F5E;
  font-size: 1.8rem;
  font-weight: 600;
}

.partners_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.partners_list a {
  display: block;
  color: #4F6F5E;
  font-size: 1.3rem;
}

.partners_list a:hover {
  opacity: .7;
}


@media (min-width: 768px) {

  .footer_wrap {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
  }

  .info_wrap {
    margin-top: 0;
  }


}

@media (min-width: 1024px) {
 .footer_left {
  display: flex;
  gap: 30px;
 }

 .footer_list {
    margin-top: 10px;
}

.footer_wrap {
    padding: 80px 0;
}

.footer_logo {
    width: 190px;
}

.footer_logo_wrap {
    text-align: center;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
}











/* @media (min-width: 1400px) {

  .footer_list {
    grid-template-columns: 140px 1fr;
  }

  .footer_wrap {
    flex-direction: row;  
    justify-content: center;
    align-items: center;
    gap: 150px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer_logo {
    width: 120px;  
  }

  .footer_list {
  margin-top: 0px;
}

  .footer_list dt,
  .footer_list dd {
    font-size: 1.8rem;
  }

} */


/*==========================
©︎
==========================*/
.footer_copyright {
  /* margin-top: 58px; */
  width: 100%;
  background: #4F6F5E;
  text-align: center;
  padding: 5px;
}

.small {
  color: #FFF;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.7px;
}

/* 打ち消し文 */
.line-through {
  text-decoration: line-through;
}

