.p-inner {
  width: 109.9rem;
  max-width: 100%;
  margin-inline: auto;
}

.p-container {
  width: 136.6rem;
  max-width: 100%;
  margin-inline: auto;
}

.p-header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 3rem;
  background-color: rgba(0,0,0,0);
  -webkit-transition: background var(--ease) calc(var(--transition)*3);
  transition: background var(--ease) calc(var(--transition)*3);
}

.p-header.is-active {
  background-color: var(--colorBlack);
}

.p-header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-header_logo {
  width: 25.4rem;
  height: 2.5rem;
  margin-top: 4.2rem;
  margin-left: 4.7rem;
}

.p-header_nav_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.1rem;
}

.p-header_nav_wrapper.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.p-header_nav_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 4.3rem;
  gap: 3.1rem;
}

.p-header_nav_list_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .6rem;
  color: var(--colorWhite);
  text-align: center;
  -webkit-transition: color var(--defaultHover);
  transition: color var(--defaultHover);
}

.p-header_nav_list_link_en {
  display: block;
  width: 14rem;
  height: 1.2rem;
  margin-inline: auto;
}

.p-header_nav_list_link_en img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header_nav_list_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 20rem;
  padding-top: 2.5rem;
  padding-right: 3rem;
  padding-left: 3rem;
  gap: .78rem;
  border-top: none;
  border-right: none;
  border-width: 2px;
  border-bottom-color: var(--colorRed);
  border-left-color: var(--colorRed);
  color: var(--colorWhite);
  text-align: center;
}

.p-header_nav_list_btn_en {
  display: block;
  width: 11.387rem;
  height: 1.43rem;
  margin-inline: auto;
  color: var(--colorRed);
  -webkit-transition: color var(--defaultHover);
  transition: color var(--defaultHover);
}

.p-header_nav_list_btn_en svg {
  width: 100%;
  height: 100%;
}

.p-header_btn {
  display: none;
}

.p-header_btn_line {
  display: none;
}

.p-footer_top {
  padding: 6.4rem 0;
  background-color: var(--colorRed);
}

.p-footer_top_ttl {
  width: 87.6rem;
  max-width: 100%;
  margin-inline: auto;
}

.p-footer_top_ttl img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-footer_top_contact_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2rem;
}

.p-footer_top_contact_list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.6rem 0;
  border-left: 1px solid var(--colorWhite);
  color: var(--colorWhite);
  text-align: center;
}

.p-footer_top_contact_list:last-child {
  border-right: 1px solid var(--colorWhite);
}

.p-footer_top_contact_list_img {
  width: 8rem;
  margin-inline: auto;
}

.p-footer_top_contact_list_txt {
  margin-top: 2.8rem;
}

.p-footer_top_contact_list_txt_tel {
  margin-top: 2.4rem;
  font-weight: var(--weightSemiBold);
  font-size: 3.6rem;
  line-height: 1;
  font-family: "Noto Sans JP",sans-serif;
  letter-spacing: 0;
}

.p-footer_top_contact_list_txt_tel_sub {
  margin-top: 1rem;
  font-weight: var(--weightSemiBold);
  font-size: 1.2rem;
  line-height: 1.509;
  font-family: "Noto Sans JP",sans-serif;
  letter-spacing: 0;
}

.p-footer_top_contact_list_txt_desc {
  margin-top: 2rem;
}

.p-footer_top_contact_list_btn {
  display: grid;
  position: relative;
  place-items: center;
  width: 31.6rem;
  height: 5.3rem;
  margin-top: 2.8rem;
  margin-inline: auto;
  border-color: var(--colorBlack);
  background-color: var(--colorBlack);
  color: var(--colorWhite);
  font-weight: var(--weightSemiBold);
  font-size: 1.4rem;
  line-height: 1.509;
  font-family: "Noto Sans JP",sans-serif;
  letter-spacing: 0;
}

.p-footer_top_contact_list_btn_icon {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  width: 1rem;
  height: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-footer_btm {
  color: var(--colorWhite);
}

.p-footer_btm_column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem 0;
}

.p-footer_btm_logo_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}

.p-footer_btm_logo_list_link {
  display: block;
}

.p-footer_btm_logo_list_link.is-app {
  width: 13.5rem;
}

.p-footer_btm_logo_list_link.is-google {
  width: 16.8rem;
}

.p-footer_copy {
  display: block;
  position: relative;
  width: 100%;
  padding: 1.6rem 0;
  text-align: center;
}

.p-footer_copy::after {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--colorGray);
  content: "";
}

@media screen and (max-width: 48em) {
  .p-inner {
    width: 100%;
    padding: 0 2rem;
  }
  .p-container {
    width: 100%;
  }
  .p-header {
    top: 0;
    left: 50%;
    width: 100%;
    padding: 2.6rem 2rem 2rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-header:has(.is-active) {
    height: 100%;
    overflow-y: auto;
    background-color: var(--colorBlack);
  }
  .p-header_logo {
    z-index: 110;
    position: relative;
    width: 19.3rem;
    margin-top: 0;
    margin-left: 0;
  }
  .p-header_nav_wrapper {
    visibility: hidden;
    z-index: 100;
    position: absolute;
    top: -3.2rem;
    left: -2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc(100% + 4rem);
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    min-height: 100dvh;
    padding-bottom: 3.2rem;
    overflow-y: auto;
    background-color: var(--colorBlack);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity var(--ease) calc(var(--transition)*1.5),visibility var(--ease) calc(var(--transition)*1.5);
    transition: opacity var(--ease) calc(var(--transition)*1.5),visibility var(--ease) calc(var(--transition)*1.5);
  }
  .p-header_nav_lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 14.3rem;
    gap: 6rem;
  }
  .p-header_nav_list_link_en {
    width: 16rem;
    height: 1.4rem;
  }
  .p-header_nav_list_btn {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc(100% - 4rem);
    height: 6.7rem;
    margin-top: 3rem;
    margin-inline: auto;
    padding-top: 0;
    border: 2px solid var(--colorRed);
  }
  .p-header_btn {
    display: block;
    z-index: 110;
    position: relative;
    width: 3rem;
    height: 2rem;
  }
  .p-header_btn_line {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--colorWhite);
    -webkit-transition: opacity var(--defaultHover),inset var(--defaultHover),-webkit-transform var(--defaultHover);
    transition: opacity var(--defaultHover),inset var(--defaultHover),-webkit-transform var(--defaultHover);
    transition: opacity var(--defaultHover),transform var(--defaultHover),inset var(--defaultHover);
    transition: opacity var(--defaultHover),transform var(--defaultHover),inset var(--defaultHover),-webkit-transform var(--defaultHover);
  }
  .p-header_btn_line:nth-child(1) {
    top: 0;
  }
  .p-header_btn_line:nth-child(2) {
    bottom: 0;
  }
  .p-header_btn_line:nth-child(3) {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .p-header:has(.is-active) .p-header_btn {
    width: 1.875rem;
    height: 1.875rem;
  }
  .p-header:has(.is-active) .p-header_btn_line:nth-child(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
  }
  .p-header:has(.is-active) .p-header_btn_line:nth-child(2) {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .p-header:has(.is-active) .p-header_btn_line:nth-child(3) {
    opacity: 0;
  }
  .p-footer_top_ttl {
    width: calc(100% + 4rem);
    margin-left: -2rem;
  }
  .p-footer_top_ttl img {
    width: calc(100% + 4rem);
    max-width: none;
  }
  .p-footer_top_contact_lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 4rem;
  }
  .p-footer_top_contact_list {
    padding-top: 0;
    padding-bottom: 4rem;
    border-left: none;
  }
  .p-footer_top_contact_list:last-child {
    padding-top: 4rem;
    padding-bottom: 0;
    border-top: 1px solid var(--colorWhite);
    border-right: none;
  }
  .p-footer_top_contact_list_txt {
    margin-top: 1.8rem;
  }
  .p-footer_top_contact_list_txt_tel {
    font-size: 3.2rem;
  }
  .p-footer_top_contact_list_btn {
    margin-top: 1.8rem;
  }
  .p-footer_top_contact_list_btn_icon {
    right: 1.2rem;
    width: 1.2rem;
    height: 1.2rem;
  }
  .p-footer_btm_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 5rem;
    padding-bottom: 2rem;
    gap: 3rem;
  }
  .p-footer_btm_logo_lists {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-footer_btm_logo_list_link.is-app {
    width: 14.1rem;
  }
  .p-footer_btm_logo_list_link.is-google {
    width: 17.5rem;
  }
  .p-footer_btm_txt {
    font-size: 1.3rem;
    text-align: center;
  }
  .p-footer_copy {
    width: calc(100% + 4rem);
    margin-left: -2rem;
  }
}

@media (hover: hover) {
  .p-header_nav_list_link:hover {
    color: var(--colorRed);
  }
  .p-header_nav_list_btn:hover {
    background-color: var(--colorRed);
  }
  .p-header_nav_list_btn:hover .p-header_nav_list_btn_en {
    color: var(--colorWhite);
  }
  .p-footer_top_contact_list_btn:hover {
    border-color: var(--colorWhite);
    background-color: var(--colorWhite);
    color: var(--colorBlack);
  }
}
