@charset "UTF-8";
/* 共通部品 */
html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #382710;
  background-color: #fcfaf2;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.u-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}

.u-sectionHeading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.u-sectionTitle {
  font-weight: 500;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .u-sectionTitle {
    font-size: 24px;
  }
}

/* header */
.header {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header {
    height: auto;
    padding: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: none;
  }
}

@media screen and (max-width: 768px) {
  .title-logo {
    margin: 11px 30px;
    width: 120px;
  }
}

@media screen and (max-width: 768px) {
  .header-nav {
    width: 100%;
    background-color: #f4eed8;
  }
}

.menu {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .menu {
    padding: 8px 20px;
    justify-content: center;
  }
}

.menu-link {
  font-weight: 500;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .menu-link {
    font-size: 14px;
  }
}

/* first view */
.firstview {
  position: relative;
}

.firstview-img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .firstview-img {
    height: 240px;
  }
}

.firstview-title {
  width: 580px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  text-align: center;
  background-color: rgba(255, 253, 247, 0.9);
  padding: 8px 32px;
}
@media screen and (max-width: 768px) {
  .firstview-title {
    width: 302px;
    font-size: 22px;
    padding: 3px 10px;
  }
}
.firstview-title .firstview-title-bold {
  display: block;
  font-weight: 500;
}

/* container */
.container {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .container {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .container {
    gap: 50px;
  }
}

/* main */
.main {
  padding: 64px 0;
  width: 69%;
}
@media screen and (max-width: 1024px) {
  .main {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main {
    padding: 50px 0;
  }
}
@media screen and (max-width: 480px) {
  .main {
    padding: 50px 0 30px;
  }
}

/* 左 */
.left {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media screen and (max-width: 480px) {
  .left {
    gap: 40px;
  }
}

/* news */
.news {
  display: flex;
  flex-direction: column;
  gap: 42px;
}
@media screen and (max-width: 480px) {
  .news {
    gap: 30px;
  }
}

.news-top {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.news-head {
  margin-bottom: 30px;
}

.news-text {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .news-text {
    font-size: 15px;
  }
}

.news-contents {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}

.news-img {
  width: 100%;
}

.news-pickup {
  max-width: 640px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .news-pickup {
    width: 100%;
  }
}

.news-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 480px) {
  .news-box {
    gap: 8px;
  }
}

.news-box-data {
  font-size: 14px;
  font-weight: 500;
}

.news-box-title {
  font-size: 15px;
  font-weight: 700;
}

.news-box-text {
  font-size: 15px;
  letter-spacing: 0.06em;
}

.news-bottom {
  display: flex;
  gap: 24px;
  padding-bottom: 24px;
}
@media screen and (max-width: 480px) {
  .news-bottom {
    flex-direction: column;
    gap: 30px;
  }
}

.news-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

/* 特集 */
.tokusyuu {
  display: flex;
  flex-direction: column;
  gap: 42px;
}
@media screen and (max-width: 480px) {
  .tokusyuu {
    gap: 30px;
  }
}

.tokusyuu {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.tokusyuu-head {
  margin-bottom: 30px;
}

.tokusyuu-text {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .tokusyuu-text {
    font-size: 15px;
  }
}

.tokusyuu-contents {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}

.tokusyuu-img {
  width: 100%;
}

.tokusyuu-pickup {
  max-width: 640px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .tokusyuu-pickup {
    width: 100%;
  }
}

.tokusyuu-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 480px) {
  .tokusyuu-box {
    gap: 8px;
  }
}

.tokusyuu-box-data {
  font-size: 14px;
  font-weight: 500;
}

.tokusyuu-box-title {
  font-size: 15px;
  font-weight: 700;
}

.tokusyuu-box-text {
  font-size: 15px;
  letter-spacing: 0.06em;
}

.tokusyuu-bottom {
  display: flex;
  gap: 24px;
  padding-bottom: 24px;
}
@media screen and (max-width: 480px) {
  .tokusyuu-bottom {
    flex-direction: column;
    gap: 30px;
  }
}

.tokusyuu-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.tokusyuu__linkText {
  display: flex;
  align-items: center;
  font-size: 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

/* サイドバー */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 33px;
  padding: 64px 0;
  width: 28%;
}
@media screen and (max-width: 1024px) {
  .sidebar {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .sidebar {
    padding: 0 0 50px;
    gap: 41px;
  }
}

/* 右 カテゴリ */
.category {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.category-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.category-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 480px) {
  .category-top {
    gap: 20px;
  }
}

.category-text {
  font-size: 14px;
}

.category-link-text {
  display: flex;
  align-items: center;
  font-size: 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.category-btn {
  border: 0.5px solid #d4cdb3;
  border-radius: 5px;
}

.category-btn-link {
  display: block;
  padding: 11px 6px;
}

.category-btn-img {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .category-btn-img {
    margin-bottom: 16px;
  }
}

.category-btn-text {
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.05em;
}

.category-search {
  display: flex;
  border: 1px solid #d4cdb3;
  border-radius: 3px;
  height: 43px;
}

.category-input {
  background-color: #fff;
  width: calc(100% - 53px);
  padding: 8px;
}

.category-search-btn {
  background-color: #fff2bf;
  padding: 10px;
  width: 53px;
}

.category-img {
  width: 100%;
}

/* 右 人気記事 */
.ninnki-link {
  display: flex;
  align-items: center;
  font-size: 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 480px) {
  .ninnki-link {
    margin-bottom: 20px;
  }
}

.ninnki-item {
  border-top: 1px solid #e8e3d2;
  display: flex;
  gap: 20px;
  padding: 14px 0;
}
.ninnki-item:last-child {
  border-bottom: 1px solid #e8e3d2;
}

.ninnki-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 14px 0;
}

.ninnki-iten-date {
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .ninnki-iten-date {
    font-size: 16px;
  }
}

.ninnki-item-text {
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .ninnki-item-text {
    font-size: 16px;
  }
}

/* 右 ポスト */
.post {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 480px) {
  .post {
    gap: 20px;
  }
}

.post-link-text {
  display: flex;
  align-items: center;
  font-size: 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.post-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media screen and (max-width: 480px) {
  .post-link-img {
    width: 30px;
  }
}

iframe {
  width: 100%;
}

/* フッター */
.footer {
  background-color: #fff;
  padding: 42px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 48px 30px 14px;
  }
}

.footer-contents {
  display: flex;
  max-width: 985px;
  margin: 0 auto;
  gap: 160px;
}
@media screen and (max-width: 1024px) {
  .footer-contents {
    gap: 80px;
  }
}
@media screen and (max-width: 768px) {
  .footer-contents {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-catch {
  font-size: 14px;
}

.footer-menu {
  display: flex;
  gap: 160px;
}
@media screen and (max-width: 1024px) {
  .footer-menu {
    gap: 80px;
  }
}
@media screen and (max-width: 768px) {
  .footer-menu {
    flex-direction: column;
    gap: 40px;
  }
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-title {
  display: inline;
  border-bottom: 0.5px solid #b2572f;
  padding-bottom: 4px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-item {
  font-size: 16px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}/*# sourceMappingURL=style.css.map */