@charset "UTF-8";
/*******************************
変数の指定
*******************************/
/*******************************
共通部品
*******************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #382710;
  background-color: #fcfaf2;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.link-btn p {
  cursor: pointer;
}

/*******************************
共通パーツの指定
*******************************/
.u-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}

.u-sectionHeading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}

.u-sectionTitle {
  font-weight: 500;
  font-size: 32px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .u-sectionTitle {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .u-sectionTitle {
    margin: 30px 0 10px;
  }
}

.u-sectionLead {
  font-size: 15px;
  margin-bottom: 30px;
}

.link-btn {
  cursor: pointer;
  margin-bottom: 10px;
}

.link-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  margin-left: auto;
}
.link-text img {
  width: 1.5rem;
}

/*******************************
ヘッダー
*******************************/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .header {
    height: auto;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

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

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

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .nav-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/*******************************
ファーストビュー
*******************************/
.fv {
  position: relative;
  height: 50vh;
}
@media screen and (max-width: 768px) {
  .fv {
    height: 40vh;
  }
}

.fv picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.fv-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(255, 253, 247, 0.9);
  z-index: 100;
  max-width: 580px;
  padding: 10px 32px;
  font-size: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fv-title {
    width: 320px;
    font-size: 1.375rem;
    padding: 3px 10px;
  }
}

/*******************************
メイン、レイアウト
*******************************/
.layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 40px 15px;
}
.layout .main {
  -webkit-box-flex: 2.5;
      -ms-flex: 2.5;
          flex: 2.5;
}
.layout .aside {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .layout .aside {
    margin: 0;
  }
}
@media screen and (max-width: 1024px) {
  .layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*******************************
メイン、ニュース
*******************************/
.news-item,
.special-item {
  margin-bottom: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.news-bottom,
.special-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .news-bottom,
  .special-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.news-item-bottom,
.special-item-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.news-pickup,
.special-pickup {
  max-width: 640px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.news-text,
.special-text {
  font-size: 14px;
}

.news-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*******************************
特集
*******************************/
.special-item-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.category-heading .u-sectionLead {
  font-size: 14px;
}

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

.category-item {
  border: 1px solid #f4eed8;
  border-radius: 3px;
  padding: 10px 0;
}
.category-item span {
  font-size: 14px;
}

.category-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*******************************
特集
*******************************/
.category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

/*******************************
人気記事
*******************************/
.item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid #e8e3d2;
  font-size: 14px;
}

.popularity-item li:last-child .item-body {
  border-bottom: 1px solid #e8e3d2;
}

/*******************************
検索
*******************************/
.search-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #d4cdb3;
  background-color: #fff;
  border-radius: 3px;
  height: 42px;
  gap: 10px;
  overflow: hidden;
}

.search {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.category-search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
  font-size: 16px;
  border: none;
  outline: none;
}

.category-search-btn {
  text-align: center;
  background-color: #fff2bf;
  padding: 10px 12px;
  min-width: 70px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

/*******************************
facebookリンク
*******************************/
iframe {
  width: 100%;
}

/*******************************
フッター
*******************************/
.footer {
  background-color: #fff;
}

.footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer-left {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer-logo {
  width: 60%;
}

.footer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 auto;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .footer-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .footer-wrapper .footer-center {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer-wrapper .footer-right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer-wrapper .footer-left {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.footer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}

.logo-bottom-text p {
  font-size: 14px;
}

.copyright {
  font-size: 14px;
}

/*******************************
フッターinfo
*******************************/
.info-list {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 8px;
}

.info-list dt {
  font-weight: bold;
}

.footer-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

/*******************************
フッターright
*******************************/
.footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}

.footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

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