@charset "UTF-8";
/* ヘッダー
***************************************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  color: #222222;
  z-index: 10;
  height: 0 !important;
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 20px;
}

/* ハンバーガーメニュー非表示 */
.toggle-menu {
  display: none;
}
.toggle-menu:hover {
  cursor: pointer;
}

/* ヘッダーリンク */
.header_nav {
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
}

.global_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  list-style: none;
}

.global_nav ul li a {
  color: #222222;
  text-decoration: none;
  font-size: 16px;
}

@media screen and (min-width: 1px) {
  header {
    padding: 0;
  }
  .header_inner {
    display: block;
    margin: 0;
  }
  .logo_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  /* ハンバーガーメニュー */
  .toggle-menu {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: none;
    border: none;
    display: inline-block;
    width: 84px;
    height: 84px;
    position: relative;
    z-index: 100;
    background-color: #D32D23;
    border-radius: 0 0 0 10px;
  }
  .toggle-menu__text {
    font-size: 20px;
    color: #fff;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
    opacity: 1;
    font-weight: 600;
  }
  .toggle-menu .toggle-line {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    text-indent: -9999px;
    width: 30px;
    height: 1px;
  }
  .toggle-menu .toggle-line::before,
  .toggle-menu .toggle-line::after {
    content: "";
    position: absolute;
    left: -3px;
    width: 40px;
    height: 3px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .toggle-menu .toggle-line::before {
    top: -7px;
    -webkit-animation: menu-barTop 0.6s forwards;
    animation: menu-barTop 0.6s forwards;
  }
  .toggle-menu .toggle-line::after {
    top: 7px;
    -webkit-animation: menu-barBottom 0.6s forwards;
    animation: menu-barBottom 0.6s forwards;
  }
  .header_nav {
    position: fixed;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 400px;
    height: 100vh;
    background-color: #F8F8F8;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .global_nav {
    margin-top: 72px;
    padding-left: 25px;
    margin-bottom: 20px;
  }
  .open .toggle-menu {
    -webkit-transition: all 0.5s linear 1s;
    transition: all 0.5s linear 1s;
  }
  .open .toggle-menu__text {
    opacity: 0;
  }
  .open .toggle-menu .toggle-line {
    height: 0;
    background-color: #000;
  }
  .open .toggle-menu .toggle-line::before {
    background-color: #fff;
    -webkit-animation: active-menu-barTop 0.6s forwards;
    animation: active-menu-barTop 0.6s forwards;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 0;
  }
  .open .toggle-menu .toggle-line::after {
    background-color: #fff;
    -webkit-animation: active-menu-barBottom 0.6s forwards;
    animation: active-menu-barBottom 0.6s forwards;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 0;
  }
  .open .header_nav {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    overflow: auto;
  }
  .global_nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    padding: 0;
    font-size: 16px;
  }
}
.header-hr {
  border-top: 1px solid #DDDDDD;
}

.guide {
  padding: 13px 25px;
}

.guide__link {
  font-size: 17px;
  color: #222222;
}

.tel {
  padding: 15px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}

.tel__item {
  display: grid;
  grid-template-columns: 104px 1fr;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  color: #D32C24;
}

.tel__name {
  font-size: 16px;
  color: #222222;
  font-weight: 600;
}

.tel__number {
  color: #D32C24;
  text-decoration: none;
  font-size: 19px;
  font-weight: 600;
}

.fv {
  background-image: url(../images/top/fv_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  height: 330px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv {
    background-image: url(../images/top/fv_bg_sp.png);
    height: 228px;
  }
}

@media screen and (max-width: 768px) {
  .fv._single {
    background-image: url(../images/top/fv_bg_sp_single.png);
    height: 222px;
  }
}

.fv-title__img-wrap {
  position: absolute;
  top: 23%;
  left: 9.6%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .fv-title__img-wrap {
    top: 0;
    left: 0;
  }
}

.fv-title__img-wrap._single {
  top: 12%;
}

.fv-title1__img {
  width: 541px;
}
@media screen and (max-width: 768px) {
  .fv-title1__img {
    width: 330px;
    margin-top: 50px;
    margin-left: 20px;
  }
}

.fv-title1__img._single {
  width: 416px;
}
@media screen and (max-width: 768px) {
  .fv-title1__img._single {
    width: 234px;
    position: relative;
    margin-top: -6px;
  }
}

.fv-title2__img {
  width: 254px;
  display: block;
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .fv-title2__img {
    width: 172px;
    margin-top: 17px;
    margin-left: 20px;
  }
}

.fv-title2__img._single {
  display: inline-block;
  margin-top: 32px;
  margin-left: 25px;
}
@media screen and (max-width: 768px) {
  .fv-title2__img._single {
    position: absolute;
    right: 0;
    width: 134px;
    left: 49%;
    top: -8%;
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .toggle-menu {
    width: 50px;
    height: 50px;
  }
  .toggle-menu__text {
    font-size: 12px;
  }
  .header_nav {
    width: 250px;
  }
  .global_nav {
    margin-top: 58px;
    padding-left: 20px;
    margin-bottom: 12px;
  }
  .global_nav ul {
    gap: 10px;
    font-size: 14px;
  }
  .global_nav ul li a {
    font-size: 14px;
  }
  .guide {
    padding: 9px 20px;
    line-height: 1.5;
  }
  .guide__link {
    font-size: 14px;
  }
  .tel {
    gap: 6px;
    padding: 13px 20px;
  }
  .tel__item {
    grid-template-columns: 85px 1fr;
  }
  .tel__name {
    font-size: 14px;
  }
  .tel__number {
    font-size: 16px;
  }
  .toggle-menu .toggle-line {
    top: -3px;
    width: 9px;
  }
  .toggle-menu .toggle-line::before,
  .toggle-menu .toggle-line::after {
    width: 18px;
  }
}