@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: 16px;
  color: #000000;
  line-height: 1.5em;
  background-color: #ffffff;
}
img {
  max-width: 100%;
}
.header-inner {
  max-width: 1200px;
  height: 110px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.toggle-menu-button {
  display: none;
}
.header-logo {
  display: block;
  width: 170px;
}
/*▼ヘッダーロゴのホバー設定▼*/
.header-logo img {
  /* width: 235px; */
  /* height: auto; */
  display: block;
  opacity: 1;
  transition: 0.3s;
}
.header-logo:hover img {
  opacity: 0.5;
}
/*▲ヘッダーロゴのホバー設定▲*/
.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;
}
/*▼ナビメニューホバー設定▼*/
.site-menu ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.site-menu ul li a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 5px;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
  background-color: #990000;
}
.site-menu ul li a:hover::after {
  transform: scale(1, 1);
}
/*▲ナビメニューホバー設定▲*/
.footer {
  color: #ffffff;
  background-color: #f15a24;
  padding-top: 30px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/*▼フッターロゴのホバー設定▼*/
.footer-logo img {
  /* width: 235px; */
  /* height: auto; */
  display: block;
  opacity: 1;
  transition: 0.3s;
}
.footer-logo:hover img {
  opacity: 0.5;
}
/*▲フッターロゴのホバー設定▲*/
.sns ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}
.sns ul li {
  width: 60px;
  height: 60px;
  margin-left: 20px;
  margin-right: 20px;
}
/*▼snsロゴのホバー設定▼*/
.sns ul li a img {
  /* width: 235px; */
  /* height: auto; */
  display: block;
  opacity: 1;
  transition: 0.3s;
}
.sns ul li a:hover img {
  opacity: 0.5;
}
/*▲snsロゴのホバー設定▲*/
.footer-logo {
  display: block;
  width: 235px;
  margin-top: 30px;
}
.footer-tel {
  font-size: 26px;
  font-weight: bold;
  margin-top: 28px;
}
.footer-time {
  font-size: 13px;
  margin-top: 16px;
}
.copyright {
  font-size: 14px;
  font-weight: bold;
  margin-top: 90px;
}

/*▲デスクトップ▲*/
/*▼モバイル・タブレット画面サイズが800pxまで適用される▼*/
@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; デフォルト*/
    padding-right: 0px;
    height: 100%;
    position: relative;
  }
  .header-logo {
    width: 100px;
  }
  .header-site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /*color: #ffffff;　デフォルト*/
    color: #000000;
    /*background-color: #736e62;　デフォルト*/
    background-color: #fff9e5;
    padding-top: 30px;
    padding-bottom: 50px;
    display: none;
  }
  .header-site-menu.is-show {
    display: block;
  }
  .toggle-menu-button {
    display: block;
    width: 132px;
    height: 34px;
    background-image: url(../images/common/icon-menu.png);
    background-size: 65%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
  }
  .main {
    padding-top: 50px;
  }
  .footer-logo {
    margin-top: 45px;
  }
  .footer-tel {
    font-size: 20px;
  }
  .copyright {
    margin-top: 50px;
  }
}
