@charset "UTF-8";

html {
  font-size: 100%;
}

@media (max-width: 1050px) {
  html {
    font-size: 1.5238095238vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 100%;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  background: #fff;
}

body.on-lock {
  overflow: hidden;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover,
button:hover {
  opacity: 0.7;
  cursor: pointer;
}

@media screen and (max-width: 768px) {

  a:hover,
  button:hover {
    opacity: 1;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
}

.l-inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

@media screen and (max-width: 768px) {
  .l-inner {
    padding: 1rem 0.625rem;
  }
}

.c-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: clamp(0px, 4vw, 60px);
  background: none;
  overflow: hidden;
  border: 0.5px solid #fff;
  padding: clamp(0px, 1.3333333333vw, 20px) clamp(0px, 2.8666666667vw, 43px);
  color: #fff;
}

.c-btn::after {
  content: "";
  width: 0%;
  height: 100%;
  background: #073b74;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  right: 0;
}

.c-btn span {
  text-align: center;
  color: #fff;
  font-size: clamp(12px, 1.0666666667vw, 16px);
  font-family: "Inter Tight", sans-serif;
  line-height: 1.1851851852;
  letter-spacing: 0.02em;
  z-index: 20;
}

@media screen and (max-width: 768px) {
  .c-btn span {
    font-size: 12px;
    line-height: 1.1666666667;
  }
}

.c-btn:hover {
  opacity: 1;
  border-color: transparent;
}

.c-btn:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

.c-btn.--blue {
  background: #053876;
  border-color: #053876;
  padding: 1.3125rem 4.3125rem;
}

.c-btn.--blue::after {
  background: #e9f0ee;
}

.c-btn.--blue span {
  font-size: 1.125rem;
  line-height: 1.7777777778;
  letter-spacing: 0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.c-btn.--blue:hover {
  border-color: #053876;
}

.c-btn.--blue:hover span {
  color: #053876;
}

@media screen and (max-width: 768px) {
  .c-btn.--blue {
    padding: 1.25rem 4.625rem;
  }

  .c-btn.--blue span {
    font-size: 15px;
    line-height: 1;
  }

  .c-btn.--blue:hover {
    border-color: #053876;
  }

  .c-btn.--blue:hover span {
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .c-btn {
    padding: 0.9375rem 1.1875rem;
    border-radius: 40px;
  }

  .c-btn:hover {
    opacity: 1;
    border-color: #fff;
  }

  .c-btn:hover::after {
    width: 0%;
    right: 0;
    left: auto;
  }
}

.c-btn02 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  padding: 1.25rem 2.0625rem;
  border: 1px solid #000;
  border-radius: 40px;
}

.c-btn02::after {
  content: "";
  width: 0%;
  height: 100%;
  background: #073b74;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  right: 0;
}

.c-btn02 span {
  font-size: 13px;
  line-height: 1.4615384615;
  letter-spacing: -0.1em;
  z-index: 20;
}

.c-btn02:hover {
  opacity: 1;
  border-color: transparent;
  color: #fff;
}

.c-btn02:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

@media screen and (max-width: 768px) {
  .c-btn02 {
    padding: 0.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 16.5625rem;
  }

  .c-btn02::after {
    display: none;
  }

  .c-btn02 span {
    font-size: 11px;
  }

  .c-btn02:hover {
    opacity: 1;
    border-color: #000;
    color: #000;
  }
}

.p-about {
  background: rgba(162, 162, 162, 0.85);
  padding: 13.875rem 0 15.0625rem;
}

@media screen and (max-width: 768px) {
  .p-about {
    padding: 9.125rem 0 8.8125rem;
  }
}

.p-about__inner {
  margin-left: max(0px, min(15.33333vw, 230px));
  width: 50%;
}

@media screen and (max-width: 768px) {
  .p-about__inner {
    margin: 0;
    padding-left: 6.13333vw;
    padding-right: 6.13333vw;
    width: 100%;
  }
}

.p-about__title {
  font-size: clamp(0px, 3.6vw, 54px);
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  line-height: 1.2037037037;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .p-about__title {
    font-size: 28px;
    line-height: 1.2142857143;
  }
}

.p-about__text {
  margin-top: clamp(0px, 8.8666666667vw, 133px);
}

.p-about__text p {
  font-size: clamp(12px, 1.0666666667vw, 16px);
  font-weight: 400;
  line-height: 2.5;
  color: #fff;
}

.p-about__text p+p {
  margin-top: clamp(0px, 2.6666666667vw, 40px);
}

@media screen and (max-width: 768px) {
  .p-about__text {
    margin-top: 1.3125rem;
  }

  .p-about__text p {
    font-size: 14px;
  }

  .p-about__text p+p {
    margin-top: 1.5em;
  }
}

.p-about__btn {
  margin-top: clamp(0px, 6vw, 90px);
}

@media screen and (max-width: 768px) {
  .p-about__btn {
    margin-top: 1.25rem;
  }
}

.p-brand-mv {
  padding: 11.875rem 0 16.375rem;
  text-align: center;
}

.p-brand-mv__title {
  width: 248px;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .p-brand-mv__title {
    width: 200px;
  }
}

.p-brand-mv__title img {
  width: 100%;
}

.p-brand-mv__scroll {
  margin-top: 5.1875rem;
  font-size: 13px;
  font-family: "Inter Tight", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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.9375rem;
}

.p-brand-mv__scroll::after {
  content: "";
  display: block;
  width: 13px;
  height: 10px;
  background: url(../img/brand/icon_scroll.svg) no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .p-brand-mv__scroll {
    margin-top: 3.125rem;
  }
}

.p-brand-wrap {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(10%, rgb(245, 245, 245)),
      color-stop(40%, rgba(255, 34, 87, 0)),
      to(rgba(35, 102, 247, 0)));
  background: linear-gradient(180deg,
      rgb(245, 245, 245) 10%,
      rgba(255, 34, 87, 0) 40%,
      rgba(35, 102, 247, 0));
}

/* =========================================
   Main Visual
========================================= */

.p-detail-mv {
  position: relative;
  width: 100%;
  height: 46.875vw;
  overflow: hidden;
}

.p-detail-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: #fff; */
  z-index: 1;
}

/* ---------- 背景画像 ---------- */

.p-detail-mv__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.p-detail-mv__img img {
  object-position: 60% center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* ---------- レイアウト ---------- */

.p-detail-mv__inner {
  position: relative;
  z-index: 2;

  height: 100%;

  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.p-detail-mv__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  row-gap: 2rem;
  margin-top: clamp(40px, 7vw, 80px);
  margin-right: clamp(20px, 4vw, 10px);

  text-align: left;
}

/* ---------- ロゴ ---------- */

.p-detail-mv__logo {
  width: clamp(180px, 15vw, 320px);
}

.p-detail-mv__logo img {
  width: 100%;
  display: block;
}


/* ---------- テキスト ---------- */

.p-detail-mv__text {
  max-width: 32rem;
}

.p-detail-mv__text p {
  color: #000;
  font-size: clamp(1rem, 1.4vw, 1.6rem);
  line-height: 1.8;
}

/* =========================================
   SP
========================================= */

@media (max-width:768px) {

  .p-detail-mv {
    height: calc(100vh - 70px);
    min-height: 560px;
    margin-bottom: 4rem;
  }

  .p-detail-mv__img {
    width: 100%;
    height: 100%;
  }

  .p-detail-mv__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
  }

  .p-detail-mv__inner {
    justify-content: center;
    align-items: center;
  }

  .p-detail-mv__wrap {
    text-align: center;
    align-items: center;
    padding: 24px 12px 16px;
    background: rgba(255, 255, 255, .35);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    row-gap: 1.5rem;
    margin: 0;
  }

}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .p-detail-mv__wrap {
    margin-top: 1.5rem;
    margin-right: 0rem ;
  }

  .p-detail-mv__wrap {
    padding: 20px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
  }

}
.p-detail {
  padding: 0 0 2rem;
}

@media screen and (max-width: 768px) {
  .p-detail {
    padding: 0;
  }
}

.p-detail__inner {
  max-width: 1080px;
}

@media screen and (max-width: 768px) {
  .p-detail__inner {
    padding: 0 10px;
    margin-top: 8rem;
  }
}

.p-detail__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 10rem auto;
  gap: 60px;
}

@media screen and (max-width: 768px) {
  .p-detail__list {
    padding: 4px;
    margin: 6rem auto;
    gap: 20px;
  }
}


.p-detail__list:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-detail__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.p-detail__num.--blue .p-detail__path {
  stroke: #1c2a53;
}

.p-detail__num.--blue .p-detail__number {
  color: #1c2a53;
}

.p-detail__num.--blue .p-detail__line {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgb(28, 42, 83)),
      color-stop(45%, rgba(28, 42, 83, 0.48)),
      to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg,
      rgb(28, 42, 83),
      rgba(28, 42, 83, 0.48) 45%,
      rgba(255, 255, 255, 0));
}

.p-detail__num.--light-blue .p-detail__path {
  stroke: #37bef0;
}

.p-detail__num.--light-blue .p-detail__number {
  color: #37bef0;
}

.p-detail__num.--light-blue .p-detail__line {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgb(55, 190, 240)),
      color-stop(45%, rgba(55, 190, 240, 0.48)),
      to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg,
      rgb(55, 190, 240),
      rgba(55, 190, 240, 0.48) 45%,
      rgba(255, 255, 255, 0));
}

.p-detail__num.--blue02 .p-detail__path {
  stroke: #0359a0;
}

.p-detail__num.--blue02 .p-detail__number {
  color: #0359a0;
}

.p-detail__num.--blue02 .p-detail__line {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgb(3, 89, 160)),
      color-stop(45%, rgba(3, 89, 160, 0.48)),
      to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg,
      rgb(3, 89, 160),
      rgba(3, 89, 160, 0.48) 45%,
      rgba(255, 255, 255, 0));
}

.p-detail__num.--yellow .p-detail__path {
  stroke: #11225C;
}

.p-detail__num.--yellow .p-detail__number {
  color: #11225C;
}

.p-detail__num.--yellow .p-detail__line {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#11225C),
      color-stop(45%, rgba(17, 34, 92, 0.48)),
      to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg,
      #11225C,
      rgba(17, 34, 92, 0.48) 45%,
      rgba(255, 255, 255, 0));
}

.p-detail__num.--green .p-detail__path {
  stroke: #b2d2c0;
}

.p-detail__num.--green .p-detail__number {
  color: #b2d2c0;
}

.p-detail__num.--green .p-detail__line {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgb(178, 210, 192)),
      color-stop(45%, rgba(178, 210, 192, 0.48)),
      to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg,
      rgb(178, 210, 192),
      rgba(178, 210, 192, 0.48) 45%,
      rgba(255, 255, 255, 0));
}

.p-detail__num.--blue03 .p-detail__path {
  stroke: #a1c5d8;
}

.p-detail__num.--blue03 .p-detail__number {
  color: #a1c5d8;
}

.p-detail__num.--blue03 .p-detail__line {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgb(161, 197, 216)),
      color-stop(45%, rgba(161, 197, 216, 0.48)),
      to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg,
      rgb(161, 197, 216),
      rgba(161, 197, 216, 0.48) 45%,
      rgba(255, 255, 255, 0));
}

.p-detail__num.--purple .p-detail__path {
  stroke: #b6b1c7;
}

.p-detail__num.--purple .p-detail__number {
  color: #b6b1c7;
}

.p-detail__num.--purple .p-detail__line {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgb(182, 177, 199)),
      color-stop(45%, rgba(182, 177, 199, 0.48)),
      to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg,
      rgb(182, 177, 199),
      rgba(182, 177, 199, 0.48) 45%,
      rgba(255, 255, 255, 0));
}

/* SVGとその中の要素の設定 */
.p-detail__circle {
  width: 120px;
  height: 120px;
}

@media screen and (max-width: 768px) {
  .p-detail__circle {
    width: 60px;
    height: 60px;
  }
}

/* 円の線 */
.p-detail__path {
  fill: none;
  stroke: #008358;
  stroke-width: 1;
  stroke-dasharray: 377;
  /* 円周の長さ (直径120pxなので、半径60 * 2 * π ≈ 377) */
  stroke-dashoffset: 377;
  /* 初期状態で非表示 */
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  /* 下から描画を開始するために90度回転 */
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  /* 回転の基準点を中央に設定 */
}

@media screen and (max-width: 768px) {
  .p-detail__path {
    stroke-dasharray: 188;
    /* 円周の長さ (直径60pxなので、半径30 * 2 * π ≈ 188) */
    stroke-dashoffset: 188;
  }
}

/* 数字のスタイル */
.p-detail__number {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  color: #008358;
  opacity: 0;
  /* 初期状態で非表示 */
}

@media screen and (max-width: 768px) {
  .p-detail__number {
    font-size: 15px;
  }
}

/* 縦線のスタイル */
.p-detail__line {
  width: 1px;
  height: 0;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgb(0, 131, 88)),
      color-stop(45%, rgba(133, 196, 175, 0.48)),
      to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg,
      rgb(0, 131, 88),
      rgba(133, 196, 175, 0.48) 45%,
      rgba(255, 255, 255, 0));
  position: absolute;
  top: 87%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  /* 初期状態で非表示 */
}

.p-detail__item {
  width: 620px;
}

@media screen and (max-width: 1024px) {
  .p-detail__item {
    width: 80%;
    max-width: 620px;
  }
}
/* 
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .l-inner {
    padding: 0 3rem;
  }

  .p-detail-mv__text p {
    font-size: 1.3rem;
  }

  .p-detail-mv__wrap {
    row-gap: 1.4rem;
    margin-top: 5rem;
  }
} */


@media screen and (max-width: 768px) {
  .p-detail__item {
    width: 76.8115942029%;
  }
}

.p-detail__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin-top: 3rem;
}

.p-detail__img figcaption {
  display: block;
  background: #f4f4f4;
  text-align: center;
  padding: 0.9375rem;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4615384615;
}

@media screen and (max-width: 768px) {
  .p-detail__img figcaption {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .p-detail__img.--sp-width {
    /* width: 73.5849056604%; */
  }
}

.p-detail__img+.p-detail__title {
  margin-top: 3.75rem;
}

@media screen and (max-width: 768px) {
  .p-detail__img+.p-detail__title {
    margin-top: 1.6875rem;
  }
}

.p-detail__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

@media screen and (max-width: 768px) {
  .p-detail__title {
    font-size: 16px;
    line-height: 1.5;
  }
}

.p-detail__text {
  margin-top: 2.5rem;
}

.p-detail__text p {
  font-size: 15px;
  line-height: 2;
}

.p-detail__text p+p {
  margin-top: 2em;
}

.p-detail__text+.p-detail__img {
  margin-top: 3.75rem;
}

@media screen and (max-width: 768px) {
  .p-detail__text+.p-detail__img {
    margin-top: 1.875rem;
  }
}

.p-detail__text+.p-detail__img.--mt_sm {
  margin-top: 2.5rem;
}

@media screen and (max-width: 768px) {
  .p-detail__text+.p-detail__img.--mt_sm {
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .p-detail__text {
    margin-top: 1.25rem;
  }

  .p-detail__text p {
    font-size: .8666rem;
  }
}

.p-detail__imgSm {
  width: 72.5806451613%;
  margin-top: 3.75rem;
}

.p-detail__imgSm figcaption {
  display: block;
  padding: 0.375rem;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4615384615;
  color: #fff;
  background: #555555;
  text-align: center;
  margin-bottom: 1.125rem;
}

@media screen and (max-width: 768px) {
  .p-detail__imgSm {
    margin-top: 1.875rem;
    width: 100%;
  }

  .p-detail__imgSm figcaption {
    padding: 0.125rem;
    font-size: 11px;
    line-height: 1.4545454545;
    margin-bottom: 0.625rem;
  }
}

.p-detail__box {
  background: #eaeaea;
  padding: 2.5rem 1.875rem;
  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;
  margin-top: 3.75rem;
}

@media screen and (max-width: 768px) {
  .p-detail__box {
    margin-top: 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.4375rem 1.4375rem 0.9375rem;
  }
}

.p-detail__boxImg {
  width: 49.1071428571%;
}

@media screen and (max-width: 768px) {
  .p-detail__boxImg {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p-detail__boxBody {
    margin-top: 1.5625rem;
  }
}

.p-detail__boxTitle {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4166666667;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.5em;
  -moz-column-gap: 0.5em;
  column-gap: 0.5em;
}

.p-detail__boxTitle::before {
  content: "◀";
}

@media screen and (max-width: 768px) {
  .p-detail__boxTitle {
    font-size: 11px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-detail__boxTitle::before {
    content: "▲";
  }
}

.p-detail__boxLists {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 768px) {
  .p-detail__boxLists {
    margin-top: 0.75rem;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }
}

.p-detail__boxList {
  font-size: 12px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .p-detail__boxList {
    font-size: 11px;
    line-height: 1.6363636364;
  }
}

.p-detail__btn {
  margin-top: 2.5rem;
}

@media screen and (max-width: 768px) {
  .p-detail__btn {
    margin-top: 1.875rem;
  }
}

.p-detail__imgWrap {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3125rem;
}

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

@media screen and (max-width: 768px) {
  .p-detail__imgWrap {
    margin-top: 1.875rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8125rem;
  }
}

.p-detail__imgWrap02 {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.p-detail__imgWrap02 figure img {
  width: 100%;
}

.p-detail__imgWrap02 figure p {
  margin-bottom: 1.5rem;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5384615385;
  color: #11225C;
}

.p-detail__imgWrap02 p {
  margin-top: 1.375rem;
  font-size: 12px;
  line-height: 1.5384615385;
}

.p-detail__imgWrap02+.p-detail__title {
  margin-top: 3.75rem;
}

@media screen and (max-width: 768px) {
  .p-detail__imgWrap02 {
    margin-top: 1.875rem;
    grid-template-columns: auto;
    gap: 1.25rem;
  }

  .p-detail__imgWrap02 figure {
    /* width: 73.5849056604%; */
  }

  .p-detail__imgWrap02 figure p {
    font-size: 11px;
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .p-detail__imgTitle {
    font-size: 11px;
    white-space: nowrap;
  }
}

.p-detail-top-movie {
  margin: 8rem auto 3.75rem;
  width: 100%;
  max-width: 900px;
  line-height: 2.2;
  padding: 0 1rem;
}

.p-detail-top-movie img,
.p-detail-top-movie iframe {
  width: 100%;
  max-width: 620px;
}

.p-detail__mm {
  max-width: 620px;
  margin: 3rem auto;
  display: block;

}

@media screen and (max-width: 768px) {
  .p-detail__movie {
    width: 100%;
    margin-top: 1.875rem;
  }

  .p-detail__mm,
  .p-detail__movie,
  .p-detail__movie img {
    max-width: 100%;
  }

  .p-detail-top-movie {
    width: 100%;
    padding: 0 16px;
    margin: 6rem auto;
  }
}

.p-detail__movie img,
.p-detail__movie iframe {
  width: 100%;
  height: 100%;
}

.p-detail__result {
  background: #555555;
  padding: 2.875rem 1.4375rem 1.25rem;
}

.p-detail__result p {
  font-size: 10px;
  letter-spacing: -0.05em;
  line-height: 1.5;
  margin-top: 1.5rem;
  text-align: center;
  color: #fff;
}

.p-detail__result+.p-detail__title {
  margin-top: 3.75rem;
}

.p-detail-card {
  margin: 1rem 0;
  width: 100%;
  max-width: 450px;
}

.p-detail-card h4 {
  line-height: 31px;
  color: #11225C;
  font-size: 12px;
  margin: 3rem 0 1rem;

}

.fs-12 {
  font-size: 12px;
  font-weight: 700;
  margin: .5rem auto 2.5rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-detail__result {
    padding: 1.3125rem 1.6875rem 1.6875rem;
  }

  .p-detail__result p {
    font-size: 11px;
    text-align: left;
    margin-top: 1.0625rem;
  }

  .p-detail__result+.p-detail__title {
    margin-top: 1.875rem;
  }

  .fs-12 {
    font-size: .72rem;
  }
}

.p-detail__resultWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9375rem;
}

.p-detail__resultWrap figure img {
  width: 100%;
}

.p-detail__resultWrap figure figcaption {
  font-size: 15px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #fff;
  margin-bottom: 0.625rem;
}

@media screen and (max-width: 768px) {
  .p-detail__resultWrap {
    grid-template-columns: auto;
    gap: 1.4375rem;
  }

  .p-detail__resultWrap figure figcaption {
    margin-bottom: 0.4375rem;
  }
}

.p-faq {
  padding: 130px 0 9.0625rem;
}

@media screen and (max-width: 768px) {
  .p-faq {
    padding: 5.3125rem 0 6.25rem;
  }
}

.p-faq__inner {
  max-width: 950px;
}

.p-faq__title {
  font-size: 30px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 300;
  text-align: center;
  color: #baac8a;
}

@media screen and (max-width: 768px) {
  .p-faq__title {
    font-size: 24px;
  }
}

.p-faq__content:first-child {
  margin-top: 6.6875rem;
}

@media screen and (max-width: 768px) {
  .p-faq__content:first-child {
    margin-top: 6.25rem;
  }
}

.p-faq__content:not(:first-child) {
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {
  .p-faq__content:not(:first-child) {
    margin-top: 3.125rem;
  }
}

.p-faq__contentTitle {
  font-size: max(1.125rem, 15px);
  font-weight: 400;
  line-height: 1.4444444444;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-faq__contentTitle {
    font-size: 15px;
    line-height: 1.4;
  }
}

.p-faq__lists {
  margin-top: 2.125rem;
}

@media screen and (max-width: 768px) {
  .p-faq__lists {
    margin-top: 1.875rem;
  }
}

.p-faq__list:not(:first-child) {
  margin-top: 2.5rem;
}

@media screen and (max-width: 768px) {
  .p-faq__list:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.p-faq__question {
  background: #f5f5f5;
  padding: 1.25rem 1.875rem 1.25rem 3.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-faq__question::before {
  content: "Q";
  font-family: "Inter Tight", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: #1b2f67;
  margin-right: 2.375rem;
}

.p-faq__question p {
  font-size: max(1rem, 15px);
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .p-faq__question {
    padding: 0.875rem 0.9375rem;
  }

  .p-faq__question::before {
    font-size: 16px;
    margin-right: 0.9375rem;
  }

  .p-faq__question p {
    font-size: 13px;
    line-height: 1.4615384615;
    margin-right: 0.5rem;
  }
}

.p-faq__questionBtn {
  width: 1.875rem;
  height: 1.875rem;
  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;
  background: #043976;
  margin-left: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-faq__questionBtn img {
  width: 0.4375rem;
  height: 0.25rem;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-faq__questionBtn.open img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
  .p-faq__questionBtn {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-faq__answer {
  display: none;
  padding: 2.5rem 2.5rem 0 6.875rem;
}

.p-faq__answer p {
  font-size: 13px;
  line-height: 2.4615384615;
}

.p-faq__answer p+p {
  margin-top: 1.5em;
}

.p-faq__answer span {
  display: block;
  font-size: 10px;
  line-height: 1.5;
  margin-top: 1.5em;
}

@media screen and (max-width: 768px) {
  .p-faq__answer {
    padding: 1.875rem 0.9375rem 0;
  }

  .p-faq__answer p {
    line-height: 1.6923076923;
  }

  .p-faq__answer span {
    font-size: 10px;
    line-height: 1.5;
  }
}

.p-faq__text {
  margin-top: 7.5rem;
  text-align: center;
}

.p-faq__text p {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .p-faq__text {
    margin-top: 6.25rem;
  }

  .p-faq__text p {
    font-size: 13px;
    line-height: 1.4615384615;
  }
}

.p-faq__btn {
  margin-top: 1.875rem;
  text-align: center;
}

.p-faq__btn a {
  border: 1px solid #000;
  padding: 1.875rem;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  width: 18.75rem;
  border-radius: 45px;
}

.p-faq__btn a::after {
  content: "";
  width: 0%;
  height: 100%;
  background: #073b74;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  right: 0;
}

.p-faq__btn a span {
  font-size: 20px;
  font-family: "Inter Tight", sans-serif;
  line-height: 1;
  z-index: 20;
}

.p-faq__btn a:hover {
  opacity: 1;
  border-color: transparent;
  color: #fff;
}

.p-faq__btn a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

@media screen and (max-width: 768px) {
  .p-faq__btn {
    margin-top: 1.25rem;
  }

  .p-faq__btn a {
    padding: 1.25rem;
    width: 12.5rem;
    border-radius: 40px;
  }

  .p-faq__btn a::after {
    display: none;
  }

  .p-faq__btn a span {
    font-size: 15px;
  }
}

.p-footer {
  background: #f5f5f5;
  padding: 4.125rem 0 4.0625rem;
}

@media screen and (max-width: 768px) {
  .p-footer {
    padding: 1.9375rem 0 3.25rem;
  }
}

.p-footer__inner {
  max-width: 1110px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-footer__inner {
    padding: 0 0.625rem;
  }
}

.p-footer__box {
  max-width: 837px;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .p-footer__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
  }
}

.p-footer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

@media screen and (max-width: 768px) {
  .p-footer__head {
    display: contents;
  }
}

.p-footer__logo {
  width: 240px;
}

@media screen and (max-width: 768px) {
  .p-footer__logo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 160px;
    padding-left: 10px;
  }
}

.p-footer__logo a {
  display: block;
}

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

.p-footer__btn a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  width: 200px;
  padding: 1.125rem 2.3125rem;
  border-radius: 45px;
  border: 1px solid #000;
}

.p-footer__btn a::after {
  content: "";
  width: 0%;
  height: 100%;
  background: #073b74;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  right: 0;
}

.p-footer__btn a span {
  font-size: 15px;
  font-family: "Inter Tight", sans-serif;
  line-height: 1.2;
  text-align: center;
  z-index: 20;
}

.p-footer__btn a:hover {
  opacity: 1;
  border-color: transparent;
  color: #fff;
}

.p-footer__btn a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

@media screen and (max-width: 768px) {
  .p-footer__btn a:hover {
    border-color: #000;
    color: #000;
  }
}

@media screen and (max-width: 768px) {
  .p-footer__btn {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    text-align: center;
    margin-top: 2.625rem;
  }

  .p-footer__btn a {
    width: 150px;
    padding: 0.8125rem 2.3125rem;
  }

  .p-footer__btn a::after {
    display: none;
  }

  .p-footer__btn a span {
    font-size: 12px;
  }
}

.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 4.375rem;
}

@media screen and (max-width: 768px) {
  .p-footer__nav {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 3rem;
    margin-top: 1.9375rem;
    padding: 0 1.25rem;
  }
}

.p-footer__item {
  width: 250px;
}

.p-footer__navTitle {
  font-size: 14px;
  font-family: "Inter Tight", sans-serif;
  line-height: 1.2142857143;
  padding-bottom: 0.375rem;
  border-bottom: 0.5px solid #000;
  width: max(13.75rem, 200px);
}

.p-footer__navTitle a {
  display: block;
}

.p-footer__navTitle a:hover {
  opacity: 1;
  color: #073b74;
}

@media screen and (max-width: 768px) {
  .p-footer__navTitle {
    width: 100%;
    font-size: 12px;
    padding-bottom: 0.3125rem;
  }

  .p-footer__navTitle a:hover {
    color: #000;
  }
}

.p-footer__lists {
  margin-top: 0.4375rem;
}

@media screen and (max-width: 768px) {
  .p-footer__lists {
    margin-top: 0.875rem;
  }
}

.p-footer__lists.--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-footer__list a {
  display: block;
  font-size: 12px;
  font-family: "Inter Tight", sans-serif;
  line-height: 1.1666666667;
  padding: 6px 0;
}

.p-footer__list a:hover {
  color: #073b74;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .p-footer__list a {
    font-size: 10px;
    padding: 8px 0;
  }

  .p-footer__list a:hover {
    color: #000;
  }
}

.p-footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  font-family: "Inter Tight", sans-serif;
  line-height: 1.1666666667;
  margin-top: 5.8125rem;
}

@media screen and (max-width: 768px) {
  .p-footer__info {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    border-top: 0.5px solid #c8c8c9;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 9px;
    padding: 2rem 0 0 0.625rem;
    row-gap: 2.1875rem;
  }
}

.p-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0.5rem;
}

@media screen and (max-width: 768px) {
  .p-footer__links {
    margin-left: auto;
  }
}

.p-footer__link a {
  display: block;
  padding: 0 0.9375rem;
}

.p-footer__link a.p-footer__blank {
  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;
}

.p-footer__link a.p-footer__blank::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url("../img/icon_blank.svg") no-repeat;
  background-size: contain;
}

.p-footer__link a:hover {
  color: #073b74;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .p-footer__link a {
    padding: 0 0.5625rem;
  }

  .p-footer__link a.p-footer__blank::after {
    width: 6px;
    height: 6px;
  }

  .p-footer__link a:hover {
    color: #000;
  }
}

.p-footer__copy {
  margin-left: 4.375rem;
}

.p-footer__copy small {
  font-size: 9px;
}

@media screen and (max-width: 768px) {
  .p-footer__copy {
    margin-left: auto;
    width: 100%;
    text-align: right;
  }

  .p-footer__copy small {
    font-size: 8px;
  }
}

.p-footer__pagetop {
  position: absolute;
  right: 1.5625rem;
  bottom: 0;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-footer__pagetop img {
  width: 5rem;
  height: 5rem;
}

.p-footer__pagetop:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .p-footer__pagetop {
    left: 0.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.3125rem;
    -moz-column-gap: 0.3125rem;
    column-gap: 0.3125rem;
  }

  .p-footer__pagetop img {
    width: 16px;
    height: 16px;
  }

  .p-footer__pagetop span {
    font-size: 10px;
    font-family: "Inter Tight", sans-serif;
    line-height: 1.2;
  }
}

.p-header-lang {
  border: 1px solid #000;
  border-radius: 45px;
  padding: 14px 18px 12px;
  cursor: pointer;
  position: absolute;
  right: 95px;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 1024px) {
  .p-header-lang {
    right: 70px;
  }
}

@media screen and (max-width: 768px) {
  .p-header-lang {
    right: 57px;
  }
}

.p-header-lang.open {
  background: #dcdddd;
  border: none;
  border-radius: 20px;
}

.p-header-lang.open .p-header-lang__text::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.p-header-lang__text {
  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: 1px;
  -moz-column-gap: 1px;
  column-gap: 1px;
  font-size: 13px;
  line-height: 1.1538461538;
  font-family: "Inter Tight", sans-serif;
}

.p-header-lang__text::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-mask: url(../img/icon_lang.svg) no-repeat center/contain;
  mask: url(../img/icon_lang.svg) no-repeat center/contain;
  background: #000;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-header-lang__text::after {
  content: "";
  display: block;
  width: 4px;
  height: 3px;
  -webkit-mask: url(../img/icon_arrow.svg) no-repeat center/contain;
  mask: url(../img/icon_arrow.svg) no-repeat center/contain;
  background: #000;
}

.p-header-lang__lists {
  display: none;
  margin-top: 0.875rem;
}

.p-header-lang__list a {
  display: block;
  padding: 0.4375rem 0 0.4375rem 0.625rem;
  font-size: 13px;
  line-height: 1.1538461538;
}

.p-header-link {
  width: 75px;
  height: 100%;
  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;
  padding-left: 1.25rem;
  position: absolute;
  right: 0;
  top: 0;
}

.p-header-link::before {
  content: "";
  width: 1px;
  height: 1.875rem;
  background: #000;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.p-header-link a {
  display: block;
  width: 80%;
  height: 1.875rem;
  -webkit-mask: url(../img/icon_link.svg) no-repeat center center/contain;
  mask: url(../img/icon_link.svg) no-repeat center center/contain;
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  margin-left: .625rem;
}

.p-header-link a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#009fe8),
      color-stop(60%, #0080cb),
      to(#0068b6));
  background: linear-gradient(#009fe8, #0080cb 60%, #0068b6);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-header-link a:hover {
  opacity: 1;
  background: transparent;
}

.p-header-link a:hover::after {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .p-header-link a:hover {
    background: #000;
  }
}

@media screen and (max-width: 1024px) {
  .p-header-link {
    width: 60px;
    padding-left: 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .p-header-link {
    width: 45px;
    padding-left: 0;
  }

  .p-header-link::before {
    display: none;
  }

  .p-header-link a {
    height: 1.5rem;
  }

  .p-header-link a::after {
    display: none;
  }
}

@media screen and (max-width: 428px) {
  .p-header-link {
    position: relative;
    width: 60px;
    padding-left: 0.9375rem;
  }

  .p-header-link::before {
    /*display: block;*/
    height: 1.5625rem;
  }

  .p-header-link a:hover {
    background: #000;
  }
}

.p-header {
  width: 100%;
  z-index: 90;
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  height: 80px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .p-header {
    height: 70px;
  }
}

.p-header.is-hidden {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.p-header__inner {
  padding: 0 2.125rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .p-header__inner {
    padding: 0 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .p-header__inner {
    padding: 0 0.625rem;
  }
}

@media screen and (max-width: 428px) {
  .p-header__inner {
    padding: 0 0.625rem;
  }
}

.p-header__logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: inherit;
}

.p-header__logo a {
  display: block;
  width: 10.9375rem;
  height: inherit;
  padding: 0 1rem;
}

@media screen and (max-width: 1024px) {
  .p-header__logo a {
    width: 10rem;
  }
}

@media screen and (max-width: 768px) {
  .p-header__logo a {
    width: 120px;
    padding: 1.375rem 10px;
  }
}

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

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
}

@media screen and (max-width: 768px) {
  .p-header__nav {
    display: none;
    position: fixed;
    height: 100vh;
    width: 100%;
    background-color: #1B2F67;
    top: 0;
    left: 0;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }

  .p-header__nav.is-ready {
    display: block;
  }

  .p-header__nav.open {
    opacity: 1;
    visibility: visible;
  }
}

.p-header__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 168px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .p-header__btnWrap {
    padding-right: 145px;
  }
}

@media screen and (max-width: 768px) {
  .p-header__btnWrap {
    padding-right: 132px;
  }
}

@media screen and (max-width: 428px) {
  .p-header__btnWrap {
    padding-right: 0;
  }
}

@media screen and (max-width: 428px) {
  .p-header__btn {
    display: none;
  }
}

.p-header__btn a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 13px 0.875rem;
  border-radius: 45px;
  overflow: hidden;
  border: 1px solid #000;
  color: #000;
}

.p-header__btn a::after {
  content: "";
  width: 0%;
  height: 100%;
  background: #073b74;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  right: 0;
}

@media screen and (max-width: 768px) {
  .p-header__btn a::after {
    display: none;
  }
}

.p-header__btn a span {
  font-size: 13px;
  font-family: "Inter Tight", sans-serif;
  line-height: 1.1538461538;
  z-index: 20;
}

.p-header__btn a:hover {
  opacity: 1;
  border-color: transparent;
  color: #fff;
}

.p-header__btn a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

@media screen and (max-width: 768px) {
  .p-header__btn a:hover {
    border-color: #000;
    color: #000;
  }
}

@media screen and (max-width: 428px) {
  .p-header__lang {
    display: none;
  }
}

.p-header__hamburger {
  display: none;
}

@media screen and (max-width: 768px) {
  .p-header__hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 13px;
    position: relative;
    z-index: 95;
  }

  .p-header__hamburger span {
    display: block;
    width: 30px;
    height: 1px;
    background: #000;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .p-header__hamburger span:nth-child(2) {
    margin: 5px 0;
  }
}

@media screen and (max-width: 428px) {
  .p-header__hamburger {
    padding: 13px 15px;
  }
}

.p-header__hamburger.open span {
  background: #fff;
}

.p-header__hamburger.open span:nth-child(1) {
  -webkit-transform: translateY(1px) rotate(-25deg);
  transform: translateY(1px) rotate(-25deg);
}

.p-header__hamburger.open span:nth-child(2) {
  opacity: 0;
  margin: 0;
}

.p-header__hamburger.open span:nth-child(3) {
  -webkit-transform: translateY(-1px) rotate(25deg);
  transform: translateY(-1px) rotate(25deg);
}

.p-maintenance-mv {
  padding: 130px 0 9.375rem;
}

@media screen and (max-width: 768px) {
  .p-maintenance-mv {
    padding: 5.3125rem 0 5.625rem;
  }
}

.p-maintenance-mv__inner {
  max-width: 750px;
}

@media screen and (max-width: 768px) {
  .p-maintenance-mv__inner {
    min-width: 100%;
    padding: 0 25px;
  }
}

.p-maintenance-mv__title {
  font-size: 30px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 300;
  line-height: 1.2;
  color: #baac8a;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-maintenance-mv__title {
    font-size: 24px;
  }
}

.p-maintenance-mv__text {
  margin-top: 7.5rem;
}

.p-maintenance-mv__text p {
  font-size: 13px;
  line-height: 2.4615384615;
}

.p-maintenance-mv__text p+p {
  margin-top: 2em;
}

@media screen and (max-width: 768px) {
  .p-maintenance-mv__text {
    margin-top: 6.25rem;
  }

  .p-maintenance-mv__text p {
    font-size: 12px;
  }
}

.p-maintenance {
  padding: 6.25rem 0 9.375rem;
}

@media screen and (max-width: 768px) {
  .p-maintenance {
    padding: 3.125rem 0 6.25rem;
  }
}

@media screen and (max-width: 768px) {
  .p-maintenance__inner {
    padding: 0 37px;
  }
}

.p-maintenance__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6.25rem 3.125rem;
}

@media screen and (max-width: 768px) {
  .p-maintenance__lists {
    grid-template-columns: auto;
    gap: 3.125rem;
  }
}

.p-maintenance__list {
  opacity: 0;
}

.p-maintenance__img {
  border: 0.5px solid #000;
}

.p-maintenance__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1;
}

.p-maintenance__title {
  margin-top: 1.875rem;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.p-maintenance__catWrap {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* gap: 0.5625rem 0.625rem;*/
  gap: 0.5625rem;
}

.p-maintenance__cat {
  display: inline-block;
  background: #f5f5f5;
  border-radius: 0.75rem;
  font-size: 9px;
  font-family: "Inter Tight", sans-serif;
  line-height: 1;
  padding: 0.4375rem 0;
  /* min-width: 96px;*/
  min-width: 94px;
  text-align: center;
}

.p-maintenance__text {
  margin-top: 1.25rem;
}

.p-maintenance__text p {
  font-size: 13px;
  line-height: 1.6923076923;
}

.p-maintenance__bottomText {
  margin-top: 5.9375rem;
  text-align: center;
}

.p-maintenance__bottomText p {
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .p-maintenance__bottomText {
    margin-top: 6.25rem;
  }

  .p-maintenance__bottomText p {
    font-size: 13px;
    line-height: 1.4615384615;
  }
}

.p-maintenance__btn {
  margin-top: 1.875rem;
  text-align: center;
}

.p-maintenance__btn a {
  border: 1px solid #000;
  padding: 1.875rem;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  width: 18.75rem;
  border-radius: 45px;
}

.p-maintenance__btn a::after {
  content: "";
  width: 0%;
  height: 100%;
  background: #073b74;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  right: 0;
}

.p-maintenance__btn a span {
  font-size: 20px;
  font-family: "Inter Tight", sans-serif;
  line-height: 1;
  text-align: center;
  z-index: 20;
}

.p-maintenance__btn a:hover {
  opacity: 1;
  border-color: transparent;
  color: #fff;
}

.p-maintenance__btn a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

@media screen and (max-width: 768px) {
  .p-maintenance__btn a:hover {
    border-color: #000;
    color: #000;
  }
}

@media screen and (max-width: 768px) {
  .p-maintenance__btn {
    margin-top: 1.25rem;
  }

  .p-maintenance__btn a {
    padding: 1.25rem;
    width: 12.5rem;
    border-radius: 40px;
  }

  .p-maintenance__btn a::after {
    display: none;
  }

  .p-maintenance__btn a span {
    font-size: 15px;
  }
}

/* Puchase infomation and buttons  Added at 2026-03-24 */
.p-maintenance-purchase__text+.p-maintenance-mv__text {
  margin-top: 4rem;
}

.p-maintenance-purchase__text {
  margin-top: 7.5rem;
  padding: 1.875rem 1.5rem;
  border: 1px solid #baac8a;
  border-radius: 10px;
  text-align: center;
  line-height: 2.4615384615;
  font-size: .8125rem;
}

.p-maintenance-purchase__text a:hover {
  color: #073b74;
}

.p-maintenance-purchase__text .p-maintenance-purchase__caution {
  width: fit-content;
  margin: 0 auto 1rem;
  padding: 0 1.875rem;
  background: #df0000;
  color: #fff;
  text-align: center;
  line-height: 2;
}

.p-maintenance-purchase__btn>div {
  margin: auto;
  color: #000;
}

.p-maintenance-purchase__btn-memo {
  margin: .75rem auto;
  padding: 0;
  text-align: center;
  font-size: .727rem;
}

/* Terms of puchase Added at 2026-03-24 */


.p-media {
  padding: 130px 0 0;
}

@media screen and (max-width: 768px) {
  .p-media {
    padding: 5.3125rem 0 6.25rem;
  }
}

.p-media__title {
  font-size: 30px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 300;
  text-align: center;
  color: #baac8a;
}

@media screen and (max-width: 768px) {
  .p-media__title {
    font-size: 24px;
  }
}

.p-media__lists {
  margin-top: 6.4375rem;
}

@media screen and (max-width: 768px) {
  .p-media__lists {
    margin-top: 4.125rem;
  }
}

.p-media__list {
  padding: 6.4375rem 0 6.8125rem;
}

.p-media__list:nth-child(odd) {
  /*background: #f5f5f5;*/
  background: #fff;
  /* Modified at 21 Jan. 2025 */
}

.p-media__list:nth-child(even) {
  background: #a2a2a2;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .p-media__list {
    padding: 0;
  }

  .p-media__list:nth-child(odd),
  .p-media__list:nth-child(even) {
    background: none;
    color: #000;
  }

  .p-media__list:not(:first-child) {
    margin-top: 6.4375rem;
  }
}

.p-media__inner {
  max-width: 900px;
  margin-inline: auto;
  padding: 0 25px;
}

@media screen and (max-width: 768px) {
  .p-media__inner {
    padding: 0;
  }
}

.p-media__time {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  line-height: 1.2222222222;
}

@media screen and (max-width: 768px) {
  .p-media__time {
    padding: 0 1.25rem;
    font-size: 14px;
  }
}

.p-media__img {
  margin-top: 1.25rem;
  width: 100%;
  position: relative;
}

.p-media__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 900/520;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p-media__img img {
    aspect-ratio: 375/507;
  }
}

.p-media__open {
  position: absolute;
  right: 1.875rem;
  bottom: 1.875rem;
  width: 3.125rem;
  height: 3.125rem;
}

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

.p-media__desc {
  margin-top: 2.375rem;
  font-family: "Inter Tight", sans-serif;
}

.p-media__desc p {
  font-size: 16px;
  line-height: 1.1875;
}

.p-media__desc p+span {
  /* Modified at 21 Jan. 2025 */
  font-size: 14px;
  line-height: 1.2142857143;
}

.p-media__desc p>span,
.p-media__desc span>span {
  /* Added at 21 Jan. 2025 */
  /*text-transform: uppercase;*/
  /* Removed at 28 Feb. 2025 */
}

@media screen and (max-width: 768px) {
  .p-media__desc {
    margin-top: 1.25rem;
    padding: 0 1.25rem;
  }

  .p-media__desc p,
  .p-media__desc span {
    font-size: 14px;
    letter-spacing: -0.02em;
  }
}

.p-megamenu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #dcdddd;
  width: 100%;
  display: none;
  z-index: 100;
  padding: 0.875rem 0 0.625rem;
}

@media screen and (max-width: 768px) {
  .p-megamenu {
    position: static;
    background: none;
  }
}

.p-megamenu__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 45px;
  -moz-column-gap: 45px;
  column-gap: 45px;
  max-width: 523px;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .p-megamenu__lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    margin-top: 1.125rem;
  }
}

.p-megamenu__lists .p-megamenu__list.--column1 {
  width: 92px;
}

.p-megamenu__lists .p-megamenu__list.--column2 {
  width: 112px;
}

.p-megamenu__lists .p-megamenu__list.--column3 {
  width: 110px;
}

.p-megamenu__lists .p-megamenu__list.--column4 {
  width: 74px;
}

.p-megamenu__lists .p-megamenu__list a {
  display: block;
  font-size: 13px;
  line-height: 1.1538461538;
  padding: 14px 0;
}

@media screen and (max-width: 768px) {
  .p-megamenu__lists .p-megamenu__list a {
    padding: 0.9375rem 0;
    font-size: 11px;
  }
}

.p-megamenu__lists .p-megamenu__list a:hover {
  color: #073b74;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .p-megamenu__lists .p-megamenu__list a:hover {
    color: #fff;
  }
}

@media screen and (max-width: 768px) {

  .p-megamenu__lists .p-megamenu__list.--column1,
  .p-megamenu__lists .p-megamenu__list.--column2,
  .p-megamenu__lists .p-megamenu__list.--column3,
  .p-megamenu__lists .p-megamenu__list.--column4 {
    width: auto;
  }
}

/* モーダルのスタイル */
.p-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
}

.p-modal__inner {
  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;
  width: 100%;
  height: 100%;
}

.p-modal__content {
  width: 100%;
  max-width: 955px;
  position: relative;
  cursor: default;
}

.p-modal__close {
  position: absolute;
  top: -5rem;
  right: 1.875rem;
  width: 3.125rem;
  height: 3.125rem;
}

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

.p-nav__head {
  display: none;
}

@media screen and (max-width: 768px) {
  .p-nav__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 1.25rem 0 0.625rem;
    height: 70px;
  }
}

@media screen and (max-width: 768px) and (max-width: 428px) {
  .p-nav__head {
    position: relative;
    padding: 0 0.625rem;
  }
}

.p-nav__logo a {
  display: block;
  width: 120px;
  padding: 1.375rem 10px;
}

.p-nav__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 150px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-nav__btnWrap {
    padding-right: 132px;
  }
}

@media screen and (max-width: 428px) {
  .p-nav__btnWrap {
    display: contents;
  }
}

.p-nav__btn a {
  display: block;
  font-size: 13px;
  font-family: "Inter Tight", sans-serif;
  line-height: 1.1538461538;
  padding: 13px 0.875rem;
  border-radius: 20px;
  border: 1px solid #fff;
  color: #fff;
}

@media screen and (max-width: 428px) {
  .p-nav__btn {
    display: none;
  }
}

.p-nav__lang.p-header-lang {
  border-color: #fff;
}

.p-nav__lang .p-header-lang__text {
  color: #fff;
}

.p-nav__lang .p-header-lang__text::before,
.p-nav__lang .p-header-lang__text::after {
  background: #fff;
}

.p-nav__lang.open .p-header-lang__text {
  color: #000;
}

.p-nav__lang.open .p-header-lang__text::before,
.p-nav__lang.open .p-header-lang__text::after {
  background: #000;
}

@media screen and (max-width: 428px) {
  .p-nav__lang {
    right: 130px;
    top: 13px;
  }
}

.p-nav__btnLink.p-header-link::before {
  background: #fff;
}

.p-nav__btnLink.p-header-link a {
  background: #fff;
}

.p-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

@media screen and (max-width: 768px) {
  .p-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0.1875rem 1.875rem 6.25rem;
    overflow: auto;
  }
}

.p-nav__item {
  height: inherit;
}

.p-nav__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1.25rem;
  font-size: 13px;
  font-family: "Inter Tight", sans-serif;
  line-height: 1.1538461538;
  height: inherit;
}

.p-nav__item a span {
  position: relative;
}

.p-nav__item a span::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #073b74;
  position: absolute;
  left: 0;
  bottom: -1px;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

@media screen and (max-width: 1024px) {
  .p-nav__item a {
    padding: 0 0.8125rem;
  }
}

.p-nav__item a:hover {
  color: #073b74;
  opacity: 1;
}

.p-nav__item a:hover span::after {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-nav__item {
    height: auto;
  }

  .p-nav__item:not(:first-child) {
    margin-top: 3.75rem;
  }

  .p-nav__item a {
    padding: 0;
    display: block;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
  }

  .p-nav__item a.p-nav__link {
    pointer-events: none;
  }

  .p-nav__item a:hover {
    color: #fff;
  }

  .p-nav__item a:hover span::after {
    width: 0;
  }
}

.p-nav__item.open .p-nav__text::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.p-nav__itemBtn {
  text-align: center;
  margin-top: 3.75rem;
}

.p-nav__itemBtn a {
  display: inline-block;
  width: 150px;
  font-size: 15px;
  font-family: "Inter Tight", sans-serif;
  line-height: 1.2;
  padding: 10px 12px 14px;
  border-radius: 45px;
  border: 1px solid #fff;
  color: #fff;
}

.p-nav__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 3px;
  -moz-column-gap: 3px;
  column-gap: 3px;
}

.p-nav__text::after {
  content: "";
  display: block;
  width: 5px;
  height: 4px;
  -webkit-mask: url(../img/icon_arrow.svg) no-repeat center/contain;
  mask: url(../img/icon_arrow.svg) no-repeat center/contain;
  background: #000;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media screen and (max-width: 768px) {
  .p-nav__text {
    -webkit-column-gap: 7px;
    -moz-column-gap: 7px;
    column-gap: 7px;
  }

  .p-nav__text::after {
    width: 8px;
    height: 7px;
    background: #fff;
  }
}

.p-service-mv {
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(rgb(0, 15, 65)),
      to(rgb(6, 16, 146)));
  background: linear-gradient(90deg, rgb(0, 15, 65), rgb(6, 16, 146));
  padding: 8.5rem 0 10.3125rem;
  text-align: center;
  color: #fff;
  padding: 13.375rem 0 13rem;
}

.p-service-mv__title {
  font-size: 30px;
  font-weight: 300;
  font-family: "Inter Tight", sans-serif;
  color: #baac8a;
}

@media screen and (max-width: 768px) {
  .p-service-mv__title {
    font-size: 24px;
  }
}

.p-service-mv__text {
  font-weight: 400;
  margin-top: 4rem;
}

.p-service-mv__text p {
  font-size: max(0.9375rem, 12px);
  line-height: 2.8;
}

.p-top-contact {
  padding: 14.5rem 0 14rem;
  background: url(../img/top-contact_bg.jpg) no-repeat center/cover;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .p-top-contact {
    padding: 6.5625rem 0 6.25rem;
  }
}

.p-top-contact::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-top-contact__inner {
  max-width: 1137px;
}

@media screen and (max-width: 768px) {
  .p-top-contact__inner {
    padding: 0 28px;
  }
}

.p-top-contact__title {
  font-size: 4.5rem;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  line-height: 1.1944444444;
  color: #fff;
}

.p-top-contact__title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-column-gap: 2.875rem;
  -moz-column-gap: 2.875rem;
  column-gap: 2.875rem;
}

.p-top-contact__title a::after {
  content: "";
  display: block;
  width: 1.75rem;
  height: 2.1875rem;
  -webkit-mask: url(../img/icon_arrow.svg) no-repeat center/contain;
  mask: url(../img/icon_arrow.svg) no-repeat center/contain;
  background: #fff;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

@media screen and (max-width: 768px) {
  .p-top-contact__title {
    font-size: 24px;
    line-height: 1;
  }

  .p-top-contact__title a {
    -webkit-column-gap: 0.4375rem;
    -moz-column-gap: 0.4375rem;
    column-gap: 0.4375rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-top-contact__title a::after {
    width: 5px;
    height: 10px;
    background: url(../img/top-contact_arrow.svg) no-repeat center/contain;
    -webkit-mask: none;
    mask: none;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

.p-top-contact__text {
  margin-top: 5rem;
}

.p-top-contact__text p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.7619047619;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .p-top-contact__text {
    margin-top: 1.875rem;
  }

  .p-top-contact__text p {
    font-size: 14px;
    line-height: 1.7857142857;
  }
}

.p-top-service {
  background: #e9f0ee;
  padding: 8.9375rem 0 12.3125rem;
}

@media screen and (max-width: 768px) {
  .p-top-service {
    padding: 4.6875rem 0 6.25rem;
  }
}

.p-top-service__inner {
  max-width: 1130px;
}

@media screen and (max-width: 768px) {
  .p-top-service__inner {
    padding: 0 28px;
  }
}

.p-top-service__title {
  font-size: 2.25rem;
  font-family: "Inter Tight", sans-serif;
  font-weight: 300;
  line-height: 1.1944444444;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-top-service__title {
    font-size: 24px;
    line-height: 1;
  }
}

.p-top-service__btn {
  margin-top: 8.125rem;
  text-align: center;
}

.p-topics {
  padding: 9.8125rem 0 18.4375rem;
}

@media screen and (max-width: 768px) {
  .p-topics {
    padding: 3.4375rem 0 5rem;
  }
}

.p-topics__title {
  font-size: 2.25rem;
  font-family: "Inter Tight", sans-serif;
  font-weight: 300;
  line-height: 1.1944444444;
  text-align: center;
  color: #baac8a;
}

@media screen and (max-width: 768px) {
  .p-topics__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-mobile {
    display: block;
  }
}

/* TOP Topics Link Buton */
.arrow_top_right {
  width: fit-content;
  margin-top: 25px;
  background-color: #B6B7B7;
  border-radius: 1rem;
  font-size: .75rem !important;
  line-height: 1.5 !important;
}

.arrow_top_right a {
  display: block;
  position: relative;
  padding: .5em 3em .5em 1.5em;
  color: #4D4D4D;
  text-decoration: none;
}

.arrow_top_right:hover {
  /*opacity: .7;*/
  background-color: #fff;
  transition: background-color 0.5s linear;
}

.arrow_top_right a::before {
  content: "";
  position: absolute;
  top: calc(.5em + 4px);
  right: calc(1.5em + 4px);
  width: .5rem;
  height: .5rem;
  border-top: 1px solid #4D4D4D;
  border-right: 1px solid #4D4D4D;
}

.arrow_top_right a::after {
  content: "";
  position: absolute;
  top: calc(1em + 3px);
  right: calc(1.5em + 4px);
  width: .7rem;
  height: 1px;
  background: #4D4D4D;
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .arrow_top_right {
    margin-top: 3.2vw;
    font-size: .5625rem !important;
  }

  .arrow_top_right a::before {
    top: calc(.42em + 4px);
    right: calc(1.5em + 4px);
    width: .42rem;
    height: .42rem;
  }

  .arrow_top_right a::after {
    top: calc(1em + 3px);
    top: calc(1em + 2.2px);
    right: calc(1.5em + 4px);
    width: .59rem;
    width: .467rem;
  }
}

/* Buy Maintenance product button Added at 2026-06-09 */
.p-header__btnWrap.ver-20260609 {
  gap: .6125rem;
  padding-right: 0;
}

.p-header__btnWrap.ver-20260609 .p-header__main {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: .5em .25em;
  justify-content: space-between;
  text-align: center;
}

.p-header__btnWrap.ver-20260609 .p-header__btn {
  width: 50%;
  line-height: 0;
}

.p-header__btnWrap.ver-20260609 .p-header__btn a {
  padding: 0;
  border: 0;
}

.p-header__btnWrap.ver-20260609 .p-header__lang {
  z-index: 50;
  /*position: relative;*/
  right: 0;
  width: 50%;
}

.p-header__btnWrap.ver-20260609 .p-header__lang:not(.open) {
  padding: 0;
  border: 0;
}

.p-header__btnWrap.ver-20260609 .p-header__lower {
  width: 100%;
}

.p-header__btnWrap.ver-20260609 .p-header__lower a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: .5em 1em;
  font-size: .8125rem;
  background: transparent;
  border: 1px solid #000;
  /*border-radius: clamp(0px, 4vw, 45px);*/
  border-radius: 8px;
  color: inherit;
  line-height: 1;
}

.p-header__btnWrap.ver-20260609 .p-header__lower a::after {
  content: "";
  width: 0%;
  height: 100%;
  background: #073b74;
  position: absolute;
  transition: all 0.3s ease-in-out;
  right: 0;
}

.p-header__btnWrap.ver-20260609 .p-header__lower a span {
  font-family: "Inter Tight", sans-serif;
  line-height: 1.2;
  text-align: center;
  z-index: 20;
}

.p-header__btnWrap.ver-20260609 .p-header__lower a:hover {
  opacity: 1;
  border-color: transparent;
  color: #fff;
}

.p-header__btnWrap.ver-20260609 .p-header__lower a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

.p-header__btnWrap.ver-20260609 .p-header__btn a {
  overflow: visible;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  line-height: 1.1538461538;
  height: inherit;
}

.p-header__btnWrap.ver-20260609 .p-header__btn a:after {
  content: none;
}

.p-header__btnWrap.ver-20260609 .p-header__btn a span {
  position: relative;
}

.p-header__btnWrap.ver-20260609 .p-header__btn a span:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #073b74;
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: width 0.3s;
}

.p-header__btnWrap.ver-20260609 .p-header__btn a:hover {
  color: #073b74;
  opacity: 1;
}

.p-header__btnWrap.ver-20260609 .p-header__btn a:hover span:after {
  width: 100%;
}

@media screen and (min-width: 769px) {}

@media screen and (max-width: 428px) {
  .p-header__btnWrap.ver-20260609 .p-header__lower a {
    font-size: clamp(0.563rem, 0.12rem + 1.89vw, 0.625rem);
  }
}

/* endo of Buy Maintenance product button Added at 2026-06-09 */

/* Buy Maintenance product button Added at 2026-06-09 ver.2 */
.p-header__btnWrap.ver-20260609-2 {
  gap: .6125rem;
  padding-right: 0;
}

.p-header__btnWrap.ver-20260609-2 .p-header__main {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-right: 145px;
  text-align: center;
}

.p-header__btnWrap.ver-20260609-2 .p-header__btn {}

.p-header__btnWrap.ver-20260609-2 .p-header__btn a {}

.p-header__btnWrap.ver-20260609-2 .p-header__lang {
  /*position: absolute;
	right: auto;*/
}

.p-header__btnWrap.ver-20260609-2 .p-header-lang__lists {
  /*position: absolute;
	right: 0;
	padding: 0 18px 12px;
	background: #dcdddd;
	border-radius: 0 0 20px 20px;*/
}

.p-header__btnWrap.ver-20260609-2 .p-header__lang:not(.open) {}

.p-header__btnWrap.ver-20260609-2 .p-header__lower {
  width: 100%;
  min-width: 6em;
  margin-right: 1rem;
}

.p-header__btnWrap.ver-20260609-2 .p-header__lower a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: .5em .75em;
  font-size: .8125rem;
  font-size: clamp(0.625rem, 0.599rem + 0.11vw, 0.688rem);
  background: transparent;
  border: 1px solid #000;
  /*border-radius: clamp(0px, 4vw, 45px);*/
  border-radius: 8px;
  color: inherit;
  line-height: 1;
}

.p-header__btnWrap.ver-20260609-2 .p-header__lower a::after {
  content: "";
  width: 0%;
  height: 100%;
  background: #073b74;
  position: absolute;
  transition: all 0.3s ease-in-out;
  right: 0;
}

.p-header__btnWrap.ver-20260609-2 .p-header__lower a span {
  font-family: "Inter Tight", sans-serif;
  line-height: 1.2;
  text-align: center;
  z-index: 20;
}

.p-header__btnWrap.ver-20260609-2 .p-header__lower a:hover {
  opacity: 1;
  border-color: transparent;
  color: #fff;
}

.p-header__btnWrap.ver-20260609-2 .p-header__lower a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

.p-header__btnWrap.ver-20260609-2 .p-header__btn a {}

.p-header__btnWrap.ver-20260609-2 .p-header__btn a:after {}

.p-header__btnWrap.ver-20260609-2 .p-header__btn a span {}

.p-header__btnWrap.ver-20260609-2 .p-header__btn a span:after {}

.p-header__btnWrap.ver-20260609-2 .p-header__btn a:hover {}

.p-header__btnWrap.ver-20260609-2 .p-header__btn a:hover span:after {
  width: 100%;
}

@media screen and (min-width: 1025px) {
  .p-header__btnWrap.ver-20260609-2 .p-header__main {
    margin-right: 170px;
  }
}

@media screen and (max-width: 768px) {
  .p-header__btnWrap.ver-20260609-2 .p-header__main {
    margin-right: 130px;
  }
}

@media screen and (max-width: 548px) {
  .p-header__btnWrap.ver-20260609-2 .p-header__lower {
    /*display: none;*/
  }
}

@media screen and (max-width: 428px) {
  .p-header__btnWrap.ver-20260609-2 .p-header__main {
    margin-right: 0;
  }

  .p-header__btnWrap.ver-20260609-2 .p-header__lower {
    display: block;
    min-width: 5em;
  }

  .p-header__btnWrap.ver-20260609-2 .p-header__lower a {
    /*font-size: clamp(0.563rem, 0.12rem + 1.89vw, 0.625rem);*/
  }
}

/* endo of Buy Maintenance product button Added at 2026-06-09 */

/* Buy Maintenance product button Added at 2026-06-09 ver.3 */
.p-header__btnWrap.ver-20260609-3 {
  gap: .6125rem;
  padding-right: 0;
}

.p-header__btnWrap.ver-20260609-3 .p-header__main {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-right: 145px;
  text-align: center;
}

.p-header__btnWrap.ver-20260609-3 .p-header__lower {
  width: 100%;
  min-width: 25px;
  margin-right: .75rem;
  flex-grow: 0;
}

.p-header__btnWrap.ver-20260609-3 .p-header__lower a {
  position: relative;
  /*overflow: hidden;*/
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  padding: .75em;
  box-sizing: content-box;
  background: transparent;
  /*border: 1px solid #000;*/
  /*border-radius: clamp(0px, 4vw, 45px);*/
  border-radius: 8px;
  color: inherit;
  line-height: 1;
}

.p-header__btnWrap.ver-20260609-3 .p-header__lower a span {
  font-family: "Inter Tight", sans-serif;
  line-height: 1.2;
  text-align: center;
  z-index: 20;
}

.p-header__btnWrap.ver-20260609-3 .p-header__lower a:hover img {
  opacity: .7;
  transition: opacity 0.3s ease;
}

/* ツールチップのトリガーとなる要素 */
.tooltip-trigger {
  position: relative;
  cursor: pointer;
  /*border-bottom: 1px dotted #333;*/
  /* 目印 */
}

/* ツールチップ本体（初期状態は非表示） */
.tooltip-trigger::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 125%;
  /* 要素の上部に配置 */
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  background-color: #000;
  color: #fff;
  font-size: 10px;
  border: 1px solid #000;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  /* ホバー時に邪魔にならないようにする */
}

/* ホバー時にツールチップを表示 */
.tooltip-trigger:hover::after {
  opacity: 1;
  visibility: visible;
}

/* 三角形の吹き出しを作る場合 */
.tooltip-trigger::before {
  content: "";
  position: absolute;
  top: calc(125% - 6px);
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 6px 6px;
  border-style: solid;
  border-color: #000 transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tooltip-trigger:hover::before {
  opacity: 1;
  visibility: visible;
}

.is-p-header__nav-open {
  display: none;
}

.p-header__nav.open .is-p-header__nav-open {
  display: block;
}

@media screen and (min-width: 1025px) {
  .p-header__btnWrap.ver-20260609-3 .p-header__main {
    margin-right: 170px;
  }
}

@media screen and (max-width: 768px) {
  .p-header__btnWrap.ver-20260609-3 .p-header__main {
    margin-right: 125px;
  }

  .p-header__hamburger {
    padding: 13px 8px;
  }

  .p-header-lang {
    right: 50px;
  }
}

@media screen and (max-width: 548px) {
  .p-header__btnWrap.ver-20260609-3 {
    gap: 0;
  }

  .p-header__btnWrap.ver-20260609-3 .p-header__lower {
    /*display: none;*/
    margin-right: 0;
  }

  .p-header__btnWrap.ver-20260609-3 .p-header__lower a {
    width: 22px;
  }

  .p-header-link a {
    margin-left: 0;
  }

  @media screen and (max-width: 428px) {
    .p-header__btnWrap.ver-20260609-3 .p-header__main {
      margin-right: 0;
    }

    .p-header__btnWrap.ver-20260609-3 .p-header__lower {
      display: block;
    }

    .p-header__btnWrap.ver-20260609-3 .p-header__lower a {
      /*font-size: clamp(0.563rem, 0.12rem + 1.89vw, 0.625rem);*/
    }
  }
}

/* endo of Buy Maintenance product button Added at 2026-06-09 */

/*# sourceMappingURL=styles.css.map */