@charset "utf-8";

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

ul,
ol {
  list-style: none;
}

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

body {
  font-family: sans-serif;
  font-size: 18px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
}

img {
  max-width: 100%;
}

h1 {
  font-size: 40px;
  line-height: 1.5;
}

h2 {
  font-size: 24px;
  line-height: 1.5;
}

h3 {
  font-size: 20px;
  line-height: 1.5;
}

h3-4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

.font-white {
  color: #ffffff;
}

.font-orange {
  color: rgb(234, 85, 20);
}

.font-brown {
  color: rgb(149, 97, 52);
}

.hidamari-mark {
  max-width: 60%;
  margin-top: 30px;
}

.title-size80 {
  max-width: 80%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.title-size100 {
  max-width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.comment {
  margin: auto;
  width: 750px;
  text-align: left;
  padding-top: 10px;
}

.header-inner {
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  justify-content: space-between;
  align-items: center;
}

.header-inner-logo {
  text-align: center;
  padding-bottom: 10px;
}

.toggle-menu-button {
  display: none;
}

.header-site-menu {
  color: rgb(234, 85, 20);
}
.site-menu ul {
  display: flex;
}

.site-menu ul li {
  margin-left: 20px;
  margin-right: 20px;
}

.site-menu ul li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}

.button-center {
  text-align: center;
}

.button {
  background-color: rgb(234, 85, 20);
  color: #ffffff;
  font-size: large;
  font-weight: bold;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.view-adjust {
  padding-bottom: 30px;
}

.footer {
  color: rgb(234, 85, 20);
  background-color: #ffffff;
  padding-top: 30px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: block;
  width: 235px;
  margin-top: 90px;
}

.footer-tel {
  font-size: 20px;
  font-weight: bold;
  margin-top: 16px;
}

.footer-add {
  font-size: 20px;
  font-weight: bold;
  margin-top: 16px;
}

.copyright {
  font-size: 14px;
  font-weight: bold;
  margin-top: 40px;
}

@media (max-width: 1000px) {
  .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: 100px;
    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;
    display: flex;
  }

  .header-inner-logo {
    padding-bottom: 0px;
  }
  
  .header-logo {
    display: block;
    width: 250px;
    margin-left: 30px;
  }

  .toggle-menu-button {
    display: block;
    width: 66px;
    height: 51px;
    background-image: url(../images/common/icon-menu.png);
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
  }

  .header-site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: #ffffff;
    background-color: #736E62;
    padding-top: 30px;
    padding-bottom: 50px;
    display: none;
  }

  .header-site-menu.is-show {
    display: block;
  }

  .main {
    padding-top: 50px;
  }

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

  .copyright {
    margin-top: 50px;
  }

  /* スマホでページ内ジャンプがズレる原因を解消 */
  .anchor-adjust {
    padding-top: 100px;
    margin-top: -100px;
  }
}

@media (max-width: 800px) {
  .comment {
    margin: auto;
    width: 360px;
    text-align: left;
    padding-top: 10px;
  }
}