/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
*{
	box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
	vertical-align: baseline;
}
textarea{
  font-size: 100%;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	color: #1E1E21;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
  text-decoration: none;
}

/* 共通はここから */
/* モーダルはここから */
.menu{
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background: #1E1E21;
  width: 100%;
  height: 100vh;
  z-index: 10;
  transition: all 0.4s;
}
.btn-close{
  width: 113px;
  position: absolute;
  top: 4%;
  right: 2.5%;
  cursor: pointer;
}
.btn-close img{
  width: 113px;
}
.menu-links{
  margin: auto;
}
.menu-links-list{
  display: flex;
  justify-content: center;
}
.menu-links-list img{
  width: 70px;
  height: 70px;
}
.menu-links a{
  color: #F5F3EF;
  font-size: 128px;
  font-weight: 600;
  padding-bottom: 16px;
  cursor: pointer;
}
a:last-child{
  padding-bottom: 0;
}
/* モーダルはここまで */


/* フッターはここから */
.footer{
  width: 100%;
  background-color: #1E1E21;
}
.footer-inner{
  padding: 157px 64px 138px 64px;
  text-align: center;
  position: relative;
}
.footer-inner img{
  width: 138px;
}
.footer-title{
  font-size: 192px;
  font-weight: 600;
  color: #F5F3EF;
  padding-bottom: 32px;
}
.btn-contact{
  padding-bottom: 140px;
}
.footer-menu a{
  color: #F5F3EF;
  font-size: 24px;
  font-weight: 600;
  padding-left: 48px;
  line-height: 1.2;
}
a:nth-child(1){
  padding-left: 0;
}
.footer p{
  position: absolute;
  bottom: 2%;
  right: 0;
  left: 0;
  margin: 0 auto;
  font-size: 12px;
  color: #F5F3EF;
}
/* フッターはここまで */


/* レスポンシブル(sp)はここから */
@media screen and (max-width: 768px) {
  /* モーダル(sp)はここから */
  .btn-close{
    width: 92px;
  }
  .btn-close img{
    width: 92px;
  }
  .menu-links a{
    font-size: 53px;
  }
  .menu-links-list img{
    width: 29px;
    height: 29px;
  }
  /* モーダル(sp)はここまで */


  /* フッター(sp)はここから */
  .footer-inner{
    padding: 53px 51px 53px 50px;
  }
  .footer-title{
    font-size: 58px;
    padding-bottom: 17px;
  }
  .btn-contact{
    padding-bottom: 57px;
  }
  .btn-contact img{
    width: 78px;
  }
  .footer-menu{
    display: flex;
    flex-direction: column;
  }
  .footer-menu a{
    padding-left: 0;
    font-size: 20px;
    padding-bottom: 28px;
  }
  a:last-child{
    padding-bottom: 0;
  }
  /* フッター(sp)はここまで */
}
/* レスポンシブル(sp)はここまで */
/* 共通はここまで */
