@charset "UTF-8";
/* --------------------------------------------------------
-----------------------------------------------------------
 Header
-----------------------------------------------------------
----------------------------------------------------------- */
body.--header-nav-open {
  overflow: hidden;
}

.Header {
  padding-top: 55px;
}

.Header .header-inner {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 55px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
}

.Header .header-main {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 8px;
  z-index: 100;
}

.Header .header-logo {
  max-width: 160px;
}

.header-sp-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 5px;
}

.header-button-tel {
  width: 42px;
  height: 36px;
}

.header-button-tel a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #1e695c;
  font-size: 25px;
  text-decoration: none;
}

.header-button-tel i {
  font-size: inherit;
}

/* header-nav-button
--------------------------------------------------------- */
.Header .header-nav-button {
  position: relative;
  width: 42px;
  height: 36px;
  padding: 6px;
}

.Header .header-nav-button-icon {
  display: block;
}

.Header .header-nav-button-icon span {
  display: block;
  transition: all 0.3s;
  background-color: #1e695c;
  height: 2px;
  border-radius: 1px;
}

.Header .header-nav-button:not(.--open) .header-nav-button-icon span + span {
  margin-top: 7px;
}

.Header .header-nav-button.--open .header-nav-button-icon span {
  display: none;
  position: absolute;
  margin: 0 auto;
  right: 0;
  left: 0;
  top: 4px;
  width: 81%;
}
.Header .header-nav-button.--open .header-nav-button-icon span:first-child {
  display: block;
  transform: translateY(14px) rotate(-45deg);
}
.Header .header-nav-button.--open .header-nav-button-icon span:nth-child(2) {
  display: block;
  transform: translateY(14px) rotate(45deg);
}

/*
-----------------------------------------------------------
 header-nav-area
----------------------------------------------------------- */
.Header .header-nav-area {
  display: none;
  position: fixed;
  top: 55px;
  left: 0;
  width: 100%;
  overflow: auto !important;
  -webkit-overflow-scrolling: touch;
  height: calc(100% - 55px);
  background: rgba(255, 255, 255, 0.95);
  z-index: 200;
  padding: 30px 30px 60px;
}

.Header .header-nav-area-inner {
  margin: 0 auto;
  max-width: 320px;
}

.Header .header-tel {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

.Header .header-tel a {
  text-decoration: none;
  display: flex;
  height: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  color: #1e695c;
  font-size: 22px;
  gap: 3px;
}

.Header .header-tel i {
  font-size: 105%;
}

.Header .header-tel span {
  letter-spacing: 0;
  font-weight: bold;
}

/* header-button-list
----------------------------------------------------------- */
.Header .header-button-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.Header .header-button-list li {
  margin: 0;
  padding: 0;
}

.Header .header-button-list li + li {
  margin-top: 10px;
}

.Header .header-button-list li .button {
  font-family: Arial, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  transition: opacity 0.2s;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  line-height: 1.3;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  gap: 8px;
  height: 50px;
  padding: 0 15px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.Header .header-button-list li .button:hover {
  opacity: 0.7;
}

.Header .header-button-list .button span {
  display: block;
}

.Header .header-button-list .button .btn-icon,
.Header .header-button-list .button .btn-icon-img {
  width: 36px;
  text-align: center;
}

.Header .header-button-list .button .btn-icon::before {
  font-size: 24px;
}

.Header .header-button-list .button .btn-icon-img img {
  width: 19px;
}

.Header .header-button-list li.btn-order .button {
  background: #ed4e18;
  background: -moz-linear-gradient(left, #ed4e18 0%, #fc820e 100%);
  background: -webkit-linear-gradient(left, #ed4e18 0%, #fc820e 100%);
  background: linear-gradient(to right, #ed4e18 0%, #fc820e 100%);
}

.Header .header-button-list .btn-contact .button {
  background: #1f685c;
}

.Header .header-button-list .btn-request .button {
  background: #ed4e18;
  background: -moz-linear-gradient(left, #ed4e18 0%, #fc820e 100%);
  background: -webkit-linear-gradient(left, #ed4e18 0%, #fc820e 100%);
  background: linear-gradient(to right, #ed4e18 0%, #fc820e 100%);
}

/* header-nav
----------------------------------------------------------- */
.Header .header-nav-list .nav-item + .nav-item {
  margin-top: 11px;
}

.Header .header-nav .header-nav-list .nav-item-link {
  transition: opacity 0.2s;
  font-family: Arial, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.3;
  padding: 5px 0;
}
.Header .header-nav .header-nav-list .nav-item-link:hover {
  opacity: 0.7;
}

.Header .header-nav .dropdown-nav .dropdown-nav-list {
  padding-left: 15px;
  padding-bottom: 15px;
  margin-top: 5px;
}

.Header .header-nav .dropdown-nav .dropdown-nav-list li + li {
  margin-top: 5px;
}

.Header .header-nav .dropdown-nav .dropdown-nav-list a {
  transition: opacity 0.2s;
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.3;
  padding: 5px 5px 5px 11px;
}
.Header .header-nav .dropdown-nav .dropdown-nav-list a:hover {
  opacity: 0.7;
}
.Header .header-nav .dropdown-nav .dropdown-nav-list a::before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent #CCC;
}

.Header .header-nav-list02 {
  margin-top: 25px;
  line-height: 1.3;
  border-top: 1px solid #CCC;
  padding-top: 25px;
}

.Header .header-nav-list02 li + li {
  margin-top: 14px;
}

.Header .header-nav-list02 a {
  transition: opacity 0.2s;
  color: #888;
  text-decoration: none;
  font-size: 13px;
}
.Header .header-nav-list02 a:hover {
  opacity: 0.7;
}