@charset "UTF-8";

/*========================================
独自CSS
========================================*/
body {
	font-family: "Noto Sans","Noto Sans JP", sans-serif;
}

a{
	text-decoration: none;
	letter-spacing: 0.11em;
}

h1,h2,h3,h4,h5,h6{
	letter-spacing: 0.11em;
  margin: 0;
  font-weight: normal;
}

p{
	color: #5C5C5C;
	letter-spacing: 0.11em;
  margin: 0;
  font-size: 16px;
}

ul{
	list-style: none;
	-webkit-padding-start: 0px;
  padding-inline-start: 0px;
  margin: 0;
}

/*========================================
ページ全体適用
========================================*/

.tab{
  display: none;
}

.sp{
  display: none;
}

.sp-m{
  display: none;
}

.sp-s{
  display: none;
}

@media (max-width: 900px) {
  .tab{
    display: block;
  }
}

@media (max-width: 768px) {
  .sp-m{
    display: block;
  }
}

@media (max-width: 600px) {
  .sp{
    display: block;
  }
}

@media (max-width: 374px) {
  .sp-s{
    display: block;
  }
}

/*========================================
フッター
========================================*/

.site-footer{
  background-color: #3F3F3F;
}

.footer__inner{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 16px 2vw;
}

.footer__list{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .footer__list{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.footer__item{
  padding: 4px 16px;
  border-right: solid 1px #ffffff;
}
@media (max-width: 900px) {
  .footer__item{
    padding: 4px 16px;
    border-right: none;
  }
}

.footer__item:first-of-type{
  border-left: solid 1px #ffffff;
}
@media (max-width: 900px) {
  .footer__item:first-of-type{
    border-left: none;
  }
}

.footer__link{
  color: #ffffff;
  font-size: 14px;
  letter-spacing: .2em;
  line-height: 2;
}

.footer__logo{
  text-align: center;
  margin-bottom: 16px;
}

.footer__logo__link{
  display: inline-block;
  max-width: 200px;
  width: 100%;
}

.footer__info{
  color: #ffffff;
  font-size: 12px;
  letter-spacing: .11em;
  text-align: center;
}
