*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

@media screen and (max-width: 1189px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1190 * 100vw);
  }
}
@media screen and (max-width: 374px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

body {
  color: #343434;
  font-family: "Noto Sans JP", sans-serif;
}
body.is-fixed {
  overflow: hidden;
  touch-action: none;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 90rem;
  z-index: 105;
  padding-inline: 2.5rem;
  padding-block-start: 1.25rem;
}
@media screen and (max-width: 767.99px) {
  .l-header {
    padding-block: 0.75rem;
    padding-inline: 1.4375rem;
  }
  .l-header.--scrolled {
    background: #fff;
  }
  .l-header.js-show.--scrolled {
    background: transparent;
  }
}
.l-header.--scrolled .p-header__content {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  color: #343434;
}
.l-header.--scrolled .p-header__link::before {
  background-color: #343434;
}
.l-header.--scrolled .p-header__link-text::after {
  background: #343434;
}

.l-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6.25rem;
  max-width: 85rem;
}
@media screen and (max-width: 767.99px) {
  .l-header__inner {
    height: 2.625rem;
    align-items: center;
  }
}

.l-drawer {
  position: fixed;
  z-index: 101;
  overflow-y: scroll;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: #343434;
  color: #ffffff;
  padding-top: 7.5rem;
  translate: 101%;
  transition: translate 0.3s ease;
}
.l-drawer.js-show {
  translate: 0;
}

.l-drawer__inner {
  padding-inline: 1.4375rem;
  padding-block-end: 3.75rem;
}

.l-main {
  padding: 0;
  overflow: hidden;
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 1190px;
  height: inherit;
  padding: 0 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.99px) {
  .l-inner {
    width: 100%;
    max-width: 648px;
    padding: 0 1.5rem;
  }
}

.l-inner__narrow {
  max-width: 50rem;
}
@media screen and (max-width: 767.99px) {
  .l-inner__narrow {
    padding: 0 1.5rem;
    max-width: 600px;
  }
}

.l-footer {
  position: relative;
  color: #ffffff;
  padding-block: 5.8125rem 1.5625rem;
}
@media screen and (max-width: 767.99px) {
  .l-footer {
    padding-block: 3.75rem;
  }
}

.l-section {
  padding-block: 7.5rem;
}
@media screen and (max-width: 767.99px) {
  .l-section {
    padding-block: 3.75rem;
  }
}

.l-section__content {
  margin-top: 5rem;
}
@media screen and (max-width: 767.99px) {
  .l-section__content {
    margin-top: 1.25rem;
  }
}

.c-btn {
  background-color: #0d46b7;
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  width: fit-content;
  min-width: 12.9375rem;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767.99px) {
  .c-btn {
    width: 100%;
  }
}
.c-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #343434;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: 0;
}
@media (any-hover: hover) {
  .c-btn:hover::before {
    transform: translateX(0);
  }
}
.c-btn.--small {
  max-width: 12.9375rem;
}
@media screen and (max-width: 767.99px) {
  .c-btn.--small {
    max-width: 11.75rem;
    padding: 0.75rem 0.5rem 0.75rem 1.375rem;
  }
}
.c-btn.--big {
  min-width: 16.25rem;
  padding: 0.625rem 0.625rem 0.625rem 1.5625rem;
  width: fit-content;
}
@media screen and (max-width: 767.99px) {
  .c-btn.--big {
    min-width: 11.75rem;
    padding: 0.75rem 0.5rem 0.75rem 1.25rem;
  }
}

.c-btn__text {
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: calc(normal / 16);
  letter-spacing: 0em;
  color: #ffffff;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767.99px) {
  .c-btn__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.99px) {
  .c-btn__text {
    font-size: max(0.75rem, 9.6px);
    font-weight: 500;
    line-height: calc(normal / 12);
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .c-btn__text {
    font-size: 0.75rem;
  }
}

.c-btn__icon {
  width: 2rem;
  height: 2rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767.99px) {
  .c-btn__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.c-cta-btn {
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  background-color: #0d46b7;
}
.c-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #343434;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: 0;
}
@media (any-hover: hover) {
  .c-cta-btn:hover::before {
    transform: translateX(0);
  }
}

.c-cta-btn__text {
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: calc(normal / 16);
  letter-spacing: 0em;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767.99px) {
  .c-cta-btn__text {
    font-size: 1rem;
  }
}

.c-section-ttl {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.c-section-ttl__en {
  font-family: "Inter", sans-serif;
  font-size: max(2.75rem, 35.2px);
  font-weight: 700;
  line-height: calc(normal / 44);
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .c-section-ttl__en {
    font-size: 2.75rem;
  }
}
@media screen and (max-width: 767.99px) {
  .c-section-ttl__en {
    font-size: max(2rem, 25.6px);
    font-weight: 700;
    line-height: calc(normal / 32);
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .c-section-ttl__en {
    font-size: 2rem;
  }
}

.c-section-ttl__sub {
  font-size: max(1rem, 12.8px);
  font-weight: 700;
  line-height: calc(normal / 16);
  letter-spacing: 0em;
  color: #797a7b;
}
@media screen and (max-width: 767.99px) {
  .c-section-ttl__sub {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.99px) {
  .c-section-ttl__sub {
    font-size: max(0.9375rem, 12px);
    font-weight: 700;
    line-height: calc(normal / 15);
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .c-section-ttl__sub {
    font-size: 0.9375rem;
  }
}

.c-breadcrumb {
  position: relative;
  width: 100%;
  max-width: 1190px;
  height: inherit;
  padding: 0.75rem 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.99px) {
  .c-breadcrumb {
    display: none;
    width: 100%;
    max-width: 648px;
    padding: 0 1.5rem;
    padding-block: 0.75rem;
  }
}

.c-breadcrumb__list {
  display: flex;
  align-items: center;
}

.c-breadcrumb__item {
  font-size: max(0.9375rem, 12px);
  font-weight: 400;
  line-height: calc(normal / 15);
  letter-spacing: 0em;
  color: #797a7b;
}
@media screen and (max-width: 767.99px) {
  .c-breadcrumb__item {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767.99px) {
  .c-breadcrumb__item {
    font-size: max(0.75rem, 9.6px);
    font-weight: 400;
    line-height: calc(normal / 12);
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .c-breadcrumb__item {
    font-size: 0.75rem;
  }
}

.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "/";
  margin: 0 0.5em;
  color: #797a7b;
}

.c-breadcrumb__current {
  color: #343434;
}

.p-header__logo-wrap {
  max-width: 17.5625rem;
  height: auto;
  width: 100%;
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 767.99px) {
  .p-header__logo-wrap {
    max-width: 9.5625rem;
    padding-bottom: 0;
  }
}

@media (any-hover: hover) {
  .p-header__logo {
    transition: opacity 0.3s ease;
  }
  .p-header__logo:hover {
    opacity: 0.5;
  }
}

.l-header.js-show .p-header__logo {
  display: none;
}
.l-header.js-show .p-header__logo-white {
  display: block;
}

.p-header__logo-white {
  display: none;
}

.p-header__content {
  display: flex;
  align-items: center;
  gap: 3.25rem;
  color: #ffffff;
  height: auto;
  padding-block: 0.6875rem;
  border-radius: 0.75rem;
  padding-inline: 2.5rem 0.9375rem;
}
@media screen and (max-width: 767.99px) {
  .p-header__content {
    display: none;
  }
}

.p-header__nav {
  height: 100%;
}

.p-header__list {
  display: flex;
  align-items: center;
  gap: 3.25rem;
  height: 100%;
}

.p-header__item {
  height: 100%;
}

.p-header__link {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (any-hover: hover) {
  .p-header__link:hover {
    cursor: pointer;
  }
  .p-header__link:hover .p-header__link-text::after {
    width: 100%;
  }
}

.p-header__link-text {
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: calc(normal / 16);
  letter-spacing: 0em;
  position: relative;
  padding-block: 0.625rem;
}
@media screen and (max-width: 767.99px) {
  .p-header__link-text {
    font-size: 1rem;
  }
}
.p-header__link-text::after {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0;
  width: 0;
  height: 2px;
  transform-origin: left center;
  transition: width 0.3s ease;
  background: #fff;
}
.p-header__link-text .p-header__link-submenu-head {
  position: relative;
}

.p-header__submenu-wrap {
  position: absolute;
  top: calc(100% - 0.3125rem);
  left: -1.25rem;
  width: 13.75rem;
  height: auto;
  padding-block-start: 0.9375rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.p-header__submenu-wrap.is-show {
  opacity: 1;
  visibility: visible;
}

.p-header__submenu {
  padding: 1.25rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  background: #fff;
}
.p-header__submenu a {
  display: block;
  text-align: left;
  padding: 0.25rem;
  color: #343434;
  font-size: max(0.875rem, 11.2px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 767.99px) {
  .p-header__submenu a {
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .p-header__submenu a:hover {
    opacity: 0.7;
  }
}

.p-header__btn-wrap {
  flex: 1;
}

.p-header__btn {
  background-color: #0d46b7;
  width: 12.9375rem;
  padding-block: 1.21875rem;
  border-radius: 0.75rem;
  text-align: center;
  color: #ffffff;
}

.p-header__btn-text {
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: calc(normal / 16);
  letter-spacing: 0em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767.99px) {
  .p-header__btn-text {
    font-size: 1rem;
  }
}

.p-drawer__icon {
  background-color: #0d46b7;
  border-radius: 0.25rem;
  padding: 0.875rem 0.625rem 0.875rem 0.875rem;
  display: none;
}
@media screen and (max-width: 767.99px) {
  .p-drawer__icon {
    display: block;
  }
}

.p-drawer__icon-text {
  color: #ffffff;
  font-size: max(0.8125rem, 10.4px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-drawer__icon-text {
    font-size: 0.8125rem;
  }
}
.p-drawer__icon-text.--open {
  display: none;
}

.p-drawer__icon.js-show .p-drawer__icon-text {
  display: none;
}
.p-drawer__icon.js-show .p-drawer__icon-text.--open {
  display: block;
}
.p-drawer__icon.js-show .p-drawer__icon-bar:nth-of-type(2) {
  opacity: 0;
}
.p-drawer__icon.js-show .p-drawer__icon-bar:nth-of-type(1) {
  rotate: 16deg;
  translate: 0 0.3125rem;
}
.p-drawer__icon.js-show .p-drawer__icon-bar:nth-of-type(3) {
  rotate: -16deg;
  translate: 0 -0.3125rem;
}

.p-drawer__icon-inner {
  display: flex;
  gap: 0.625rem;
}

.p-drawer__icon-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.p-drawer__icon-bar {
  background-color: #ffffff;
  width: 2rem;
  height: 0.0625rem;
  transition: rotate 0.3s ease;
}

.p-drawer__icon {
  position: fixed;
  z-index: 102;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 0.75rem;
  right: 1.25rem;
  width: fit-content;
  height: auto;
}
@media (min-width: 768px) {
  .p-drawer__icon {
    display: none;
  }
}

.p-drawer__icon--bar {
  width: 100%;
  height: 0.0625rem;
  background: #000;
}

.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 0.46875rem;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -0.46875rem;
}

.p-drawer__icon--bar {
  transition: all 0.5s ease;
}

.p-drawer__list {
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.4);
}

.p-drawer__list-item {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.4);
  padding-inline: 1rem;
}

.p-drawer__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1rem;
  height: 100%;
}

.p-drawer__link-text {
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-drawer__link-text {
    font-size: 1rem;
  }
}

.p-drawer__list-item-arrow {
  width: 0.375rem;
  height: 0.625rem;
}
.p-drawer__list-item-arrow line {
  transition: rotate 0.3s ease;
  transform-origin: center;
}
.p-drawer__list-item-arrow.--plus {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
}
.p-drawer__list-item-arrow.--plus svg {
  width: 100%;
  height: auto;
}
.p-drawer__list-item-arrow.--small {
  width: 0.3125rem;
  height: 0.5rem;
}

.p-drawer__list-item-summary {
  list-style: none;
}
.p-drawer__list-item-summary::-webkit-details-marker {
  display: none;
}

.p-drawer__sub-menu-wrap {
  padding-inline: 0.4375rem;
}

.p-drawer__sub-menu-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 0.4375rem 1.9375rem;
}

.p-drawer__sub-link {
  display: flex;
  justify-content: space-between;
  padding-block: 0.25rem;
}

.p-drawer__sub-list-text {
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-drawer__sub-list-text {
    font-size: 0.875rem;
  }
}

.p-drawer__contact {
  margin-top: 3.75rem;
}

.p-drawer__contact-title {
  font-size: max(0.9375rem, 12px);
  font-weight: 700;
  line-height: calc(normal / 15);
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-drawer__contact-title {
    font-size: 0.9375rem;
  }
}

.p-drawer__btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}

.p-drawer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-block: 1rem;
  border-radius: 0.45rem;
}
.p-drawer__btn.--company {
  background-color: #5088e2;
}
.p-drawer__btn.--person {
  background-color: #0d46b7;
}

.p-drawer__btn-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.c-cta-btn__text {
  font-size: max(1.125rem, 14.4px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .c-cta-btn__text {
    font-size: 1.125rem;
  }
}

.p-drawer__bottom {
  margin-top: 3.75rem;
}

.p-drawer__policy-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-drawer__policy-link {
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-drawer__policy-link {
    font-size: 0.875rem;
  }
}

.p-drawer__sns {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.p-drawer__follow-text {
  font-family: "Inter", sans-serif;
  font-size: max(0.75rem, 9.6px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  color: #cacaca;
}
@media screen and (max-width: 767.99px) {
  .p-drawer__follow-text {
    font-size: 0.75rem;
  }
}

.p-drawer__sns-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.p-drawer__list-item-details.is-opened .p-drawer__list-item-arrow.--plus line:nth-of-type(2) {
  rotate: 90deg;
}

.p-drawer__sub-menu-wrap {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.4s ease, opacity 0.4s ease;
}

.is-opened .p-drawer__sub-menu-wrap {
  opacity: 1;
}

.p-footer__bg-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.p-footer__contents {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.625rem;
}
@media screen and (max-width: 767.99px) {
  .p-footer__contents {
    flex-direction: column;
    gap: 2.5rem;
    justify-content: center;
  }
}

.p-footer__logo {
  max-width: 17.5625rem;
  height: auto;
}
@media screen and (max-width: 767.99px) {
  .p-footer__logo {
    max-width: 15.625rem;
  }
}

.p-footer__top-address {
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767.99px) {
  .p-footer__top-address {
    font-size: 0.875rem;
  }
}

.p-footer__top-google {
  margin-top: 1.125rem;
  padding-left: 0.25rem;
}

.p-footer__top-google-link {
  display: flex;
  align-items: center;
  width: fit-content;
}
@media (any-hover: hover) {
  .p-footer__top-google-link {
    transition: 0.3s ease;
  }
  .p-footer__top-google-link:hover {
    opacity: 0.5;
  }
}

.p-footer__link-icon {
  width: 0.25625rem;
  height: 0.425rem;
}

.p-footer__top-google-link-text {
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  padding-inline: 0.625rem 0.6875rem;
}
@media screen and (max-width: 767.99px) {
  .p-footer__top-google-link-text {
    font-size: 0.875rem;
  }
}

.p-footer__top-google-icon {
  width: 0.75rem;
  height: 0.75rem;
}

.p-footer__top-sns-wrap {
  margin-top: 4.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767.99px) {
  .p-footer__top-sns-wrap {
    margin-top: 2.5rem;
  }
}

.p-footer__top-sns-text {
  font-family: "Inter", sans-serif;
  font-size: max(0.75rem, 9.6px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-footer__top-sns-text {
    font-size: 0.75rem;
  }
}

.p-footer__top-sns-icon {
  width: 1.5rem;
  height: 1.5rem;
}
@media (any-hover: hover) {
  .p-footer__top-sns-icon {
    transition: 0.3s ease;
  }
  .p-footer__top-sns-icon:hover {
    opacity: 0.5;
  }
}

.p-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
}
@media screen and (max-width: 767.99px) {
  .p-footer__bottom {
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
  }
}

.p-footer__nav-item-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (max-width: 767.99px) {
  .p-footer__nav-item-wrap:nth-child(4) {
    margin-top: -6px;
    gap: 0.25rem;
  }
}

.p-footer__nav-list {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767.99px) {
  .p-footer__nav-list {
    flex-direction: column;
  }
}

.p-footer__nav-item.--1 {
  display: flex;
  align-items: center;
  column-gap: 2.5rem;
}
@media screen and (max-width: 767.99px) {
  .p-footer__nav-item.--2 {
    display: flex;
    flex-direction: column;
    row-gap: 0.75rem;
  }
}
.p-footer__nav-item.--mt40 {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767.99px) {
  .p-footer__nav-item.--mt40 {
    margin-block-start: 0;
  }
}
.p-footer__nav-item.--sub {
  margin-block-start: 0.75rem;
  padding-inline-start: 1em;
}
@media screen and (max-width: 767.99px) {
  .p-footer__nav-item.--sub {
    padding-inline-start: 0.4em;
    margin-block-start: 0.375rem;
  }
}
.p-footer__nav-item.--sub .p-footer__nav-item-text {
  line-height: 2;
}
@media screen and (max-width: 767.99px) {
  .p-footer__nav-item.--sub .p-footer__nav-item-text {
    line-height: 1.8;
  }
}
.p-footer__nav-item.--sub img {
  width: 0.25rem;
  height: 0.5rem;
}

.p-footer__nav-item + .p-footer__nav-item {
  margin-block-start: 1.25rem;
}

.p-footer__nav-item-link {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  width: fit-content;
}
.p-footer__nav-item-link.--no-hover {
  pointer-events: none;
}
@media (any-hover: hover) {
  .p-footer__nav-item-link {
    transition: 0.3s ease;
  }
  .p-footer__nav-item-link:hover {
    opacity: 0.5;
  }
}

.p-footer__link-icon {
  width: 0.375rem;
  height: 0.75rem;
}

.p-footer__nav-item-title {
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 1.5555555556;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-footer__nav-item-title {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-footer__nav-item-title {
    font-size: max(1rem, 12.8px);
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-footer__nav-item-title {
    font-size: 1rem;
  }
}

.p-footer__nav-item-text {
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-footer__nav-item-text {
    font-size: 0.875rem;
  }
}

.p-footer__sub {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767.99px) {
  .p-footer__sub {
    margin-top: 1.8125rem;
  }
}

.p-footer__sub-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767.99px) {
  .p-footer__sub-list {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

.p-footer__sub-link {
  font-size: max(0.9375rem, 12px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-footer__sub-link {
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .p-footer__sub-link {
    transition: 0.3s ease;
  }
  .p-footer__sub-link:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767.99px) {
  .p-footer__sub-link {
    font-size: max(0.875rem, 11.2px);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-footer__sub-link {
    font-size: 0.875rem;
  }
}

.p-footer__cl {
  margin-top: 1rem;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767.99px) {
  .p-footer__cl {
    margin-top: 2.1875rem;
  }
}

.p-footer__cl-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(0.6875rem, 8.8px);
  font-weight: 400;
  line-height: 1.0909090909;
  letter-spacing: 0em;
  color: #cacaca;
}
@media screen and (max-width: 767.99px) {
  .p-footer__cl-text {
    font-size: 0.6875rem;
  }
}

.p-top-contact {
  position: relative;
  padding-block: 6.875rem 7.4375rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767.99px) {
  .p-top-contact {
    padding-block: 3.75rem;
  }
}

.p-top-contact__bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.p-top-contact__bg {
  object-fit: cover;
  object-position: top;
}

.p-top-contact__header-sentence {
  margin-top: 3.25rem;
  font-size: max(1.25rem, 16px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-top-contact__header-sentence {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-contact__header-sentence {
    font-size: max(0.9375rem, 12px);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.05em;
    margin-top: 2.0625rem;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-contact__header-sentence {
    font-size: 0.9375rem;
  }
}

.p-top-contact__content {
  margin-top: 9.0625rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-contact__content {
    margin-top: 5rem;
  }
}

.p-top-contact__btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-contact__btn-wrap {
    flex-direction: column;
    gap: 1rem;
  }
}

.p-top-contact__btn {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  max-width: 34.0625rem;
  width: 100%;
  border-radius: 0.75rem;
  padding-block: 4rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767.99px) {
  .p-top-contact__btn {
    gap: 0.75rem;
    padding-block: 2.5rem;
    border-radius: 0.45rem;
    max-width: 25rem;
  }
}
.p-top-contact__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgb(52, 52, 52);
  transition: width 0.3s ease;
  transform-origin: left center;
}
@media (any-hover: hover) {
  .p-top-contact__btn:hover::after {
    width: 100%;
  }
}
.p-top-contact__btn.--company {
  background-color: #5088e2;
}
.p-top-contact__btn.--person {
  background-color: #0d46b7;
  stroke: #ffffff;
}

.p-top-contact__btn-icon {
  position: relative;
  z-index: 2;
}

.p-top-contact__btn.--company svg {
  fill: #ffffff;
}

.p-top-contact__btn-icon svg {
  width: 2rem;
  height: 2rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-contact__btn-icon svg {
    width: 1.2rem;
    height: 1.2rem;
  }
}

.p-top-contact__btn-text {
  position: relative;
  z-index: 2;
  font-size: max(1.5rem, 19.2px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-top-contact__btn-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-contact__btn-text {
    font-size: max(1rem, 12.8px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-contact__btn-text {
    font-size: 1rem;
  }
}

.p-top-access {
  padding-block: 7.5rem 7.5rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767.99px) {
  .p-top-access {
    padding-block: 7.5rem 3.75rem;
  }
}

.p-top-access__content-top {
  aspect-ratio: 1110/516;
}
.p-top-access__content-top iframe {
  width: 100%;
  height: 100%;
}

.p-top-access__bottom {
  margin-top: 4.5rem;
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767.99px) {
  .p-top-access__bottom {
    flex-direction: column;
    gap: 1.875rem;
    margin-top: 1.875rem;
  }
}

.p-top-access__address-wrap {
  max-width: 17.5625rem;
  width: 100%;
}

.p-top-access__logo {
  width: 100%;
  aspect-ratio: 281/50;
}
@media screen and (max-width: 767.99px) {
  .p-top-access__logo {
    max-width: 14.375rem;
  }
}

.p-top-access__adress {
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 1.3125;
  letter-spacing: 0em;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-access__adress {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-access__adress {
    font-size: max(0.9375rem, 12px);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.05em;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-access__adress {
    font-size: 0.9375rem;
  }
}

.p-top-access__attention-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 39.5625rem;
  width: 100%;
}

.p-top-access__attention-title {
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: 1.3125;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-top-access__attention-title {
    font-size: 1rem;
  }
}

.p-top-access__attention-text {
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-access__attention-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-access__attention-text {
    font-size: max(0.9375rem, 12px);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-access__attention-text {
    font-size: 0.9375rem;
  }
}

.p-contact__main {
  padding-block: 7.5rem 10rem;
  width: min(736px + 5rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.99px) {
  .p-contact__main {
    padding-block: 3.75rem 5rem;
    padding-inline: 1.5rem;
  }
}

.p-contact__head-text {
  font-size: max(1.25rem, 16px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-block-end: 5rem;
}
@media screen and (max-width: 767.99px) {
  .p-contact__head-text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-contact__head-text {
    font-size: max(1rem, 12.8px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0em;
    margin-block-end: 2.5rem;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-contact__head-text {
    font-size: 1rem;
  }
}

.p-contact__form {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
@media screen and (max-width: 767.99px) {
  .p-contact__form {
    row-gap: 1.25rem;
  }
}

.p-contact__form-head {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0em;
  margin-block-end: 0.5rem;
}
@media screen and (max-width: 767.99px) {
  .p-contact__form-head {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-contact__form-head {
    font-size: max(0.875rem, 11.2px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-contact__form-head {
    font-size: 0.875rem;
  }
}
.p-contact__form-head span {
  display: block;
  padding: 0.25rem 0.625rem;
  background: #0D46B7;
  border-radius: 4px;
  font-size: max(0.625rem, 8px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767.99px) {
  .p-contact__form-head span {
    font-size: 0.625rem;
  }
}

.p-contact__form .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.p-contact__form .wpcf7-radio .wpcf7-list-item + .wpcf7-list-item {
  margin-inline-start: 1.5rem;
}
.p-contact__form .wpcf7-radio input[type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
.p-contact__form .wpcf7-radio input[type=radio]:focus .wpcf7-list-item-label::before {
  border: 1px solid #0D46B7;
}
.p-contact__form .wpcf7-radio input[type=radio]:focus-visible .wpcf7-list-item-label::before {
  border: 1px solid #0D46B7;
}
.p-contact__form .wpcf7-radio input[type=radio]:checked + span::after {
  opacity: 1;
}
.p-contact__form .wpcf7-radio .wpcf7-list-item-label {
  padding-inline-start: 2rem;
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0em;
  position: relative;
}
@media screen and (max-width: 767.99px) {
  .p-contact__form .wpcf7-radio .wpcf7-list-item-label {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-contact__form .wpcf7-radio .wpcf7-list-item-label {
    font-size: max(0.875rem, 11.2px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-contact__form .wpcf7-radio .wpcf7-list-item-label {
    font-size: 0.875rem;
  }
}
.p-contact__form .wpcf7-radio .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 1.5rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #CACACA;
}
.p-contact__form .wpcf7-radio .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0.375rem;
  width: 0.75rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #0D46B7;
  opacity: 0;
}
.p-contact__form .wpcf7-form-control-wrap {
  width: 100%;
}
.p-contact__form input[type=text], .p-contact__form input[type=email], .p-contact__form textarea {
  width: 100%;
  border: 1px solid #ABACC9;
  border-radius: 4px;
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0em;
  padding: 1rem;
}
@media screen and (max-width: 767.99px) {
  .p-contact__form input[type=text], .p-contact__form input[type=email], .p-contact__form textarea {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-contact__form input[type=text], .p-contact__form input[type=email], .p-contact__form textarea {
    padding: 0.75rem;
    font-size: max(0.875rem, 11.2px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-contact__form input[type=text], .p-contact__form input[type=email], .p-contact__form textarea {
    font-size: 0.875rem;
  }
}
.p-contact__form input[type=text]::placeholder, .p-contact__form input[type=email]::placeholder, .p-contact__form textarea::placeholder {
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0em;
  color: #797A7B;
}
@media screen and (max-width: 767.99px) {
  .p-contact__form input[type=text]::placeholder, .p-contact__form input[type=email]::placeholder, .p-contact__form textarea::placeholder {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-contact__form input[type=text]::placeholder, .p-contact__form input[type=email]::placeholder, .p-contact__form textarea::placeholder {
    font-size: max(0.875rem, 11.2px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-contact__form input[type=text]::placeholder, .p-contact__form input[type=email]::placeholder, .p-contact__form textarea::placeholder {
    font-size: 0.875rem;
  }
}
.p-contact__form input[type=text]:focus, .p-contact__form input[type=email]:focus, .p-contact__form textarea:focus {
  border: 1px solid #0D46B7;
}
.p-contact__form input[type=text]:focus-visible, .p-contact__form input[type=email]:focus-visible, .p-contact__form textarea:focus-visible {
  border: 1px solid #0D46B7;
}
.p-contact__form textarea {
  height: 180px;
  resize: vertical;
}

.p-contact__acceptance {
  margin-block-start: 2.5rem;
  width: min(622px + 5rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.99px) {
  .p-contact__acceptance {
    padding-inline: 0;
  }
}
.p-contact__acceptance input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
.p-contact__acceptance input[type=checkbox]:focus .wpcf7-list-item-label::before {
  border: 1px solid #0D46B7;
}
.p-contact__acceptance input[type=checkbox]:focus-visible .wpcf7-list-item-label::before {
  border: 1px solid #0D46B7;
}
.p-contact__acceptance input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.p-contact__acceptance .wpcf7-list-item-label {
  padding-inline-start: 2rem;
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0em;
  position: relative;
}
@media screen and (max-width: 767.99px) {
  .p-contact__acceptance .wpcf7-list-item-label {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-contact__acceptance .wpcf7-list-item-label {
    padding-inline-start: 1.75rem;
    font-size: max(0.875rem, 11.2px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-contact__acceptance .wpcf7-list-item-label {
    font-size: 0.875rem;
  }
}
.p-contact__acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 1.5rem;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid #CACACA;
}
@media screen and (max-width: 767.99px) {
  .p-contact__acceptance .wpcf7-list-item-label::before {
    width: 1.125rem;
  }
}
.p-contact__acceptance .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0.375rem;
  width: 0.75rem;
  height: auto;
  aspect-ratio: 1;
  background: #0D46B7;
  opacity: 0;
}
@media screen and (max-width: 767.99px) {
  .p-contact__acceptance .wpcf7-list-item-label::after {
    left: 0.28125rem;
    width: 0.5625rem;
  }
}
.p-contact__acceptance a {
  color: #1B5BD9;
  text-decoration: underline;
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 2.1875;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.99px) {
  .p-contact__acceptance a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-contact__acceptance a {
    font-size: max(0.875rem, 11.2px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-contact__acceptance a {
    font-size: 0.875rem;
  }
}

.p-contact__submit {
  margin-block-start: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767.99px) {
  .p-contact__submit {
    margin-block-start: 1.5rem;
  }
}
.p-contact__submit .wpcf7-spinner {
  display: none;
}
.p-contact__submit input[type=submit],
.p-contact__submit input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}
.p-contact__submit input[type=submit]::-webkit-search-decoration,
.p-contact__submit input[type=button]::-webkit-search-decoration {
  display: none;
}
.p-contact__submit .row.jc-center {
  justify-content: center;
}
.p-contact__submit input[type=submit] {
  padding: 1rem 1.25rem;
  width: 18.75rem;
  text-align: center;
  border-radius: 12px;
  background: #0D46B7;
  color: #fff;
  font-size: max(1rem, 12.8px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0em;
  margin-inline: auto;
}
@media screen and (max-width: 767.99px) {
  .p-contact__submit input[type=submit] {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-contact__submit input[type=submit] {
    max-width: 100%;
    font-size: max(0.875rem, 11.2px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-contact__submit input[type=submit] {
    font-size: 0.875rem;
  }
}
.p-contact__submit input[type=submit]:disabled {
  opacity: 0.7;
}

.wpcf7-not-valid-tip {
  margin-block-start: 0.75rem;
}
@media screen and (max-width: 767.99px) {
  .wpcf7-not-valid-tip {
    margin-block-start: 0.5rem;
  }
}

.wpcf7-response-output {
  opacity: 0;
  visibility: hidden;
}

.p-contact__thanks {
  padding-block: 13.75rem 10rem;
}
@media screen and (max-width: 767.99px) {
  .p-contact__thanks {
    padding-block: 9.375rem 5rem;
  }
}

.p-contact__thanks-inner {
  width: min(50.75rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.99px) {
  .p-contact__thanks-inner {
    padding-inline: 1.5rem;
  }
}

.p-contact__thanks-title {
  font-size: max(1.875rem, 24px);
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  margin-block-end: 1.25rem;
}
@media screen and (max-width: 767.99px) {
  .p-contact__thanks-title {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-contact__thanks-title {
    font-size: 1.25rem;
    margin-block-end: 1rem;
  }
}

.p-contact__thanks-text {
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-block-end: 1.25rem;
}
@media screen and (max-width: 767.99px) {
  .p-contact__thanks-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-contact__thanks-text {
    font-size: 0.875rem;
    margin-block-end: 1rem;
  }
}

.p-contact__thanks-tel {
  font-size: max(1.25rem, 16px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767.99px) {
  .p-contact__thanks-tel {
    font-size: 1.25rem;
  }
}
.p-contact__thanks-tel a {
  text-decoration: underline;
}
@media screen and (max-width: 767.99px) {
  .p-contact__thanks-tel {
    font-size: 1rem;
  }
}

.p-contact__thanks-btn {
  margin-block-start: 3.75rem;
  margin-inline: auto;
  flex-direction: row-reverse;
  padding: 0.875rem 1.25rem !important;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.99px) {
  .p-contact__thanks-btn {
    margin-block-start: 3.75rem;
  }
}
.p-contact__thanks-btn:before {
  display: none;
}
.p-contact__thanks-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: #343434;
  transition: width 0.3s ease;
  transform-origin: right center;
}
@media (any-hover: hover) {
  .p-contact__thanks-btn:hover:after {
    width: 100%;
  }
}
.p-contact__thanks-btn svg path {
  rotate: 180deg;
  transform-origin: center;
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767.99px) {
  .u-pc {
    display: none !important;
  }
}
.u-font {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__jp {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__en {
  font-family: "Inter", sans-serif;
}

.u-text__center {
  text-align: center !important;
}
@media screen and (max-width: 767.99px) {
  .u-text__center--sp {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .u-text__center--pc {
    text-align: center !important;
  }
}

.u-text__left {
  text-align: left !important;
}
@media screen and (max-width: 767.99px) {
  .u-text__left--sp {
    text-align: left !important;
  }
}
@media (min-width: 768px) {
  .u-text__left--pc {
    text-align: left !important;
  }
}

.u-text__right {
  text-align: right !important;
}
@media screen and (max-width: 767.99px) {
  .u-text__right--sp {
    text-align: right !important;
  }
}
@media (min-width: 768px) {
  .u-text__right--pc {
    text-align: right !important;
  }
}

.u-text__nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767.99px) {
  .u-text__nowrap--sp {
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}

.u-pointer__none {
  pointer-events: none !important;
}
@media screen and (max-width: 767.99px) {
  .u-pointer__none--sp {
    pointer-events: none !important;
  }
}
@media (min-width: 768px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}

.u-animation__fadeIn {
  translate: 0 20px;
  opacity: 0;
  transition: all 0.3s ease;
}
.u-animation__fadeIn.js-show {
  translate: 0;
  opacity: 1;
}