/* 共通 */
body {
  color: #fff;
  background-color: #0e0d0e;
  text-align: center;
}
.content {
  height: 100vh;
  padding: 0 100px;
}

/* ヘッダー */
.header {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.logo {
  font-size: 1.5rem;
  margin-left: 20px;
}
.nav {
  margin-left: auto;
}
.top-menu {
  display: flex;
}
.menu-item {
  margin-right: 20px;
}
/* mainタイトル */
.main-visual {
  position: relative;
}
.main-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.main-title {
  font-size: 3rem;
}
.main-img {
  width: 100%;
  height: 100%;
  background-image: url("../img/coffee-01.jpg");
  background-size: cover;
  background-position: center;
}
.main-description {
  font-weight: bold;
  margin-bottom: 90px;
}
.main-img {
  width: 100vw;
  height: 100vh;
}
.content-title {
  font-size: 2.5rem;
}

/* about概要説明 */
.about {
  background-color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.about-description {
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: left;
}

/* news新着情報 */
.news-title {
  font-size: 1.1rem;
  text-align: left;
}

.news-description {
  font-size: 1.4rem;
  line-height: 1.2;
  text-align: left;
}

.news-link {
  font-size: 1.5rem;
}
.news-img {
  width: 100%;
}
.news-list {
  display: flex;
  justify-content: center;
}
.news-items {
  margin-left: 20px;
}

/* お問い合わせ */

.contact-content {
  text-align: left;
}
.contact-description {
  font-size: 1.5rem;
}
.contact-label {
  font-size: 1.2rem;
  margin: 8px 0;
}
.contact-input {
  color: #fff;
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  padding: 7px 0;
}
contact-textarea {
  border: 2px solid #fff;
  box-sizing: border-box;
}
.contact-btn {
  color: #fff;
  background-color: #0099ff;
  border: 1px solid #fff;
}
