@charset "utf-8";

 {
    outline: 1px solid #ff0000;
}

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
    color: #000000;
    line-height: 1;
    margin: 0 0 0 0;
    }
  
.wrapper {
      margin: 0 auto 0 auto;
      max-width: 960px;
    }
  
    img {
    max-width: 100%;
  }

  /* ここからヘッダー08 */
header.header08 {
  width: 100%;
  padding: 1.5rem 1rem;
}

div.logo {
  width: 200px;
  height: 100px;
  margin: 0 auto 1.5rem;
}

div.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav.nav ul.item {
  display: flex;
  justify-content: center;
}

nav.nav ul.item li.list {
  padding-left: 1.5rem;
  margin-left: 1.5rem;
  position: relative;
}

nav.nav ul.item li.list::before {
  display: inline-block;
  content: "";
  width: 1px;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
}

nav.nav ul.item li.list:first-child::before {
  content: none;
}

nav.nav ul.item li.list a {
  font-weight: bold;
  font-size: 0.9rem;
}

#menu-btn,
.nav-hidden {
  display: none;
}
/* ここまでヘッダー08 */

/* ここからフッター */

.footer {
  position: relative;
  background: #341E12;
  color: #ffffff;
  text-align: center;
}
.footer a:hover, .footer a:active {
  color: #CEB967;
}

.footer__inner {
  max-width: 1084px;
  margin: auto;
  padding: 50px 20px;
}

.footer__copyright {
  margin-top: 60px;
  font-size: 12px;
}

@media screen and (min-width: 768px), print {
  .ftmenu {
    margin-top: 20px;
    border: 0;
    line-height: 1;
  }

  .ftmenu__item {
    display: inline-block;
    border: 0;
  }
  .ftmenu__item:not(:first-child) {
    border-left: 1px solid;
  }

  .ftmenu__link {
    display: block;
    padding: 0 5px;
    font-weight: normal;
    font-size: 12px;
  }

  .ftmenu-s {
    margin-top: 10px;
  }

}

/* menu (spmenu / ftmenu)
------------------------------------------------------ */
/*ヘッダー・フッターのSP用メニュースタイルが同じなので、共通するスタイルだけまとめて記述しています。
class名は分けてあるので将来的に個別に指定することになったら分離します。*/
.spmenu__logo,
.footer__logo {
  
}

.spmenu__list,
.ftmenu {
  margin-top: 34px;
  
}

.spmenu__item,
.ftmenu__item {
  margin-top: 7px;
  margin-bottom: 7px;
}

.spmenu__link,
.ftmenu__link {
  display: block;
  padding: 10px;
  color: inherit;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.spmenu-s,
.ftmenu-s {
  margin-top: 45px;
  line-height: 1;
  text-align: center;
}

.spmenu-s__item,
.ftmenu-s__item {
  display: inline-block;
}
.spmenu-s__item:not(:first-child),
.ftmenu-s__item:not(:first-child) {
  border-left: 1px solid;
}

.spmenu-s__link,
.ftmenu-s__link {
  display: block;
  padding: 0 5px;
  color: inherit;
  font-size: 12px;
  text-decoration: none;
}

/* ここまでフッター */

  @media (max-width: 768px) {
    #menu-btn {
      display: block;
      width: 30px;
      height: 20px;
      position: fixed;
      top: 1rem;
      right: 1rem;
      z-index: 3;
    }
  
    #menu-btn span,
    #menu-btn span::before,
    #menu-btn span::after {
      content: "";
      height: 2px;
      width: 100%;
      border-radius: 3px;
      background: #3656a7;
      position: absolute;
      transition: 0.2s;
    }
  
    #menu-btn span {
      top: 0;
    }
  
    #menu-btn span:before {
      top: 8px;
    }
  
    #menu-btn span:after {
      top: 16px;
    }
  
    #nav-input:checked~#menu-btn span {
      top: 8px;
      transform: rotate(45deg);
    }
  
    #nav-input:checked~#menu-btn span::before {
      opacity: 0;
    }
  
    #nav-input:checked~#menu-btn span::after {
      top: 0;
      transform: rotate(-90deg);
    }
  
    header.header08 {
      padding: 1rem;
    }
  
    div.logo {
      width: 160px;
      height: 60px;
      margin: 0 auto;
    }
  
    nav.nav {
      width: 230px;
      height: 100vh;
      position: fixed;
      top: 0;
      right: 0;
      z-index: 2;
      opacity: 0;
      visibility: hidden;
      background: #fff;
      transition: 0.5s;
    }
  
    nav.nav ul.item {
      display: block;
      padding: 4rem 2rem;
    }
  
    nav.nav ul.item li.list {
      padding-left: 0;
      margin-left: 0;
      padding-bottom: 1.5rem;
    }
  
    nav.nav ul.item li.list::before {
      content: none;
    }
  
    #nav-input:checked~nav.nav {
      opacity: 1;
      visibility: visible;
    }

    .footer-logo {
      margin-top: 60px;
    }

    .copyright {
      margin-top: 50px;
    }
    
    .spmenu__list,
.ftmenu {
  border-top: 1px dashed;
}

.spmenu__item,
.ftmenu__item {
  border-bottom: 1px dashed;
}

  }

  /* 全ページに適用*/

html {
    font-family: sans-serif;
}

html * {
        box-sizing: border-box;   /* ←これをしておくことで「レスポンシブデザイン」に対応させられるようになるp157p163*/
}

h1{
    color: #3f5170;
    font-size: 22px;
    border-bottom: 3px dashed #3f5170;
    margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}

.site-menu li{
                font-size: 16px;
}


.header-site-menu a:visited  {                          /*疑似リンク（ヘッダー*/
                                color: #5a9bc0;
                                text-decoration: none;
}
.header-site-menu a:hover {
                                color: #e3937a;
                                text-decoration: none;
}

.site-menu2 a:link {        /*疑似リンク（フッター*/
	color: #ffffff;
	text-decoration: none;
}
.site-menu2 a:visited {
	color: #5a9bc0;
	text-decoration: none;
}
.site-menu2 a:hover {
	color: #e3937a;
	text-decoration: none;
}
.site-menu2 a:active {
	color: #5a9bc0;
	text-decoration: none;
}

/*home.htmlのみ適用*/

p {
    line-height: 1.6;
}

.keyvisual {
            margin: 0 auto 0 auto;
}
.news-item {
            margin: 0;
}
.date {
  margin-top: 10px;
  margin-left: 5px;
  margin-right: 5px;
  color: #5a9bc0;
}
.note {
  margin-top: 3px;
  margin-bottom: 5px;
  margin-left: 10px;
  margin-right: 5px;
}
.keyvisual img {
  max-width: 100%;
  height: auto;
}

.main {
  padding-top: 30px;
  padding-bottom: 30px;
}
/*information
--------------------*/
.info-list {
  display: flex;
  flex-wrap: wrap;
}
.info-list dt {
  width: 30%;
  padding: 15px 0;
  border-top: 1px #d8c7a0 dotted;
}
.info-list dd {
  width: 70%;
  padding: 15px 0;
  border-top: 1px #d8c7a0 dotted;
}
.info-list :first-of-type {
  border-top: none;
}


/*Heading
--------------------*/
.heading{
  margin-bottom: 2px;
  border-bottom: #4d941a 1px solid;
  color: #4d941a;
  font-size: 20px;
  font-weight: normal;
  font-family: 'Cardo', serif;
  font-style: italic;
  overflow: hidden;
  position: relative;
}

/*ポットアイコン*/
.heading::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 26px;
  margin-right: 5px;
  background: url(../images/home_images/book.jpg) no-repeat;
  background-size: contain;
  position: relative;
  bottom: -3px;
}

.heading .more{
  float: right;
  display: inline-block;
  padding: 5px 5px 5px 10px;
  background: #4d941a;
  border-radius: 2em;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
}
.heading .more:hover{
  opacity: 0.7;
}

/*三角アイコン*/
.heading .more::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border: transparent 5px solid;
  border-left-color: #fff;
  vertical-align: middle;
}