@charset "UTF-8";
/********************************
* フォント情報
********************************/
/********************************
* color
********************************/
/********************************
* カラー変数について
* 
* SCSS変数（$color-*）とCSS変数（:root --color-*）の比較
* 
* 【SCSS変数のメリット】
* - コンパイル時に処理される（パフォーマンス良好）
* - IDE補完が効く
* - ミックスイン・関数内で使用可能
* 
* 【CSS変数のメリット】
* - JavaScriptからアクセス・変更可能（テーマ切り替えなど）
* - ランタイムで変更可能
* - 開発者ツールで確認・デバッグしやすい
* - 将来的な拡張性が高い
* 
* このプロジェクトではCSS変数（:root）を採用

▼使い方
.header {
    background-color: var(--color-blue);
}
********************************/
:root {
  --color-white: #fff;
  --color-black: #231815;
}

/********************************
* color
********************************/
html {
  font-size: calc(16 / 375 * 100vw);
}
@media (min-width: 375px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  html {
    font-size: calc(16 / 1220 * 100vw);
  }
}
@media (min-width: 1220px) {
  html {
    font-size: 16px;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: clip;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #0c0c0c;
}

textarea {
  resize: none;
}

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

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

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

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

input,
textarea,
select {
  font: inherit;
  width: 100%;
}

@media (min-width: px(768)) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/********************************
* parallax
********************************/
.animatede-hero__parallax {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
}

.animated__parallax-container {
  margin-block-start: 100lvh;
}

.animated__parallax-container,
.l-footer {
  background-color: #fff;
}

/********************************
* text　clip-pathでの表示
********************************/
.js-clip-path {
  clip-path: inset(0 0 100% 0);
}

.js-clip-path--ttl {
  clip-path: inset(0 100% 0 0);
}

.js-clip-path,
.js-clip-path--ttl {
  transition: clip-path 0.8s ease;
}
.js-clip-path.js-show,
.js-clip-path--ttl.js-show {
  clip-path: inset(0 0 0 0);
}

/********************************
* flow
********************************/
.p-top-flow__item-line-mask {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
}

/********************************
* faq
********************************/
.js-faq-more-item {
  display: none;
  overflow: hidden;
}

/********************************
* 数値のみを取り出す
* 参照：https://css-tricks.com/snippets/sass/strip-unit-function/
********************************/
/********************************
* pxをremに変換する関数
* ※ リキッドレイアウトでは、remがhtmlのfont-sizeに連動してスケーリングされる
*
* ▼使い方
* .element {
*     font-size: rem(16);  // 16pxをremに変換
*     padding: rem(20);
* }
********************************/
/********************************
* 数値にpxをつける関数
********************************/
/********************************
* 画面幅を基準にしたvwを返す関数
*
* ▼使い方
* .element {
*     width: vw(375, 100);  // 375pxカンプで100pxの場合
* }
********************************/
/********************************
* header
********************************/
.l-header {
  position: fixed;
  z-index: 102;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-inline: 0.6rem;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
@media (min-width: 1000px) {
  .l-header {
    padding-inline: 2.1875rem;
  }
}

.l-header__brand {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  min-width: 0;
  flex: 1 1 0%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .l-header__brand {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
    flex: 1;
    overflow: visible;
  }
}

.l-header__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex: 0 1 auto;
  max-width: 100%;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.l-header__logo-img-wrap {
  flex-shrink: 0;
  width: 2.375rem;
}
@media (min-width: 768px) {
  .l-header__logo-img-wrap {
    width: 4.25rem;
  }
}

.l-header__logo h1 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 150%;
}

.l-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  min-height: 3rem;
}
@media (min-width: 768px) {
  .l-header__inner {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 0;
         column-gap: 0;
    min-height: 4rem;
    padding-block: 1.125rem;
  }
}

.l-header__logo-txt,
.l-header__tel-txt {
  font-weight: 500;
  font-size: 0.625rem;
}
@media (min-width: 768px) {
  .l-header__logo-txt,
  .l-header__tel-txt {
    font-size: 1rem;
  }
}

.l-header__logo-txt {
  white-space: nowrap;
  display: block;
}

.l-header__tel-txt {
  display: inline-flex;
  margin: 0;
  flex: 0 1 auto;
  min-width: 0;
  align-items: center;
  color: #0c0c0c;
  line-height: 1.5;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .l-header__tel-txt {
    flex-shrink: 0;
    overflow: visible;
    text-overflow: clip;
    pointer-events: none;
    cursor: default;
  }
}

.l-header__nav {
  display: none;
}
@media (min-width: 768px) {
  .l-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.l-header__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-header__list .l-header__list-item {
  display: flex;
  align-items: center;
}
.l-header__list .l-header__list-item + .l-header__list-item::before {
  content: "|";
  display: inline-block;
  padding-inline: 0.875rem;
  color: #0c0c0c;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 768px) {
  .l-header__list .l-header__list-item + .l-header__list-item::before {
    padding-inline: 1.125rem;
    font-size: 0.9375rem;
  }
}
.l-header__list .l-header__list-item a {
  display: inline-flex;
  align-items: center;
  color: #0c0c0c;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .l-header__list .l-header__list-item a {
    font-size: 1rem;
    font-weight: 500;
  }
}

/********************************
* SP: 電話 + ハンバーガー（ヘッダー帯の右端・電話がメニューの直左）
********************************/
.l-header__sp-ctrl {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  grid-column: 2;
  justify-self: end;
}
@media (min-width: 768px) {
  .l-header__sp-ctrl {
    display: none;
  }
}

.l-drawer__icon {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0.625rem;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3125rem;
  cursor: pointer;
}

.l-drawer__tel {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  box-sizing: border-box;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: #ffff61;
}
.l-drawer__tel img {
  display: block;
  width: 1.375rem;
  height: auto;
}

.l-drawer__icon--bar {
  width: 100%;
  height: 0.125rem;
  background: #0c0c0c;
  transition: all 0.3s ease;
}

.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 0.21875rem;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(2) {
  rotate: -45deg;
  translate: 0 -0.21875rem;
}
.l-drawer__icon.js-show::before {
  opacity: 1;
}

.l-drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 278px;
  height: 100vh;
  height: 100lvh;
  background: #fff;
  overflow-y: scroll;
  translate: 101%;
  transition: translate 0.5s ease;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.2);
}
.l-drawer.js-show {
  translate: 0;
}

.l-drawer__body {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 88px 40px;
}

.l-drawer__list {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.l-drawer__list li a {
  display: flex;
  flex-direction: column;
  color: #0c0c0c;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
}
.l-drawer__list li a span {
  color: #205295;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 150%;
}

.l-drawer__btn {
  display: inline-block;
  padding: 6px 30px;
  background: #fff;
  border-radius: 100vmax;
  color: #001a75;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

/********************************
* footer
********************************/
.l-footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-block-end: 2.1875rem;
}
@media (min-width: 768px) {
  .l-footer__inner {
    flex-direction: row;
    margin-block-end: 1.875rem;
  }
}

.l-footer__left {
  margin-block-start: 0;
  margin-block-end: 1.5625rem;
}
@media (min-width: 768px) {
  .l-footer__left {
    margin-block-start: -1.5rem;
  }
}

.l-footer__copy {
  text-align: center;
  background: #ffff61;
  padding-block: 1.125rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 375px) {
  .l-footer__copy {
    font-size: max(0.875rem, 11.2px);
  }
}
@media (min-width: 768px) {
  .l-footer__copy {
    padding-block: 1.5625rem;
  }
}

.l-footer__copy-inner {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  row-gap: 0.875rem;
  align-items: center;
  color: #0c0c0c;
}
@media (min-width: 768px) {
  .l-footer__copy-inner {
    flex-direction: row;
  }
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: inherit;
  padding: 0 1.25rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .l-inner {
    max-width: 1220px;
    padding: 0 2.5rem;
  }
}

.l-inner__narrow {
  max-width: 600px;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .l-inner__narrow {
    max-width: 48rem;
  }
}

/********************************
* c-btn
********************************/
.c-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.375rem;
  justify-content: center;
  background-color: #ffff61;
  color: #e5e541;
  width: 12rem;
  box-shadow: 0 4px 4px 0 rgba(11, 41, 76, 0.3);
  position: relative;
  z-index: 1;
  margin-inline: auto;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (min-width: 375px) {
  .c-btn {
    font-size: max(1.125rem, 14.4px);
  }
}
@media (min-width: 768px) {
  .c-btn {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
    width: -moz-fit-content;
    width: fit-content;
    padding-block: 0.1875rem;
    padding-inline: 1.875rem;
    margin-inline: 0;
    margin-inline-end: auto;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .c-btn {
    font-size: max(1.5rem, 19.2px);
  }
}
.c-btn::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: calc(100% - 0.875rem);
  width: 0.75rem;
  height: 0.75rem;
  transform: rotate(-90deg);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  background: #205295;
  z-index: 10;
}

.c-btn__txt {
  margin-block-start: -0.375rem;
}
.c-btn__txt .small {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.0888888889em;
}
@media (min-width: 375px) {
  .c-btn__txt .small {
    font-size: max(1.125rem, 14.4px);
  }
}
@media (min-width: 768px) {
  .c-btn__txt .small {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .c-btn__txt .small {
    font-size: max(1.25rem, 16px);
  }
}

.c-btn a {
  color: #e5e541;
}

.c-btn__span {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (min-width: 375px) {
  .c-btn__span {
    font-size: max(1rem, 12.8px);
  }
}

.c-btn__span--blue {
  color: #2c74b3;
}

.c-btn--blue {
  background: #0b294c;
  color: #fff;
  gap: 0.375rem;
}
.c-btn--blue::after {
  background: #fff;
}

.c-btn__span--white {
  color: #fff;
}

/********************************
* c-modal
********************************/
:where(dialog) {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  outline: none;
  overflow: unset;
}

body:has(dialog[open]) {
  overflow: hidden;
}

.wrapper:has(dialog[open]) {
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.c-modal button {
  background: none;
}

.c-modal__open-btn {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

dialog::backdrop {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
dialog.js-show.c-modal {
  opacity: 1;
}
dialog.js-show::backdrop {
  opacity: 1;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
}

.c-modal {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  width: min(71.25rem, 95%);
  max-height: 37.5rem;
  background: #fff;
}

.c-modal__inner {
  overflow-y: auto;
  height: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .c-modal__inner.--icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.c-modal__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  height: -moz-fit-content;
  height: fit-content;
  padding: 3.125rem 1.25rem 1.25rem;
  max-width: 37.5rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .c-modal__body {
    flex-direction: row;
    padding: 4.375rem 2.375rem 4.875rem;
    max-width: 100%;
  }
}
.c-modal__body h3 {
  margin-block-end: 0.75rem;
}

@media (min-width: 768px) {
  .c-modal__body.--icon {
    max-width: 56.25rem;
    padding: 4.375rem 2.375rem;
  }
}

.c-modal__close-btn {
  position: absolute;
  z-index: 2;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.875rem;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-modal__close-btn-txt {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 375px) {
  .c-modal__close-btn-txt {
    font-size: max(0.875rem, 11.2px);
  }
}

.c-modal__img-wrap {
  width: 100%;
}
@media (min-width: 768px) {
  .c-modal__img-wrap {
    aspect-ratio: 551/452;
    width: 34.4375rem;
  }
}
.c-modal__img-wrap img {
  -o-object-fit: cover;
     object-fit: cover;
}

.c-modal__img-wrap.--icon {
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .c-modal__img-wrap.--icon {
    aspect-ratio: auto;
    width: 30%;
  }
}
.c-modal__img-wrap.--icon img {
  -o-object-fit: contain;
     object-fit: contain;
}

.c-modal__txt-wrap {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  row-gap: 1rem;
}
@media (min-width: 768px) {
  .c-modal__txt-wrap {
    aspect-ratio: 480/443;
    width: 45.4545454545%;
  }
}
.c-modal__txt-wrap h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #0c0c0c;
  text-shadow: 2px 2px 3px rgba(89, 88, 0, 0.2);
}
@media (min-width: 375px) {
  .c-modal__txt-wrap h3 {
    font-size: max(1.25rem, 16px);
  }
}
@media (min-width: 768px) {
  .c-modal__txt-wrap h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4375;
    margin-block-end: 1.625rem;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .c-modal__txt-wrap h3 {
    font-size: max(2rem, 25.6px);
  }
}
.c-modal__txt-wrap .txt {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5625;
  letter-spacing: 0.01875em;
}
@media (min-width: 375px) {
  .c-modal__txt-wrap .txt {
    font-size: max(1rem, 12.8px);
  }
}

.c-modal__txt-wrap.--icon {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 1rem;
}
@media (min-width: 768px) {
  .c-modal__txt-wrap.--icon {
    aspect-ratio: auto;
    width: 70%;
  }
}

.c-modal__txt-content {
  padding-block-end: 1.25rem;
}
@media (min-width: 768px) {
  .c-modal__txt-content {
    padding-block-end: 0;
  }
}

.c-modal__name-wrap {
  color: #0c0c0c;
}
.c-modal__name-wrap .name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6875;
  margin-block-end: 0.1875rem;
}
@media (min-width: 375px) {
  .c-modal__name-wrap .name {
    font-size: max(1rem, 12.8px);
  }
}
.c-modal__name-wrap .cat {
  display: flex;
  gap: 0.625rem;
}

/********************************
* c-sec-ttl
********************************/
.c-sec-ttl-wrap {
  background: #ffff61;
  clip-path: polygon(0 0, 100% 0%, 93% 100%, 0% 100%);
  width: 22.25rem;
  margin-block-end: 1.5rem;
}
@media (min-width: 768px) {
  .c-sec-ttl-wrap {
    width: 50rem;
    margin-block-end: 4rem;
  }
}

.c-sec-ttl {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.5625rem;
       column-gap: 1.5625rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #0c0c0c;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 200%;
  padding-inline-start: 1.25rem;
  padding-block: 0.5rem;
}
@media (min-width: 768px) {
  .c-sec-ttl {
    font-size: 3rem;
    -moz-column-gap: 1.3125rem;
         column-gap: 1.3125rem;
    padding-inline-start: 4.375rem;
    padding-block: 0;
  }
}

.c-sec-ttl-wrap--white {
  background: #fff;
}

.c-sec-ttl--blue {
  color: #144272;
}

.c-sec-ttl__ja {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
}
@media (min-width: 375px) {
  .c-sec-ttl__ja {
    font-size: max(0.875rem, 11.2px);
  }
}
@media (min-width: 768px) {
  .c-sec-ttl__ja {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 2;
    margin-block-start: 0.1875rem;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .c-sec-ttl__ja {
    font-size: max(1.125rem, 14.4px);
  }
}

.c-sec-ttl-wrap--flow {
  width: 20rem;
  padding-block: 0.5rem;
  margin-block-end: 1.875rem;
}
@media (min-width: 768px) {
  .c-sec-ttl-wrap--flow {
    width: 45rem;
    padding-block: 0;
    margin-block-end: 3.375rem;
  }
}

.c-sec-ttl-wrap--faq {
  width: 20.625rem;
}
@media (min-width: 768px) {
  .c-sec-ttl-wrap--faq {
    width: 34.1875rem;
  }
}

.c-sec-ttl--faq {
  padding-inline-start: 1.375rem;
}
@media (min-width: 768px) {
  .c-sec-ttl--faq {
    padding-inline-start: 9.375rem;
    padding-block: 0;
  }
}
.c-sec-ttl--faq .c-sec-ttl__ja {
  letter-spacing: 2px;
}

.sp-br {
  display: block;
}
@media (min-width: 768px) {
  .sp-br {
    display: none;
  }
}

.grecaptcha-badge {
  z-index: 1000;
  height: 54px !important;
}

/********************************
* fv
********************************/
.p-top-hero {
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: left;
  color: #fff;
  overflow: hidden;
  height: 100%;
}
@media (min-width: 768px) {
  .p-top-hero {
    min-height: 50rem;
  }
}

.p-top-hero__video-wrap {
  position: relative;
  height: 50rem;
}
@media (min-width: 768px) {
  .p-top-hero__video-wrap {
    height: 56.25rem;
  }
}

.p-top-hero__video-wrap video {
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-hero__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.p-top-hero__inner {
  width: 100%;
  margin-inline: auto;
  padding-inline: 2.5rem;
  position: relative;
  z-index: 5;
}

.p-top-hero__ttl-container {
  margin-inline: auto;
  margin-block-start: 21rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .p-top-hero__ttl-container {
    padding-top: 15.625rem;
    margin-block-start: 0;
    align-items: flex-start;
  }
}

.p-top-hero__ttl {
  font-family: "Noto Serif JP", serif;
  text-shadow: 2px 2px 4px rgba(10, 38, 71, 0.8);
  white-space: nowrap;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2916666667;
  letter-spacing: 0.1em;
}
@media (min-width: 375px) {
  .p-top-hero__ttl {
    font-size: max(1.5rem, 19.2px);
  }
}
@media (min-width: 768px) {
  .p-top-hero__ttl {
    font-size: 4.5rem;
    font-weight: 700;
  }
}

/********************************
* concept
********************************/
.p-top-concept {
  width: 100%;
  position: relative;
}

.p-top-concept__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  row-gap: 1.5rem;
  padding-block: 5.5rem;
}
@media (min-width: 768px) {
  .p-top-concept__inner {
    flex-direction: row;
    -moz-column-gap: 7.1875rem;
         column-gap: 7.1875rem;
    padding-block: 12.625rem;
  }
}

.p-top-concept__txt-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 1.5rem;
  text-align: left;
  color: #0c0c0c;
  width: 100%;
}
@media (min-width: 768px) {
  .p-top-concept__txt-wrap {
    row-gap: 2rem;
    width: 59.2105263158%;
  }
}

.p-top-concept__ttl {
  font-size: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
}
@media (min-width: 768px) {
  .p-top-concept__ttl {
    font-size: 1.75rem;
  }
}

.p-top-concept__txt-inner-wrap p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 200%;
}

.p-top-concept__img-wrap {
  width: 100%;
}
@media (min-width: 768px) {
  .p-top-concept__img-wrap {
    width: 61.4035087719%;
  }
}

/********************************
* about us
********************************/
.p-top-about-us {
  padding-block: 3.9375rem 4.0625rem;
}
@media (min-width: 768px) {
  .p-top-about-us {
    padding-block: 11rem 12.75rem;
  }
}

.p-top-about-us__detail-wrap {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 1.875rem;
}
@media (min-width: 768px) {
  .p-top-about-us__detail-wrap {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}

.p-top-about-us__detail-ttl {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  color: #0a2647;
}
@media (min-width: 375px) {
  .p-top-about-us__detail-ttl {
    font-size: max(1.25rem, 16px);
  }
}
@media (min-width: 768px) {
  .p-top-about-us__detail-ttl {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.5;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-top-about-us__detail-ttl {
    font-size: max(3rem, 38.4px);
  }
}

.p-top-about-us__detail-item--left {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
@media (min-width: 768px) {
  .p-top-about-us__detail-item--left {
    row-gap: 2.5625rem;
    width: 502px;
  }
}

.p-top-about-us__detail-txt {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}
@media (min-width: 375px) {
  .p-top-about-us__detail-txt {
    font-size: max(1rem, 12.8px);
  }
}
@media (min-width: 768px) {
  .p-top-about-us__detail-txt {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.0166666667em;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-top-about-us__detail-txt {
    font-size: max(1.125rem, 14.4px);
  }
}

.p-top-about-us__detail-item--right {
  width: 100%;
}
@media (min-width: 768px) {
  .p-top-about-us__detail-item--right {
    width: 49.8245614035%;
  }
}

.p-top-about-us__detail-img-wrap {
  aspect-ratio: 335/212;
}
@media (min-width: 768px) {
  .p-top-about-us__detail-img-wrap {
    aspect-ratio: 568/427;
  }
}

/********************************
* about
********************************/
.p-top-about {
  padding-block-end: 4rem;
}
@media (min-width: 768px) {
  .p-top-about {
    padding-block-end: 8.75rem;
  }
}

.p-top-about__list {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-top-about__list {
    row-gap: 0.625rem;
  }
}

.p-top-about__row {
  display: grid;
  grid-template-columns: 1fr;
  -moz-column-gap: 1.125rem;
       column-gap: 1.125rem;
  align-items: start;
}
@media (min-width: 768px) {
  .p-top-about__row {
    grid-template-columns: 10rem 1fr;
    -moz-column-gap: 2.75rem;
         column-gap: 2.75rem;
  }
}

.p-top-about__term,
.p-top-about__desc {
  margin: 0;
  color: #0c0c0c;
}

.p-top-about__term {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5555555556;
  letter-spacing: 0.25em;
  letter-spacing: 0.35em;
  white-space: nowrap;
}
@media (min-width: 375px) {
  .p-top-about__term {
    font-size: max(1.125rem, 14.4px);
  }
}

.p-top-about__desc {
  word-break: break-word;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5555555556;
}
@media (min-width: 375px) {
  .p-top-about__desc {
    font-size: max(1.125rem, 14.4px);
  }
}

/********************************
* pin留め　slide-section
********************************/
.p-top-slide-section {
  position: relative;
  overflow: visible;
  padding-block-end: 6.25rem;
}
@media (min-width: 768px) {
  .p-top-slide-section {
    padding-block-end: 6.25rem;
  }
}

.p-top-slide__container.js-stack-slide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  will-change: transform;
  transform-origin: 50% 50%;
  pointer-events: none;
}
.p-top-slide__container.js-stack-slide * {
  pointer-events: none;
}
@media (min-width: 768px) {
  .p-top-slide__container.js-stack-slide {
    min-height: 56.25rem;
    max-width: 100%;
  }
}
.p-top-slide__container.js-stack-slide:last-child {
  z-index: 10;
}

.p-top-slide-section .p-top-slide__container.js-stack-slide .p-top-slide__item {
  background: linear-gradient(130deg, #ffff80 2.44%, #ffff61 26.03%, #f5f542 52.3%, #eded2e 79.35%, #e8e820 93.67%);
  box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.1);
}

.p-top-slide__container {
  padding-inline: 0.75rem;
}
@media (min-width: 768px) {
  .p-top-slide__container {
    padding-inline: 1.25rem;
    padding-block: 0;
  }
}

.p-top-slide__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: auto;
  padding-block: 2rem;
}
@media (min-width: 768px) {
  .p-top-slide__item {
    height: 50rem;
  }
}

.p-top-slide__svc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: min(73.75rem, 100%);
  padding-inline: 1.5625rem;
  pointer-events: auto !important;
}
@media (min-width: 600px) {
  .p-top-slide__svc-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .p-top-slide__svc-list {
    grid-template-columns: repeat(6, 1fr);
  }
}

.p-top-slide__svc-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0.5rem;
  text-align: center;
  cursor: pointer;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  pointer-events: auto !important;
  box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.1);
  will-change: transform;
}
.p-top-slide__svc-item:hover {
  transform: translateY(-0.25rem);
  box-shadow: 8px 10px 14px rgba(0, 0, 0, 0.14);
}

.p-top-slide__svc-num {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #e5e541;
  line-height: 1;
  margin-block-end: 0.5rem;
}
@media (min-width: 768px) {
  .p-top-slide__svc-num {
    font-size: 1.125rem;
  }
}

.p-top-slide__svc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: min(42.3529411765%, 4.5rem);
  margin-inline: auto;
}
.p-top-slide__svc-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-slide__svc-txt {
  font-size: 0.6875rem;
  line-height: 1.5;
  color: #333;
}

.p-top-slide__item .ttl {
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 375px) {
  .p-top-slide__item .ttl {
    font-size: max(1rem, 12.8px);
  }
}
@media (min-width: 768px) {
  .p-top-slide__item .ttl {
    font-size: 1.875rem;
    font-weight: 700;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-top-slide__item .ttl {
    font-size: max(1.875rem, 24px);
  }
}

.p-top-slide__item-inner {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  padding-inline: 1.5625rem;
  padding-block: 1.5rem 3.0625rem;
  margin-inline: auto;
  gap: 1rem;
  max-width: 37.5rem;
}
@media (min-width: 768px) {
  .p-top-slide__item-inner {
    flex-direction: row;
    width: min(73.75rem, 100%);
    padding-block: 0;
    align-items: center;
    max-width: 100%;
    padding-inline: 1.25rem;
    gap: 0;
  }
}
.p-top-slide__item-inner.--reverse {
  padding-block: 1.5rem 0;
}
@media (min-width: 768px) {
  .p-top-slide__item-inner.--reverse {
    padding-block: 3.75rem;
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .p-top-slide__item-inner.--first {
    padding-block: 3.75rem 1.5rem;
  }
}

.p-top-slide__ttl-en,
.p-top-slide__num {
  font-family: "Noto Serif JP", serif;
  color: rgba(255, 255, 255, 0.3);
}

.p-top-slide__ttl-en {
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 400;
  font-size: 4rem;
  font-weight: 400;
  line-height: 160%;
}
@media (min-width: 375px) {
  .p-top-slide__ttl-en {
    font-size: max(4rem, 51.2px);
  }
}
@media (min-width: 768px) {
  .p-top-slide__ttl-en {
    font-size: 8rem;
  }
}

.p-top-slide__ttl-item {
  margin-block-end: 0.9375rem;
}
@media (min-width: 768px) {
  .p-top-slide__ttl-item {
    margin-block-end: 0;
  }
}

.p-top-slide__txt-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .p-top-slide__txt-wrap {
    width: 56.3157894737%;
    row-gap: 5.5rem;
  }
}

.p-top-slide__txt-item .ttl,
.p-top-slide__txt-item .txt {
  color: #fff;
}

.p-top-slide__txt-wrap {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.2857142857;
  line-height: 160%;
}
@media (min-width: 375px) {
  .p-top-slide__txt-wrap {
    font-size: max(0.875rem, 11.2px);
  }
}
@media (min-width: 768px) {
  .p-top-slide__txt-wrap {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.7777777778;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-top-slide__txt-wrap {
    font-size: max(1.125rem, 14.4px);
  }
}

.p-top-slide__txt-item .ttl {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 375px) {
  .p-top-slide__txt-item .ttl {
    font-size: max(1.25rem, 16px);
  }
}
@media (min-width: 768px) {
  .p-top-slide__txt-item .ttl {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5833333333;
    margin-block-end: 0.3125rem;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-top-slide__txt-item .ttl {
    font-size: max(3rem, 38.4px);
  }
}

.p-top-slide__img-wrap {
  aspect-ratio: 782/522;
  width: 100%;
  min-height: 0;
  align-self: flex-start;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .p-top-slide__img-wrap {
    width: 40%;
    height: auto;
    flex-shrink: 0;
  }
}
.p-top-slide__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/********************************
* work style
********************************/
.p-top-work-style {
  margin-block-start: 4.1875rem;
  margin-block-end: 3rem;
}
@media (min-width: 768px) {
  .p-top-work-style {
    margin-block-start: 9.5625rem;
    margin-block-end: 4.1875rem;
  }
}

.p-top-work-style__ttl-wrap {
  margin-block-end: 4rem;
}
@media (min-width: 768px) {
  .p-top-work-style__ttl-wrap {
    margin-block-end: 0;
  }
}

@media (min-width: 768px) {
  .p-top-work-style__ttl {
    margin-block-end: 4.875rem;
  }
}

.p-top-work-style__card-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 1.5625rem;
}
@media (min-width: 768px) {
  .p-top-work-style__card-wrap {
    flex-direction: row;
    align-items: stretch;
    -moz-column-gap: 1.875rem;
         column-gap: 1.875rem;
  }
}

.p-top-work-style__card-item {
  display: flex;
  flex-direction: column;
  padding-block: 0.8125rem;
  padding-inline: 0.9375rem;
  background: linear-gradient(22deg, #a7c5df -3.84%, #2c74b3 19.37%, #2c74b3 54.1%, #205295 102.9%);
  flex: 1 1 0;
  min-width: 0;
}
.p-top-work-style__card-img-wrap {
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 305/258;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-top-work-style__card-img-wrap {
    aspect-ratio: 330/300;
  }
}

.p-top-work-style__card-img {
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
}
.p-top-work-style__card-img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-work-style__card-ttl {
  color: #0a2647;
  text-align: center;
  margin-block-end: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 375px) {
  .p-top-work-style__card-ttl {
    font-size: max(1.25rem, 16px);
  }
}
@media (min-width: 768px) {
  .p-top-work-style__card-ttl {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.375;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-top-work-style__card-ttl {
    font-size: max(1.5rem, 19.2px);
  }
}

.p-top-work-style__card-txt {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #0c0c0c;
}
@media (min-width: 375px) {
  .p-top-work-style__card-txt {
    font-size: max(1rem, 12.8px);
  }
}
@media (min-width: 768px) {
  .p-top-work-style__card-txt {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-top-work-style__card-txt {
    font-size: max(1.125rem, 14.4px);
  }
}

.p-top-work-style__card-txt-wrap {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding-block: 1.5rem;
  padding-inline: 1.75rem;
  background: #fff;
}
@media (min-width: 768px) {
  .p-top-work-style__card-txt-wrap {
    padding-block: 1.5rem 0.6875rem;
    padding-inline: 1.75rem;
  }
}

/********************************
* interview
********************************/
.p-top-interview {
  padding-block: 0 6.25rem;
  margin-block-end: 0.375rem;
}
@media (min-width: 768px) {
  .p-top-interview {
    padding-block: 0 7.75rem;
    margin-block-end: 3.75rem;
  }
}

.p-top-interview__inner {
  position: relative;
  padding-block-start: 4rem;
}
@media (min-width: 768px) {
  .p-top-interview__inner {
    padding-block-start: 0;
  }
}

.p-top-interview__swiper-slide {
  position: relative;
  width: 16.0625rem;
  margin-inline-end: 1.25rem;
}
@media (min-width: 768px) {
  .p-top-interview__swiper-slide {
    width: 25rem;
    margin-inline-end: 3rem;
  }
}

.p-top-interview__card-item {
  cursor: pointer;
}

.p-top-interview__card-img-wrap {
  margin-block-end: 1.5rem;
}

.p-top-interview__card-img {
  aspect-ratio: 400/395;
  height: auto;
  overflow: hidden;
}

.p-top-interview__card-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-interview__card-name-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  margin-block-end: 0.1rem;
}
.p-top-interview__card-name-wrap .name {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 375px) {
  .p-top-interview__card-name-wrap .name {
    font-size: max(1.125rem, 14.4px);
  }
}
.p-top-interview__card-name-wrap .cat {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #2c74b3;
  background: #fff;
  border-radius: 50px;
  width: 5.625rem;
  padding-block: 0.25em;
}
@media (min-width: 375px) {
  .p-top-interview__card-name-wrap .cat {
    font-size: max(1rem, 12.8px);
  }
}

.p-top-interview__card-txt-wrap {
  color: #0c0c0c;
}

.p-top-interview__card-txt-wrap {
  color: #0c0c0c;
}

.p-top-interview__card-position-wrap .position {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 375px) {
  .p-top-interview__card-position-wrap .position {
    font-size: max(1.125rem, 14.4px);
  }
}

.p-top-interview__card-catch-wrap .txt {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.017em;
}
@media (min-width: 375px) {
  .p-top-interview__card-catch-wrap .txt {
    font-size: max(1.25rem, 16px);
  }
}

.p-top-interview__swiper-container,
.p-top-interview__swiper,
.p-top-interview__swiper-wrapper,
.p-top-interview__swiper-slide {
  position: relative;
}

.p-top-interview__swiper-container {
  padding-block-end: 3.8125rem;
}
@media (min-width: 768px) {
  .p-top-interview__swiper-container {
    padding-block-end: 2rem;
  }
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.p-top-interview__swiper-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media (min-width: 768px) {
  .p-top-interview__swiper-nav-wrap {
    bottom: -50px;
  }
}

.p-top-interview__swiper-nav-wrap .swiper-pagination {
  position: relative;
  width: 50%;
  flex-shrink: 0;
}

.swiper-btn-wrap {
  display: none;
}
@media (min-width: 768px) {
  .swiper-btn-wrap {
    display: flex;
    align-items: center;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    flex-shrink: 0;
  }
}

.p-top-interview__swiper-nav-wrap .swiper-button-prev,
.p-top-interview__swiper-nav-wrap .swiper-button-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  width: 3rem;
  height: 3rem;
  border-radius: 50px;
  border: 1px solid #0c0c0c;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 1.5rem;
  height: 1.5rem;
}
.swiper-button-prev path,
.swiper-button-next path {
  fill: #0c0c0c;
}

.p-top-interview__swiper-nav-wrap .swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}

.swiper-pagination-progressbar.swiper-pagination-horizontal {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}
@media (min-width: 768px) {
  .swiper-pagination-progressbar.swiper-pagination-horizontal {
    width: 67.5%;
  }
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 100%;
  background: #8c8c8c;
  border-radius: 2px;
}

/********************************
* recruitment
********************************/
.p-top-recruitment {
  padding-block-end: 6.25rem;
  position: relative;
  z-index: 80;
}
@media (min-width: 768px) {
  .p-top-recruitment {
    padding-block-end: 6.5625rem;
  }
}

.p-top-recruitment__card-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.625rem;
}
@media (min-width: 768px) {
  .p-top-recruitment__card-wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
  }
}

.p-top-recruitment__card-item {
  position: relative;
  background: #f5f5f5;
  box-shadow: 0 4px 4px 0 rgba(20, 66, 114, 0.2);
  padding-inline: 1.5rem;
  padding-block: 2rem;
}
@media (min-width: 768px) {
  .p-top-recruitment__card-item {
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
  }
}

.p-top-recruitment__card-item-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media (min-width: 768px) {
  .p-top-recruitment__card-item-wrap {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    row-gap: 1rem;
  }
}

.p-top-recruitment__ttl-wrap {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-block-end: 1.5rem;
}
@media (min-width: 768px) {
  .p-top-recruitment__ttl-wrap {
    margin-block-end: 4rem;
  }
}

@media (min-width: 768px) {
  .p-top-recruitment__ttl {
    margin-bottom: 0;
  }
}

.p-top-recruitment__sub-ttl {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.6666666667;
}
@media (min-width: 375px) {
  .p-top-recruitment__sub-ttl {
    font-size: max(1.125rem, 14.4px);
  }
}
@media (min-width: 768px) {
  .p-top-recruitment__sub-ttl {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-top-recruitment__sub-ttl {
    font-size: max(1.5rem, 19.2px);
  }
}
.p-top-recruitment__sub-ttl .sub {
  color: #8c8c8c;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3333333333;
}
@media (min-width: 375px) {
  .p-top-recruitment__sub-ttl .sub {
    font-size: max(1.125rem, 14.4px);
  }
}

.p-top-recruitment__card-link-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 0;
       column-gap: 0;
  margin-inline-end: -0.75rem;
}
@media (min-width: 768px) {
  .p-top-recruitment__card-link-wrap {
    -moz-column-gap: 0.1875rem;
         column-gap: 0.1875rem;
    margin-inline-end: 0;
  }
}
.p-top-recruitment__card-link-wrap .txt {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (min-width: 375px) {
  .p-top-recruitment__card-link-wrap .txt {
    font-size: max(1rem, 12.8px);
  }
}
.p-top-recruitment__card-link-wrap path {
  fill: #0c0c0c;
  stroke: #0c0c0c;
}

.p-top-recruitment__card-ttl,
.p-top-recruitment__modal-ttl {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9375;
}
@media (min-width: 375px) {
  .p-top-recruitment__card-ttl,
  .p-top-recruitment__modal-ttl {
    font-size: max(1rem, 12.8px);
  }
}
@media (min-width: 768px) {
  .p-top-recruitment__card-ttl,
  .p-top-recruitment__modal-ttl {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2916666667;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-top-recruitment__card-ttl,
  .p-top-recruitment__modal-ttl {
    font-size: max(1.5rem, 19.2px);
  }
}
.p-top-recruitment__card-ttl .sub,
.p-top-recruitment__modal-ttl .sub {
  margin-inline-start: -0.375rem;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.4117647059;
}
@media (min-width: 375px) {
  .p-top-recruitment__card-ttl .sub,
  .p-top-recruitment__modal-ttl .sub {
    font-size: max(1.0625rem, 13.6px);
  }
}
@media (min-width: 768px) {
  .p-top-recruitment__card-ttl .sub,
  .p-top-recruitment__modal-ttl .sub {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.3333333333;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-top-recruitment__card-ttl .sub,
  .p-top-recruitment__modal-ttl .sub {
    font-size: max(1.125rem, 14.4px);
  }
}

.p-top-recruitment__card-ttl {
  margin-block-end: 0.25rem;
}
@media (min-width: 768px) {
  .p-top-recruitment__card-ttl {
    margin-block-end: 0;
  }
}

.p-top-recruitment__card-sub-ttl,
.p-top-recruitment__modal-sub-ttl {
  color: #2c74b3;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 375px) {
  .p-top-recruitment__card-sub-ttl,
  .p-top-recruitment__modal-sub-ttl {
    font-size: max(1rem, 12.8px);
  }
}

.p-top-recruitment__card-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .p-top-recruitment__card-list {
    align-self: stretch;
  }
}

@media (min-width: 768px) {
  .p-top-recruitment__card-list-item {
    height: 100%;
  }
}
.p-top-recruitment__card-list-item .txt {
  color: #8c8c8c;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 375px) {
  .p-top-recruitment__card-list-item .txt {
    font-size: max(1rem, 12.8px);
  }
}
@media (min-width: 768px) {
  .p-top-recruitment__card-list-item .txt {
    min-height: 4.5rem;
  }
}

.p-top-recruitment__modal-body {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
@media (min-width: 768px) {
  .p-top-recruitment__modal-body {
    row-gap: 0.9375rem;
  }
}

.p-top-recruitment__modal-detail {
  border-top: 1px solid #666;
}
.p-top-recruitment__modal-detail:last-child {
  padding-block-end: 0.9375rem;
  border-bottom: 1px solid #666;
}

.p-top-recruitment__modal-detail .list {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  margin-block-start: 0.9375rem;
}
@media (min-width: 768px) {
  .p-top-recruitment__modal-detail .list {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .p-top-recruitment__modal-detail .list .term {
    width: 9.125rem;
  }
}

@media (min-width: 768px) {
  .p-top-recruitment__modal-detail .list .desc {
    width: 85%;
  }
}

/********************************
* faq 
********************************/
.p-top-faq {
  margin-block-end: 4.375rem;
}
@media (min-width: 768px) {
  .p-top-faq {
    margin-block-end: 8.75rem;
  }
}

.p-top-faq__dropdown-wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-top-faq__dropdown-wrap {
    flex-direction: row;
    -moz-column-gap: 1.9375rem;
         column-gap: 1.9375rem;
  }
}

.p-top-faq__dropdown-tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  row-gap: 0.75rem;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  margin-block-end: 1.3125rem;
  padding-block-end: 1.3125rem;
  padding-inline: 1rem;
  border-bottom: 1px solid #144272;
}
@media (min-width: 768px) {
  .p-top-faq__dropdown-tab {
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 1.3125rem;
    width: 14.8245614035%;
    margin-block-end: 0;
    padding-block-end: 0;
    padding-inline: 0;
    border-bottom: none;
  }
}

.p-top-faq__line {
  display: none;
}
@media (min-width: 768px) {
  .p-top-faq__line {
    display: block;
    height: 19.3125rem;
    width: 0.0625rem;
    background: #144272;
  }
}

.p-top-faq__tab-btn {
  width: -moz-max-content;
  width: max-content;
  padding-block: 0.53125rem;
  padding-inline: 1.4375rem;
  border: 1px solid #666;
  border-radius: 50px;
  background: #fff;
  text-align: center;
  color: #666;
  min-width: 6.3125rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 130%;
}
@media (min-width: 768px) {
  .p-top-faq__tab-btn {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 130%;
    padding-block: 0.73em;
    width: 100%;
  }
}
.p-top-faq__tab-btn[aria-selected=true] {
  background: #144272;
  border-color: #144272;
  color: #fff;
  pointer-events: none;
}
.p-top-faq__tab-btn[aria-selected=false] {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-top-faq__tab-btn[aria-selected=false]:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.p-top-faq__items[role=tabpanel] {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  height: 0;
  translate: 0 20px;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
.p-top-faq__items[role=tabpanel].js-show {
  opacity: 1;
  visibility: visible;
  height: auto;
  translate: 0;
}

.p-top-faq__items-wrap {
  width: 100%;
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}

.p-top-faq-item-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .p-top-faq-item-list {
    gap: 1.25rem;
  }
}

.p-top-faq__more-trigger-wrap {
  margin-block-start: 3.125rem;
  text-align: center;
}

.p-top-faq__more-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: none;
  border: none;
  color: #144272;
  font-size: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}
@media (any-hover: hover) {
  .p-top-faq__more-btn:hover {
    opacity: 0.8;
  }
}

.p-top-faq__more-btn-txt {
  font-weight: 700;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3333333333;
}
@media (min-width: 375px) {
  .p-top-faq__more-btn-txt {
    font-size: max(1.125rem, 14.4px);
  }
}

.p-top-faq__more-btn-icon {
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}
.p-top-faq__more-btn-icon:first-of-type {
  margin-block-start: 0.2rem;
}
@media (min-width: 768px) {
  .p-top-faq__more-btn-icon:first-of-type {
    margin-block-start: 0.5rem;
  }
}
.p-top-faq__more-btn-icon:nth-of-type(2) {
  margin-block-start: -1rem;
  transition-delay: 0.06s;
}
@media (min-width: 768px) {
  .p-top-faq__more-btn-icon:nth-of-type(2) {
    margin-block-start: -1.25rem;
  }
}

.p-top-faq__more-btn.is-opened .p-top-faq__more-btn-icon {
  transform: rotate(0);
}

.p-top-faq__item {
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  border: 1px solid #0c0c0c;
}
@media (min-width: 768px) {
  .p-top-faq__item {
    padding-block: 0.9rem;
    padding-inline: 1.25rem;
  }
}
.p-top-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
@media (any-hover: hover) {
  .p-top-faq__item:hover {
    cursor: pointer;
  }
}

.p-top-faq__item.js-details svg {
  transition: rotate 0.3s ease;
}
.p-top-faq__item.js-details.is-opened svg {
  rotate: 180deg;
}

.p-top-faq-item__question {
  display: flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  justify-content: space-between;
  padding-block: 32px;
}

.p-top-faq-item__question-text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7142857143;
  line-height: 160%;
}
@media (min-width: 375px) {
  .p-top-faq-item__question-text {
    font-size: max(0.875rem, 11.2px);
  }
}
@media (min-width: 768px) {
  .p-top-faq-item__question-text {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3333333333;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-top-faq-item__question-text {
    font-size: max(1.125rem, 14.4px);
  }
}

.p-top-faq-item__question-icon {
  width: 1.875rem;
  flex-shrink: 0;
}
.p-top-faq-item__question-icon svg {
  transition: rotate 0.3s ease;
  transform-origin: center;
}
.p-top-faq-item__question-icon path {
  fill: #0c0c0c;
  stroke: #0c0c0c;
}

.js-details.is-opened .p-top-faq-item__question-icon line:nth-of-type(2) {
  rotate: 90deg;
}

.js-answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.4s ease, opacity 0.4s ease;
}

.is-opened .js-answer {
  opacity: 1;
}

.p-top-faq-item__answer-text {
  padding-block: 1.1875rem 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.0214285714em;
}
@media (min-width: 375px) {
  .p-top-faq-item__answer-text {
    font-size: max(0.875rem, 11.2px);
  }
}
@media (min-width: 768px) {
  .p-top-faq-item__answer-text {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.3333333333;
    letter-spacing: 0.0166666667em;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-top-faq-item__answer-text {
    font-size: max(1.125rem, 14.4px);
  }
}

/********************************
* img-section
********************************/
.p-top-img-section {
  position: sticky;
  top: 4.5rem;
  z-index: 0;
}

.p-top-img-section__inner {
  aspect-ratio: 375/226;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-top-img-section__inner {
    aspect-ratio: 1440/383;
  }
}
.p-top-img-section__inner img {
  -o-object-fit: cover;
     object-fit: cover;
}

/********************************
* contact
********************************/
.p-top-contact {
  position: relative;
  z-index: 1;
  margin-block-end: 4rem;
}
@media (min-width: 768px) {
  .p-top-contact {
    margin-block-end: 8.75rem;
  }
}

.p-top-contact__container {
  background: #fff;
  margin-inline: auto;
  width: min(600px, 100%);
}
@media (min-width: 768px) {
  .p-top-contact__container {
    width: min(1140px, 100%);
  }
}

.p-top-contact__inner {
  margin-inline: auto;
}

.p-top-contact__ttl-content {
  text-align: center;
  margin-block-end: 0.375rem;
}
@media (min-width: 768px) {
  .p-top-contact__ttl-content {
    margin-block-end: 2.0625rem;
  }
}

.p-top-contact__ttl-wrap {
  color: #144272;
}
@media (min-width: 768px) {
  .p-top-contact__ttl-wrap {
    margin-block-end: 4rem;
  }
}

.p-top-contact__ttl-en {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  text-transform: uppercase;
}
@media (min-width: 375px) {
  .p-top-contact__ttl-en {
    font-size: max(1rem, 12.8px);
  }
}

.p-top-contact__ttl-txt {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 375px) {
  .p-top-contact__ttl-txt {
    font-size: max(1rem, 12.8px);
  }
}
@media (min-width: 768px) {
  .p-top-contact__ttl-txt {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.0166666667em;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-top-contact__ttl-txt {
    font-size: max(1.125rem, 14.4px);
  }
}

.p-top-contact__side-txt {
  font-family: "Noto Serif JP", serif;
  color: rgba(255, 255, 255, 0.3);
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.296875;
}
@media (min-width: 375px) {
  .p-top-contact__side-txt {
    font-size: max(4rem, 51.2px);
  }
}
@media (min-width: 768px) {
  .p-top-contact__side-txt {
    writing-mode: vertical-lr;
  }
}
@media (min-width: 768px) {
  .p-top-contact__side-txt {
    font-size: 9.375rem;
    font-weight: 600;
    line-height: 1.3;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-top-contact__side-txt {
    font-size: max(9.375rem, 120px);
  }
}

.p-top-contact__side-txt--left {
  position: absolute;
  top: 0;
  left: 10px;
}
@media (min-width: 768px) {
  .p-top-contact__side-txt--left {
    top: -10px;
    left: 0;
  }
}

.p-top-contact__side-txt--right {
  position: absolute;
  bottom: -2px;
  right: 10px;
}
@media (min-width: 768px) {
  .p-top-contact__side-txt--right {
    bottom: -10px;
    right: 0;
  }
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-block-end: 1.6875rem;
}
@media (min-width: 768px) {
  .contact__form {
    margin-block-end: 1.5rem;
  }
}

.contact__item-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .contact__item-wrap {
    flex-direction: row;
  }
}
.contact__item-wrap .contact__row {
  width: 100%;
}
@media (min-width: 768px) {
  .contact__item-wrap .contact__row {
    width: 48.4375%;
  }
}

.contact__data {
  border: 1px solid #8c8c8c;
  padding: 0.625rem;
  border-radius: 0.9375rem;
}
.contact__data--radio {
  border: none;
}
@media (min-width: 768px) {
  .contact__data {
    padding: 0.875rem;
  }
}

.contact__data--radio {
  padding: 0.875rem 0;
}

.contact__head {
  font-size: 1rem;
  font-weight: 700;
  color: #0c0c0c;
  padding-block-end: 0.375rem;
  line-height: 150%;
}
@media (min-width: 375px) {
  .contact__head {
    font-size: max(1rem, 12.8px);
  }
}
@media (min-width: 768px) {
  .contact__head {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
    padding-block-end: 0.375rem;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .contact__head {
    font-size: max(1.125rem, 14.4px);
  }
}
.contact__head span {
  color: #c81e07;
}

.contact__row--select {
  margin-block-end: 1rem;
}

input[type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=radio]:checked + span {
  opacity: 1;
}

.contact__data--radio span {
  position: relative;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-inline-start: 1.375rem;
}
@media (min-width: 768px) {
  .contact__data--radio span {
    padding-inline-start: 1.75rem;
  }
}
.contact__data--radio span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid #144272;
  border-radius: 50%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .contact__data--radio span::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.contact__data--radio span::after {
  content: "";
  position: absolute;
  left: 0.3125rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.625rem;
  height: 0.625rem;
  background: #144272;
  border-radius: 50%;
  opacity: 0;
  opacity: 0;
}

.contact__row--radio {
  margin-block-end: 0.25rem;
}
.contact__row--radio .contact__data--radio {
  box-shadow: none;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 1.25rem;
}
@media (min-width: 768px) {
  .contact__row--radio .contact__data--radio {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    row-gap: 1.25rem;
  }
}

.contact__row--textarea textarea {
  resize: none;
  height: 9.6875rem;
}

.contact__data--textarea {
  margin-block-end: 0.375rem;
}

.contact__recaptcha {
  margin-block-end: 2.5rem;
}
@media (min-width: 768px) {
  .contact__recaptcha {
    margin-block-end: 2.75rem;
  }
}

.contact__recaptcha-txt {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  margin-block-end: 0.5rem;
}
@media (min-width: 375px) {
  .contact__recaptcha-txt {
    font-size: max(0.875rem, 11.2px);
  }
}
@media (min-width: 768px) {
  .contact__recaptcha-txt {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .contact__recaptcha-txt {
    font-size: max(0.875rem, 11.2px);
  }
}

input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.contact__data-checkbox span {
  display: inline-block;
  position: relative;
  padding-inline-start: 2em;
}
.contact__data-checkbox span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #8c8c8c;
  box-sizing: border-box;
}
.contact__data-checkbox span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 6px;
  height: 12px;
  rotate: 45deg;
  border-right: 1.5px solid #8c8c8c;
  border-bottom: 1.5px solid #8c8c8c;
  opacity: 0;
}

/* ==============================
  利用規約：スクロールボックス化
============================== */
.contact__terms-scroll {
  /* ① ボックスの高さ（または最大高さ）を決める */
  max-height: 229px;
  /* height: 180px; */
  /* ② はみ出た分を縦スクロールにする */
  overflow-y: auto;
  overflow-x: hidden;
  /* ③ 見た目（任意） */
  padding: 0.75rem 0.875rem;
  border: 1px solid #144272;
  background: #fff;
  /* ④ iOSの慣性スクロール（スマホ対策） */
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .contact__terms-scroll {
    max-height: 128px;
  }
}

/* ボックス内の段落の余白が大きすぎると詰まりが悪いので調整（任意） */
.contact__terms-inner p {
  margin: 0 0 0.6em;
}

.contact__terms-ttl {
  color: #c81e07;
  padding-block-end: 1rem;
}

/* キーボードでフォーカスされた時に分かるように（tabindex="0" が活きる） */
.contact__terms-scroll:focus {
  outline: 2px solid #333;
  outline-offset: 2px;
}

input[type=text],
input[type=email],
select,
textarea {
  border-radius: 0;
  width: 100%;
  line-height: 1.9;
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

.row.jc-center {
  justify-content: center;
}

.contact__submit {
  text-align: center;
}
.contact__submit input[type=submit] {
  display: inline-block;
  background: #646464;
  color: #fff;
  width: 12rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.3s ease;
}
@media (min-width: 375px) {
  .contact__submit input[type=submit] {
    font-size: max(1.25rem, 16px);
  }
}
@media (min-width: 768px) {
  .contact__submit input[type=submit] {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    width: 16rem;
    padding: 0.875rem 1.5rem;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .contact__submit input[type=submit] {
    font-size: max(1.5rem, 19.2px);
  }
}
.contact__submit input[type=submit]:hover {
  background: #888;
  opacity: 0.7;
}

/********************************
* footer CTA
********************************/
.p-footer__cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
  background: rgba(20, 66, 114, 0.3);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .p-footer__cta {
    display: none;
  }
}

/********************************
* about
********************************/
.u-sp {
  display: block !important;
}
@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.u-pc {
  display: none !important;
}
@media (min-width: 768px) {
  .u-pc {
    display: block !important;
  }
}

.u-font {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__jp {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__en {
  font-family: "Noto Serif JP", serif;
}

.u-pointer__none {
  pointer-events: none !important;
}

@media (min-width: 768px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}
.u-text__center {
  text-align: center !important;
}

.u-text__left {
  text-align: left !important;
}

.u-text__right {
  text-align: right !important;
}

.u-text__nowrap {
  white-space: nowrap;
}

@media (min-width: 768px) {
  .u-text__center--pc {
    text-align: center !important;
  }
  .u-text__left--pc {
    text-align: left !important;
  }
  .u-text__right--pc {
    text-align: right !important;
  }
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}