/*=====================
  共通スタイル
======================*/
* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo,sans-serif;
  font-size: 16px;
  color: #50360d;
  line-height: 1.6;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ページの先頭に戻るボタン */
.pagetop {
  color: #ffffff;
  background-color: #50360d;
  text-decoration: none;
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*=====================
  ヘッダーエリア
======================*/
/* ロゴイメージ */
.logo {
  width: 46px;
  display: block;
  margin: 15px auto;
}

/* ナビゲーション */
.nav_list {
  list-style: none;
  padding: 0;
  margin: 0 auto 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.nav_item {
  flex: 1 0 auto;
}

.nav_link {
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 0.5em 1em 0.5em 1em;
  transition: all 0.3s ease-in-out 0s;
}

.nav_link:hover {
  color: #ffffff;
  background-color: #50360d;
  opacity: 0.8;
}

.nav_link i {
  margin-right: 0.5em;
}

/* メディアクエリ */
@media (min-width: 992px) {
  /* ロゴイメージ */
  .logo {
    width: 92px;
  }

  /* ナビゲーション */
  .nav_item {
    flex: 0 0 auto;
  }

  .nav_link {
    font-size: 20px;
  }
}

/*=====================
  フッターエリア
======================*/
.footer {
  background-image: linear-gradient(180deg, #76654f, #4c3b25);
  padding-top: 15px;
  padding-bottom: 15px;
}

/* 著作権表記 */
.copyright {
  text-align: center;
  margin: 0;
}

.copy {
  font-size: 12px;
  color: #ffffff;
}

/* メディアクエリ */
@media (min-width: 992px) {
  /* 著作権表記 */
  .copy {
    font-size: 15px;
  }
}

/*=====================
  レイアウト
======================*/
/* コンテナ */
.container {
  max-width: 1110px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/*=====================
  メインエリア
======================*/
.main {
  flex: 1 0 auto;
}

/* コンテンツ全体を囲むブロック */
.page_contents {
  margin-bottom: 50px;
}

/*=====================
  コンテンツエリア
======================*/
/* 画像の共通スタイル */
.main img {
  max-width: 100%;
}

/* イメージ画像 */
.main_image {
  text-align: center;
  margin-bottom: 25px;
}

/* ウェルカムメッセージ */
.welcome {
  margin-bottom: 25px;
}

.welcome_title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  border-bottom: 3px solid #50360d;
}

.welcome_image {
  text-align: center;
}

/* SNSタイムライン */
.social_item {
  text-align: center;
  margin-bottom: 30px;
}

.social iframe {
  max-width: 100%;
}

/* 関連リンク集 */
.related {
  text-align: center;
  margin-bottom: 30px;
}

.related_link {
  color: #705e48;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 15px;
  display: block;
}

.related p {
  margin-top: 0;
  margin-bottom: 0;
}

/* メディアクエリ */
@media (min-width: 992px) {
  /* イメージ画像 */
  .main_image {
    margin-bottom: 50px;
  }

  /* ウェルカムメッセージ */
  .welcome {
    display: flex;
    margin-bottom: 50px;
  }

  .welcome_text {
    width: 530px;
    padding-right: 30px;
  }

  .welcome_image {
    width: 550px;
  }

  .welcome_title {
    font-size: 30px;
    margin-top: 0;
  }

  /* SNSタイムライン */
  .social {
    display: flex;
    justify-content: space-between;
    width: 650px;
    margin: 0 auto;
  }

  .social_item {
    width: 300px;
    margin-bottom: 50px;
  }

  /* 関連リンク集 */
  .related {
    display: flex;
    justify-content: space-between;
  }

  .related_link {
    width: 300px;
  }
}