@charset "UTF-8";

/* header.css */
.p-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 52px;
  background-color: #1c1c1c;
  border-bottom: 1px solid #f3f3f3;
}

@media (min-width: 768px) {
  .p-header {
    height: 60px;
  }
}

.p-header__inner {
  width: 100%;
  height: inherit;
  margin-inline: auto;
  padding-inline: 0.5rem;
}

@media (min-width: 768px) {
  .p-header__inner {
    max-width: 85.375rem;
  }
}

.p-header__contents {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .p-header__logo:hover {
    opacity: 0.8;
  }
}

.p-header__logo img {
  width: 2.375rem;
  height: 2.375rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__logo p {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .p-header__logo p {
    font-size: 1.25rem;
  }
}

.p-header__nav {
  display: none;
}

@media (min-width: 768px) {
  .p-header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
  }
}

@media (min-width: 768px) {
  .p-header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}

.p-header__list a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .p-header__list a:hover {
    opacity: 0.7;
  }
}

.p-header__list p {
  color: #ffffff;
  font-size: 0.875rem;
}

.p-header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.625rem;
  -moz-column-gap: 0.625rem;
  column-gap: 0.625rem;
}

.p-header__contact,
.p-header__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  border-radius: 0.3125rem;
  padding: 0.6875rem 1rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-header__contact p,
.p-header__line p {
  color: #ffffff;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (any-hover: hover) {

  .p-header__contact:hover,
  .p-header__line:hover {
    opacity: 0.85;
  }
}

.p-header__contact img,
.p-header__line img {
  width: 0.8125rem;
  height: auto;
}

.p-header__line img {
  width: 1.0625rem;
  height: auto;
  aspect-ratio: 17/16.554;
}

.p-header__contact {
  background: -webkit-gradient(linear, left top, right top, from(#8099f7), to(#8067cf));
  background: linear-gradient(to right, #8099f7, #8067cf);
}

.p-header__line {
  background: -webkit-gradient(linear, left top, right top, from(#0cc153), to(#048492));
  background: linear-gradient(to right, #0cc153, #048492);
}

/*----------------------------------
  パンくず（ヘッダー右下・FV上部）
-----------------------------------*/
.p-bcm {
  position: absolute;
  z-index: 100;
  top: 70px;
  left: 0;
  width: 100%;
  display: none;
}

@media (min-width: 768px) {
  .p-bcm {
    display: block;
  }
}

.p-bcm__inner {
  width: 100%;
  max-width: 85.375rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
  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;
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

.p-bcm__top,
.p-bcm__current {
  font-size: 0.75rem;
}

.p-bcm__top p,
.p-bcm__current p {
  color: #ffffff;
}

.p-bcm__current {
  color: #ffffff;
}

.p-bcm__triangle {
  width: 0.375rem;
  height: auto;
}

/*----------------------------------
  ドロワーアイコン
-----------------------------------*/
.p-drawer__icon {
  cursor: pointer;
  position: fixed;
  z-index: 102;
  display: grid;
  place-items: center;
  background-color: #2c2c2c;
  top: 7px;
  right: 0.9375rem;
  width: 2.375rem;
  height: 2.375rem;
}

@media (min-width: 768px) {
  .p-drawer__icon {
    display: none;
  }
}

.p-drawer__icon--bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 0.3125rem;
}

.p-drawer__icon--bar1,
.p-drawer__icon--bar2,
.p-drawer__icon--bar3 {
  height: 1px;
  width: 1.25rem;
  background: #ffffff;
  border-radius: 100vmax;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.p-drawer__icon.js-show .p-drawer__icon--bar1 {
  rotate: 45deg;
  translate: 0 3px;
}

.p-drawer__icon.js-show .p-drawer__icon--bar2 {
  display: none;
}

.p-drawer__icon.js-show .p-drawer__icon--bar3 {
  rotate: -45deg;
  translate: 0 -3px;
}

.p-drawer {
  position: fixed;
  z-index: 101;
  overflow-y: scroll;
  top: 0;
  right: 0;
  width: 80vw;
  max-width: 26.25rem;
  height: 100svh;
  background: #1c1c1c;
  padding: 6.25rem 2.5rem 3.75rem;
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}

.p-drawer.js-show {
  translate: 0;
}

.p-drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 1.875rem;
}

.p-drawer__item {
  text-align: center;
  width: 100%;
  border-bottom: 1px solid #3c3c3c;
  padding-block: 1.125rem;
}

@media (any-hover: hover) {
  .p-drawer__item:hover a {
    opacity: 0.7;
  }
}

.p-drawer__item a {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-drawer__item p {
  font-size: 0.9375rem;
  color: #ffffff;
}

.p-drawer__btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 0.9375rem;
  -webkit-margin-before: 1.875rem;
  margin-block-start: 1.875rem;
}

.p-drawer__btn-list .p-header__contact,
.p-drawer__btn-list .p-header__line {
  padding-block: 0.9375rem;
}