@charset 'UTF-8';

/* 下層ページヘッダー */
.page_header {
  background-color: #fff;
}

.page_header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: min(1.51vw, 20px);
  padding-bottom: min(.75vw, 10px);
}

.header_logo {
  display: block;
  width: min(14.77vw, 195px);
  object-fit: contain;
}

.page_header_nav {
  display: flex;
  text-align: center;
}

.page_header_nav ul {
  display: flex;
  align-items: center;
}

.page_header_nav li {
  margin-left: min(2.65vw, 35px);
  font-size: min(1.21vw, 16px);
  transition: all .3s ease 0s;
}

.page_header_nav li:first-child {
  margin-left: 0
}

.nav_button {
  display: none;
}

/* スマホ対応（下層ページヘッダー） */
@media (max-width: 768px) {
  .page_header_inner {
    margin: auto 0;
  }

  .header_logo {
    width: 50%;
  }

  /* ハンバーガーメニュー */
  .page_header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5%;
    width: 100%;
    background-color: #fff;
  }

  .nav_button {
    position: relative;
    z-index: 12;
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../image/nav-open.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .page_header_nav ul {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 2em;
    width: 100%;
    height: 100%;
    background-color: #f49132;
    color: #fff;
    transition: .4s;
    transform: translateX(100%);
  }

  .page_header_nav li {
    font-size: 4vw;
  }

  .nav_open .page_header_nav ul {
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    width: 100%;
    height: 100%;
    transform: translateX(0);
  }

  .nav_open .nav_button {
    background-image: url(../image/nav-close.svg);
  }
}


/* 下層ページメインビジュアル */
.page_mv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(36.11vw, 520px);
  clip-path: polygon(0 45%, 50% 0%, 100% 45%, 100% 100%, 0 100%);
  text-align: center;
}

.page_mv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 220, 178, .5);
}

.page_mv_title {
  position: absolute;
  top: 50%;
  left: 50%;
  padding-top: min(1.89vw, 25px);
  padding-right: 1em;
  padding-bottom: min(1.89vw, 25px);
  padding-left: 1em;
  min-width: 488px;
  width: max-content;
  background-color: rgba(244, 145, 50, .9);
  color: #fff;
  font-weight: 700;
  font-size: min(2.5vw, 36px);
  transform: translate(-50%, -50%);
}

/* スマホ対応(下層ページメインビジュアル) */
@media (max-width: 1000px) {
  .page_mv_title {
    top: 60%;
    min-width: 230px;
    font-size: min(3.73vw, 24px);
  }
}

/* パンくずリスト */
.breadcrumb {
  margin-top: min(1.51vw, 20px);
}

.breadcrumb ul {
  display: flex;
  font-weight: 500;
  font-size: min(1.06vw, 14px);
}

.breadcrumb li {
  display: flex;
  align-items: center;
  margin-right: min(1.51vw, 20px);
}

.breadcrumb li:last-child {
  margin-right: 0;
}

.breadcrumb li+li::before {
  content: '';
  display: block;
  margin-right: min(1.51vw, 20px);
  width: .4em;
  height: .4em;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .breadcrumb ul {
    /* 9px */
    font-size: 2.4vw;
  }
}