html,
body {
  font-family: "Noto Sans JP", sans-serif;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 9999;
}
@media (min-width: 751px) and (max-width: 1080px) {
  .l-header {
    padding: 25px 0;
  }
}
@media (max-width: 750px) {
  .l-header {
    padding: 12px 0;
  }
}
.l-header__logo {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px 42px;
  z-index: 999;
  background-color: #fff;
}
@media (min-width: 751px) and (max-width: 1080px) {
  .l-header__logo {
    padding: 24px 18px;
  }
}
@media (max-width: 750px) {
  .l-header__logo {
    padding: 14px 10px;
  }
}
.l-header__logo__image {
  display: block;
  width: 100%;
  max-width: 217px;
}
.l-header__logo__image img {
  width: 100%;
  height: auto;
}
@media (min-width: 751px) and (max-width: 1080px) {
  .l-header__logo__image {
    max-width: 225.76px;
  }
}
@media (max-width: 750px) {
  .l-header__logo__image {
    max-width: 138.93px;
  }
}
.l-header__button {
  display: flex;
  justify-content: flex-end;
  gap: 0 8px;
  margin: 0 100px;
}
@media (min-width: 751px) and (max-width: 1080px) {
  .l-header__button {
    margin: 0 40px 0 auto;
  }
}
@media (max-width: 750px) {
  .l-header__button {
    margin: 0 20px 0 auto;
  }
}
.l-header__button__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 175px;
  padding: 16.5px 0;
  border-radius: 9999px;
  background: #C80C2A;
  text-decoration: none;
  border: 1px solid #C80C2A;
  box-sizing: border-box;
  transition: all 0.3s;
}
@media (min-width: 1081px) {
  .l-header__button__link:hover {
    background-color: #fff;
  }
  .l-header__button__link:hover .l-header__button__text {
    color: #C80C2A;
  }
  .l-header__button__link:hover .l-header__button__icon svg path {
    fill: #C80C2A;
  }
}
@media (min-width: 751px) and (max-width: 1080px) {
  .l-header__button__link {
    width: 80px;
    height: 80px;
    padding: 0;
  }
}
@media (max-width: 750px) {
  .l-header__button__link {
    width: 40px;
    height: 40px;
    padding: 0;
  }
}
.l-header__button__text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.42px;
  word-break: keep-all;
  transition: all 0.3s;
}
.l-header__button__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 12px;
  width: 16px;
  height: 16px;
}
@media (min-width: 751px) and (max-width: 1080px) {
  .l-header__button__icon {
    margin: 0;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 750px) {
  .l-header__button__icon {
    margin: 0;
    width: 20px;
    height: 20px;
  }
}
.l-header__button__icon svg {
  width: 100%;
  height: 100%;
}
.l-header__button__icon svg path {
  transition: all 0.3s;
}
.l-header__button__menu {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 12px;
  width: 100%;
  max-width: 132px;
  padding: 16.5px 0;
  border-radius: 9999px;
  background: #3B1F85;
  text-decoration: none;
  border: 1px solid #3B1F85;
  box-sizing: border-box;
  transition: all 0.3s;
  z-index: 9999;
}
@media (min-width: 751px) and (max-width: 1080px) {
  .l-header__button__menu {
    width: 80px;
    height: 80px;
    padding: 0px;
  }
}
@media (max-width: 750px) {
  .l-header__button__menu {
    width: 40px;
    height: 40px;
    padding: 0px;
  }
}
@media (min-width: 751px) {
  .l-header__button__menu:hover {
    background-color: #fff;
  }
  .l-header__button__menu:hover .l-header__button__menu__text {
    color: #3B1F85;
  }
  .l-header__button__menu:hover .l-header__button__menu__bar::before, .l-header__button__menu:hover .l-header__button__menu__bar::after {
    background-color: #3B1F85;
  }
}
.l-header__button__menu__text {
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.42px;
  word-break: keep-all;
  transition: all 0.3s;
  min-width: 57px;
}
.l-header__button__menu__bar {
  --menu-size: 16px;
  --bar-height: 2px;
  --bar-offset: 3px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--menu-size);
  height: var(--menu-size);
}
@media (min-width: 751px) and (max-width: 1080px) {
  .l-header__button__menu__bar {
    --menu-size: 24px;
    --bar-height: 4px;
    --bar-offset: 6px;
  }
}
.l-header__button__menu__bar::before, .l-header__button__menu__bar::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: var(--bar-height);
  background-color: #fff;
  transform-origin: center;
  transition: all 0.3s;
}
.l-header__button__menu__bar::before {
  transform: translateY(calc(var(--bar-offset) * -1));
}
.l-header__button__menu__bar::after {
  transform: translateY(var(--bar-offset));
}
.l-header__button__menu__bar[data-open=true]::before {
  animation: menuBarTop 0.3s forwards;
}
.l-header__button__menu__bar[data-open=true]::after {
  animation: menuBarBottom 0.3s forwards;
}
.l-header__button__menu__bar[data-open=false]::before {
  animation: menuBarTopReverse 0.3s forwards;
}
.l-header__button__menu__bar[data-open=false]::after {
  animation: menuBarBottomReverse 0.3s forwards;
}
@keyframes menuBarTop {
  0% {
    transform: translateY(calc(var(--bar-offset) * -1)) rotate(0);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(45deg);
  }
}
@keyframes menuBarBottom {
  0% {
    transform: translateY(var(--bar-offset)) rotate(0);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(-45deg);
  }
}
@keyframes menuBarTopReverse {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(calc(var(--bar-offset) * -1)) rotate(0);
  }
}
@keyframes menuBarBottomReverse {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(var(--bar-offset)) rotate(0);
  }
}
.l-header .p-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: #3B1F85;
  z-index: 9998;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.l-header .p-menu[data-open=false] {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.l-header .p-menu[data-open=true] {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.l-header .p-menu__nav {
  width: 100%;
  max-width: 335px;
  margin: auto 0;
}
.l-header .p-menu__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l-header .p-menu__list__item {
  width: 100%;
}
.l-header .p-menu__list__item:not(:first-child) {
  margin: 32px 0 0 0;
}
.l-header .p-menu__link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  color: #fff;
  text-decoration: none;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.8px;
  transition: all 0.3s;
}
@media (min-width: 1081px) {
  .l-header .p-menu__link:hover {
    opacity: 0.6;
  }
}
.l-header .p-menu__contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0 80px 0;
  border-top: 1px solid #E5E5E5;
}
@media (max-width: 750px) {
  .l-header .p-menu__contact {
    padding: 40px 0;
  }
}
.l-header .p-menu__contact__lead {
  text-align: center;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.8px;
}
.l-header .p-menu__contact__button {
  width: 100%;
  max-width: 315px;
  margin: 12px 0 0 0;
}
.l-header .p-menu__contact__button__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  border-radius: 9999px;
  background: #C80C2A;
  box-shadow: 20px 20px 30px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
  border: 1px solid #C80C2A;
  box-sizing: border-box;
  transition: all 0.3s;
}
@media (min-width: 1081px) {
  .l-header .p-menu__contact__button__link:hover {
    background-color: #fff;
  }
  .l-header .p-menu__contact__button__link:hover .p-menu__contact__button__text {
    color: #C80C2A;
  }
  .l-header .p-menu__contact__button__link:hover .p-menu__contact__button__icon svg path {
    fill: #C80C2A;
  }
}
.l-header .p-menu__contact__button__text {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.8px;
  word-break: keep-all;
  transition: all 0.3s;
}
.l-header .p-menu__contact__button__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 12px;
  width: 19px;
  height: 19px;
}
.l-header .p-menu__contact__button__icon svg path {
  transition: all 0.3s;
}
.l-header .p-menu__logo {
  margin: 40px 0 0 0;
}
.l-header .p-menu__logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 750px) {
  .l-header .p-menu__logo {
    max-width: 315px;
  }
}

.l-main {
  overflow-x: hidden;
}

.l-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 750px) {
  .l-inner {
    max-width: 89.3333333333%;
    padding: 0;
  }
}

.p-contact {
  padding: 80px 0;
  background: linear-gradient(88deg, #2B2245 0%, #6B54AB 99.65%);
}
.p-contact__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 751px) and (max-width: 1080px) {
  .p-contact__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px 0;
  }
}
@media (max-width: 750px) {
  .p-contact__content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px 0;
  }
}
.p-contact__text {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.8px;
}
@media (max-width: 750px) {
  .p-contact__text {
    font-size: 15px;
  }
}
.p-contact__text [data-type=main] {
  font-size: 24px;
  letter-spacing: 1.2;
  margin: 0 0 24px 0;
}
@media (max-width: 750px) {
  .p-contact__text [data-type=main] {
    font-size: 20px;
  }
}
.p-contact__button__link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 48px;
  border-radius: 9999px;
  background: #C80C2A;
  box-shadow: 20px 20px 30px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
  border: 1px solid #C80C2A;
  box-sizing: border-box;
  transition: all 0.3s;
}
@media (min-width: 1081px) {
  .p-contact__button__link:hover {
    background-color: #fff;
  }
  .p-contact__button__link:hover .p-contact__button__text {
    color: #C80C2A;
  }
  .p-contact__button__link:hover .p-contact__button__icon svg path {
    fill: #C80C2A;
  }
}
.p-contact__button__text {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.8px;
  word-break: keep-all;
  transition: all 0.3s;
}
.p-contact__button__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 12px;
  width: 19px;
  height: 19px;
}
.p-contact__button__icon svg path {
  transition: all 0.3s;
}

.l-footer {
  width: 100%;
  background-color: #000;
  padding: 80px 0 20px 0;
}
.l-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  color: #fff;
}
@media (max-width: 750px) {
  .l-footer__inner {
    max-width: 89.3333333333%;
    padding: 0;
  }
}
.l-footer__content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .l-footer__content {
    flex-direction: column;
    justify-content: flex-start;
    gap: 48px 0;
  }
}
.l-footer__info {
  display: flex;
  align-items: center;
  gap: 0 12px;
}
@media (min-width: 751px) and (max-width: 1080px) {
  .l-footer__info {
    width: 100%;
    max-width: 320px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px 0;
  }
}
@media (max-width: 750px) {
  .l-footer__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px 0;
  }
}
.l-footer__info__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.75px;
}
.l-footer__info__tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 56px;
  padding: 0 12px;
  text-decoration: none;
  background-color: #fff;
}
@media (max-width: 1080px) {
  .l-footer__info__tel {
    width: 100%;
    padding: 0;
  }
}
.l-footer__info__tel__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-footer__info__tel__time {
  margin: 2px 0 0 0;
  font-size: 10px;
  line-height: 1;
  color: #222;
  letter-spacing: 0.5px;
}
.l-footer__info__mail {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  padding: 0 12px;
  text-decoration: none;
  background-color: #fff;
}
@media (max-width: 1080px) {
  .l-footer__info__mail {
    width: 100%;
    padding: 0;
  }
}
.l-footer__info__mail__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-footer__info__mail__text {
  margin: 0 0 0 8px;
}
.l-footer__copyright {
  margin: 48px 0 0 0;
}
.l-footer__copyright__text {
  text-align: center;
  font-size: 12px;
  font-family: Montserrat, sans-serif;
  line-height: 1.1667;
  letter-spacing: 0.5px;
  color: #fff;
}
@media (max-width: 750px) {
  .l-footer__copyright__text {
    font-size: 10px;
  }
}

.mg-t-10 {
  margin-top: 10px !important;
}

[data-break=pc] {
  display: block !important;
}
@media (max-width: 1080px) {
  [data-break=pc] {
    display: none !important;
  }
}

[data-break=md] {
  display: none !important;
}
@media (min-width: 751px) and (max-width: 1080px) {
  [data-break=md] {
    display: block !important;
  }
}

[data-break=sp] {
  display: none !important;
}
@media (max-width: 750px) {
  [data-break=sp] {
    display: block !important;
  }
}

[data-media=pc] {
  display: block !important;
}
@media (max-width: 750px) {
  [data-media=pc] {
    display: none !important;
  }
}

[data-media=sp] {
  display: none !important;
}
@media (max-width: 750px) {
  [data-media=sp] {
    display: block !important;
  }
}/*# sourceMappingURL=common.css.map */