@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*/
}



.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;
}

/*privacypolicyのみ適用*/

/* main */
body {
    line-height: 1.7;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    color: #000;
}
main .inner {
  margin: 0 auto 0 auto;
  max-width: 960px;
}
main h2 {
  margin: 50px 0 20px;
  font-weight: normal;
  font-size: 25px;
  color: #00b6bd;
}
main p {
  margin: 0 0 15px;
}
main dl {
  width: 100%;
}
main dl dt {
  float: left;
  clear: both;
  padding: 10px 0;
}
main dl dd {
  border-bottom: solid 1px #ccc;
  margin: 0;
  padding: 10px 0 10px 15%;
}
main .title {
  padding: 50px;
  background: #f2f8f8;
}
main .title h1 {
  margin: 0;
  line-height: 1;
  font-size: 40px;
  color: #00b6bd;
}
main .title ol {
  list-style-type: none;
  margin: 30px 0 0;
  padding: 0;
  display: flex;
}
main .title ol li {
  font-size: 13px;
}
main .title ol li::after {
  content: ">";
  margin: 0 5px 0 10px;
}
main .title ol li:last-child::after {
  content: none;
}
main table {
  width: 100%;
  margin-bottom: 30px;
}
main table,
main table th,
main table td {
  border: solid 1px #ccc;
  border-collapse: collapse;
}
main table th,
main table td {
  padding: 10px;
}
main table th {
  background: #f2f8f8;
  color: #00b6bd;
}
main ul {
  margin: 0 0 60px;
  padding: 0 0 0 20px;
}
@media screen and (max-width:767px) {
  main .inner {
      width: 100%;
      padding: 0 20px;
      box-sizing: border-box;
  }
  main h2 {
      margin: 40px 0 15px;
      font-size: 20px;
  }
  main dl dt {
      float: none;
      padding: 0;
  }
  main dl dd {
      margin: 0 0 10px;
      padding: 10px 0 10px 0;
  }
  main .title {
      padding: 30px 20px;
  }
  main .title h1 {
      text-align: center;
      font-size: 25px;
  }
  main .title ol {
      margin: 20px 0 0;
      display: flex;
      justify-content: center;
  }
  main .title ol li {
      font-size: 12px;
  }
}

