@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-right: auto;
  margin-left: auto;
  max-width: 1050px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding-right: 0.625rem;
    padding-left: 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, .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));
}

.p-detail-mv {
  position: relative;
  width: 100%;
  height: 46.875vw;
}
@media screen and (max-width: 768px) {
  .p-detail-mv {
    height: calc(100vh - 70px);
  }
}
.p-detail-mv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .3);
  z-index: 1;
}

.p-detail-mv__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;
  height: inherit;
}

.p-detail-mv__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-detail-mv__img picture {
  height: 100%;
}
.p-detail-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-detail-mv__wrap {
  height: inherit;
  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: 4.6875rem;
     -moz-column-gap: 4.6875rem;
          column-gap: 4.6875rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-detail-mv__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-detail-mv__logo {
  width: 240px;
}
.p-detail-mv__logo.--pb {
  padding-bottom: 2.0625rem;
}
@media screen and (max-width: 768px) {
  .p-detail-mv__logo {
    width: 142px;
  }
  .p-detail-mv__logo.--pb {
    padding-bottom: 0;
  }
}
.p-detail-mv__logo img {
  width: 100%;
}

.p-detail-mv__logo02 {
  width: 104px;
  margin-top: 0.9375rem;
}
.p-detail-mv__logo02 img {
  width: 100%;
}

.p-detail-mv__text p {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 768px) {
  .p-detail-mv__text {
    margin-top: 1.9375rem;
  }
  .p-detail-mv__text p {
    font-size: 14px;
    line-height: 1.4285714286;
  }
}

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

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

.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;
}
@media screen and (max-width: 768px) {
  .p-detail__list {
    padding-right: 10px;
  }
}
.p-detail__list:not(:first-child) {
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-detail__list:not(:first-child) {
    padding-left: 10px;
    padding-right: 0;
    margin-top: 3.75rem;
  }
}
.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, .48)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgb(28, 42, 83), rgba(28, 42, 83, .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, .48)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgb(55, 190, 240), rgba(55, 190, 240, .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, .48)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgb(3, 89, 160), rgba(3, 89, 160, .48) 45%, rgba(255, 255, 255, 0));
}
.p-detail__num.--yellow .p-detail__path {
  stroke: #D09F2D;
}
.p-detail__num.--yellow .p-detail__number {
  color: #D09F2D;
}
.p-detail__num.--yellow .p-detail__line {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(208, 159, 45)), color-stop(45%, rgba(208, 159, 45, .48)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgb(208, 159, 45), rgba(208, 159, 45, .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, .48)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgb(178, 210, 192), rgba(178, 210, 192, .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, .48)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgb(161, 197, 216), rgba(161, 197, 216, .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, .48)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgb(182, 177, 199), rgba(182, 177, 199, .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, .48)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgb(0, 131, 88), rgba(133, 196, 175, .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 (max-width: 768px) {
  .p-detail__item {
    width: 76.8115942029%;
  }
}

.p-detail__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.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: 13px;
  }
}

.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: 3.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.p-detail__imgWrap02 figure img {
  width: 100%;
}
.p-detail__imgWrap02 figure p {
  margin-top: 1.375rem;
  font-size: 13px;
  font-weight: 700;
  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__movie {
  margin-top: 3.75rem;
  width: 72.5806451613%;
}
@media screen and (max-width: 768px) {
  .p-detail__movie {
    width: 100%;
    margin-top: 1.875rem;
  }
}
.p-detail__movie img,
.p-detail__movie iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 450/255;
}

.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;
}
@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;
  }
}

.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: 0;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.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 {
  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 1.25rem 0 0.625rem;
  }
}
@media screen and (max-width: 428px) {
  .p-header__inner {
    padding: 0 0 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: 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;
  }
}

.p-header__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 75px;
  position: relative;
}
@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;
  }
}
@media screen and (max-width: 768px) and (max-width: 428px) {
  .p-header__hamburger {
    padding: 13px 20px;
  }
}
@media screen and (max-width: 768px) {
  .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;
  }
}

.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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5625rem 0.625rem;
}

.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;
  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;
  }
}

.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 05 Mar. 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, .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;
  }
}

.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: 75px;
  position: relative;
}
@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: 70px;
    top: 13px;
  }
}

.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.5rem;
  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.9375rem;
  }
}
.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, .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;
  }
}
/*# sourceMappingURL=styles.css.map */
