@charset "UTF-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

header {
  background-color: #ffffff;
  z-index: 10;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

hr {
  width: 90%;
  margin: 40px auto 10px;
  height: 8px;
  background-image: repeating-linear-gradient(45deg, #ccc 0, #ccc 1px, transparent 0, transparent 50%);
  background-size: 8px 8px;
}

body {
  font-family: sans-serif;
  font-size: 16px;
  color: #262626;
  line-height: 2;
  background-color: #ffffff;
}

.header-logo img, .footer-logo img {
  max-width: 100%;
}

.header-inner {
  max-width: 1200px;
  height: 110px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-inner h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  text-align: center;
}

.toggle-menu-button {
  display: none;
}

.header-logo {
  display: block;
  width: 120px;
}

.site-menu ul {
  display: flex;
}

.site-menu ul li {
  margin-left: 30px;
  margin-right: 30px;
}

.site-menu ul li a {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
}

/*==================================================
　選択中メニューの色変える
===================================*/
.gnavi li.current a,
.gnavi li a:hover{
	color:#3670b8;
}
/*==================================================
　選択中メニューの色変える終わり
===================================*/

.title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  margin-top: 30px;
}

footer {
  margin-top: 50px;
  color: #262626;
  background-color: #ffffff;
  padding-top: 30px padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sns {
  margin-bottom: 15px;
}

.ig img {
  width: 40px;
  margin: 15px;
}

.line img {
  width: 40px;
  margin: 15px;
}

/*==================================================
　ページトップへ
===================================*/

html{
    scroll-behavior: smooth;
}
.gotop{
    display: block;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    background: #FFF;
    border: 1px solid #999;
    padding-top: 30px;
    text-align: center;
    letter-spacing: -1px;
    font-size: 90%;
    text-decoration: none;
    color: #333;
    opacity: 0.5;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}
.gotop::before{
    content: "";
    display: block;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    width: 25%;
    height: 25%;
    top: 25%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(-45deg);
}
.gotop:hover{
    opacity: 1;
}

/*==================================================
　ページトップへ終わり
===================================*/

.footer-logo {
  display: block;
  width: 150px;
  margin-top: 0;
}

.copyright {
  font-size: 14px;
  margin-top: 0;
}

@media (max-width: 800px) {
  .site-menu ul {
    display: block;
    text-align: center;
  }

  .site-menu li {
    margin-top: 20px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    height: 50px;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }

  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    position: relative;
  }

  .header-inner h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    text-align: center;
  }

  .header-logo {
    width: 100px;
  }

  .header-site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: #ffffff;
    background-color: #736E62;
    padding-top: 30px;
    padding-bottom: 50px;
    display: none;
  }

  .toggle-menu-button {
    display: block;
    width: 44px;
    height: 34px;
    background-image: url(../images/icon-menu.png);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
  }

  .header-site-menu.is-show {
    display: block;
  }

  .main {
    padding-top: 50px;
  }

  /*==================================================
  　ページトップへ
  ===================================*/

  .gotop{
    font-weight: bold;
        width: 40px;
        height: 40px;
        text-indent: -9999px;
        opacity: 1;
        border: none;
        background: none;
        right: 5px;
        bottom: 10px;
    }
    .gotop::before{
        bottom: 0;
    }

    /*==================================================
    　ページトップへ終わり
    ===================================*/
}
