@charset "UTF-8";
/*----------
reset
----------*/
/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, input, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: pointer;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  line-break: after-white-space;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* =========================
  Design width（Figma のアートボード幅）
========================= */
/* =========================
  Breakpoints
========================= */
/* =========================
  Font Family
========================= */
/* =========================
  Color
========================= */
/* =========================
 * rem基準（通常の rem 指定）
 * PC：デザイン幅でスケールし、それ以上は等倍で停止
 * SP：デザイン幅基準でスケール
 * ========================= */
html {
  font-size: min(calc(100vw / 1440 * 10), 10px);
  /* string.unquote は納品 CSS で calc を残すため */
}
@media screen and (max-width: 768px) {
  html {
    font-size: calc(100vw / 390 * 10);
  }
}

/* =========================
 * 全幅デザイン用 --rem
 * variables の $design-width-pc / $design-width-sp が Figma と一致すること
 *
 * 要素に指定する際の例（文字サイズを 16px 相当にしたい場合）:
 * .some-block {
 *   font-size: calc(1.6 * var(--rem));
 * }
 * ========================= */
:root {
  --rem: calc(100vw / 1440 * 10);
}
@media screen and (max-width: 768px) {
  :root {
    --rem: calc(100vw / 390 * 10);
  }
}

/*----------
lang switch (only-ja / only-en)
----------*/
html[lang=ja] .only-en,
html[lang=ja-JP] .only-en,
html[lang^=ja] .only-en {
  display: none !important;
}

html[lang=en] .only-ja,
html[lang^=en] .only-ja {
  display: none !important;
}

/* 英語お問い合わせ固定ページ（GTranslate 状態に依存せず EN 表示） */
body.is-contact-en .only-ja,
body.page-contact-en .only-ja,
body.page-contact-confirm-en .only-ja,
body.page-contact-thanks-en .only-ja {
  display: none !important;
}

body.is-contact-en .only-en {
  display: inline !important;
}

body.is-contact-en div.only-en {
  display: block !important;
}

body.is-contact-en a.only-en.l-header__contact,
body.is-contact-en .l-header__contact.only-en,
body.is-contact-en .only-en.c-btn {
  display: flex !important;
}

/* 日本語お問い合わせ固定ページ（GTranslate 状態に依存せず JA 表示） */
body.is-contact-ja .only-en {
  display: none !important;
}

body.is-contact-ja .only-ja {
  display: inline !important;
}

body.is-contact-ja div.only-ja {
  display: block !important;
}

body.is-contact-ja a.only-ja.l-header__contact,
body.is-contact-ja .l-header__contact.only-ja,
body.is-contact-ja .only-ja.c-btn {
  display: flex !important;
}

* {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  padding-inline-end: 0;
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  background-image: url("../images/common/bg.png");
  background-size: contain;
  color: #333333;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.01em;
  word-break: break-word;
}

@media screen and (max-width: 768px) {
  main {
    overflow: hidden;
  }
}

/* ブラウザ対応 */
a {
  color: inherit;
  text-decoration: none;
}

button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
}

/* リンクスタイル */
a {
  display: block;
  word-break: break-all;
  word-wrap: break-word;
  transition: 0.3s;
}

/* 画像スタイル */
img {
  display: block;
}

/* フォント */
.jp {
  font-family: "Noto Sans JP", sans-serif;
}

/* PC・SP 表示切り替え*/
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

/* h2 */
h2 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 3.2rem;
  }
}

/* h2下リード文 */
.c-section-lead {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 768px) {
  .c-section-lead {
    margin-bottom: 2.4rem;
  }
}

/* ボタン */
.c-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: -moz-fit-content;
  width: fit-content;
  height: 3.6rem;
  background-color: #000000;
  border-radius: 10rem;
  margin: 3.2rem auto 0;
  padding: 0 3.2rem 0 1.6rem;
  position: relative;
  transition: 0.3s;
}
.c-btn span {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
}
.c-btn::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background-image: url(../images/common/c-btn_arrow.svg);
  background-size: contain;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.8rem;
}
.c-btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-btn:hover {
    opacity: 1;
  }
}

/* 下層ページ アンカーリンク */
.c-page-fv-nav {
  margin: calc(-1.8 * var(--rem)) auto 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-page-fv-nav {
    margin: -2.6rem auto 0;
  }
}
.c-page-fv-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 79.2rem;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.1);
  padding: 1.6rem 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-page-fv-nav__list {
    min-width: 36.6rem;
    padding: 0.4rem 0.2rem;
  }
}
.c-page-fv-nav__item {
  width: 100%;
  padding: 0 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-page-fv-nav__item {
    padding: 0 0.6rem;
  }
}
.c-page-fv-nav__item:not(:first-child) {
  border-left: 0.1rem solid #CCCCCC;
}
.c-page-fv-nav__link {
  display: grid;
  place-content: center;
  width: 16.6rem;
  padding-bottom: 2rem;
  margin: 0 auto;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .c-page-fv-nav__link {
    width: 7.8rem;
    padding-bottom: 1.6rem;
  }
}
.c-page-fv-nav__link::after {
  content: "";
  position: absolute;
  bottom: 0.533rem;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 0.1rem solid #333333;
  border-bottom: 0.1rem solid #333333;
  transform: translateX(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .c-page-fv-nav__link::after {
    bottom: 0.4rem;
    width: 0.4rem;
    height: 0.4rem;
  }
}
.c-page-fv-nav__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-page-fv-nav__link:hover {
    opacity: 1;
  }
}
.c-page-fv-nav__text {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-page-fv-nav__text {
    font-size: 1rem;
    line-height: 1.4rem;
  }
}

/* 下層ページ 導入文 */
.c-page-intro {
  margin: 0 auto 3.2rem;
}
@media screen and (max-width: 768px) {
  .c-page-intro {
    margin: 0 auto 2.4rem;
  }
}
.c-page-intro__title {
  font-size: 2.4rem;
}
.c-page-intro__lead {
  margin-top: 1.6rem;
}

/*----------
header
----------*/
.l-header {
  width: 140.8rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-radius: 10rem;
  border: 0.1rem solid #e5e5e5;
  margin: 1.6rem auto 0;
  padding: 1.1rem 2.4rem 1.1rem 1.6rem;
}
@media screen and (max-width: 768px) {
  .l-header {
    width: 100%;
    border-radius: 0;
    margin: 0;
    padding: 0.7rem 1.2rem;
  }
}
.l-header__inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__logo {
  width: 24.9rem;
  height: 4rem;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 19.9rem;
    height: 3.2rem;
  }
}
.l-header__nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.l-header__nav-link {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.l-header__nav-link:hover {
  color: #0F4B99;
}
@media screen and (max-width: 768px) {
  .l-header__nav-link:hover {
    color: inherit;
  }
}
.l-header__nav-icon {
  display: none;
}
.l-header__cta-wrap {
  display: flex;
  align-items: center;
}
.l-header__tel {
  display: flex;
  align-items: end;
  gap: 0.4rem;
  height: 3.5rem;
  white-space: nowrap;
}
.l-header__tel-time {
  width: 3.3rem;
  height: 3.4rem;
  display: grid;
  place-content: center;
  background: linear-gradient(134.7deg, #003E5B 1.85%, #001C29 99.94%);
  border-radius: 0.4rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
}
.l-header__tel-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
.l-header__tel-number span {
  display: inline-block;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.l-header__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 15.2rem;
  height: 3.6rem;
  background: #A1312A;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.04em;
  border-radius: 0.4rem;
  border: 0.1rem solid #A1312A;
  white-space: nowrap;
  margin-left: 0.8rem;
  transition: opacity 0.3s;
}
.l-header__contact-img {
  width: 2.4rem;
  height: 2.4rem;
}
.l-header__contact:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .l-header__contact:hover {
    opacity: 1;
  }
}
.l-header__lang {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  margin-left: 2.4rem;
}
.l-header__lang.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header__lang.pc {
    display: none;
  }
  .l-header__lang.sp {
    display: flex;
    margin-left: auto;
  }
}
.l-header__lang-link {
  position: relative;
  display: inline-block;
  color: #666666;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: opacity 0.3s;
}
.l-header__lang-link:not(:last-child) {
  padding-right: 0.8rem;
}
.l-header__lang-link:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 1.2rem;
  background-color: #666666;
}
.l-header__lang-link.is-current {
  color: #0A3266;
  font-weight: 700;
  text-decoration: underline;
}
.l-header__lang-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .l-header__lang-link:hover {
    opacity: 1;
  }
}
.l-header__hamburger {
  display: none;
  position: relative;
  z-index: 1001;
}
.l-header__nav-close {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header__hamburger {
    width: 3.6rem;
    height: 3.6rem;
    margin-left: 1.2rem;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .l-header__hamburger-line {
    width: 1.68rem;
    height: 0.2rem;
    background: #111111;
    border-radius: 10rem;
    transition: transform 0.3s, opacity 0.3s;
  }
  .l-header__nav {
    position: fixed;
    top: 5.2rem;
    left: 0;
    width: 100%;
    height: calc(100dvh - 5.2rem);
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s;
  }
  .l-header__nav-list {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .l-header__nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.6rem 2rem 1.6rem 2.4rem;
    /*&:first-child {
      justify-content: start;
      gap: 4rem;
      width: fit-content;
    }*/
  }
  .l-header__nav-icon {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
  }
  .l-header__nav-link {
    width: 100%;
    color: #111111;
    letter-spacing: 0;
  }
  .l-header__cta-wrap {
    width: 100%;
    gap: 1.2rem;
    padding: 2.4rem;
  }
  .l-header__nav-close {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding-top: 2rem;
    cursor: pointer;
  }
  .l-header__nav-close-icon {
    position: relative;
    width: 3.6rem;
    height: 3.6rem;
  }
  .l-header__nav-close-icon::before, .l-header__nav-close-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.6rem;
    height: 0.2rem;
    border-radius: 10rem;
    background: #ffffff;
  }
  .l-header__nav-close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .l-header__nav-close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .l-header__nav-close-text {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .l-header__contact {
    height: 4.8rem;
    margin-left: 0;
  }
  .l-header.is-open .l-header__nav {
    transform: translateX(0);
  }
  .l-header.is-open .l-header__hamburger-line:nth-child(1) {
    transform: translateY(0.8rem) rotate(45deg);
  }
  .l-header.is-open .l-header__hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .l-header.is-open .l-header__hamburger-line:nth-child(3) {
    transform: translateY(-0.8rem) rotate(-45deg);
  }
}

/* GTranslate default UI hide (header custom switcherを使うため) */
.gtranslate_wrapper .goog-te-gadget,
#gt_float_wrapper {
  display: none !important;
}

.u-gtranslate-loader {
  display: none !important;
}

/*----------
breadcrumb
----------*/
.p-breadcrumb {
  color: #ffffff;
  background: #292929;
  padding: 1.6rem 0;
}
@media screen and (max-width: 768px) {
  .p-breadcrumb {
    padding: 1.6rem;
  }
}
.p-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 1.6rem;
  max-width: 102.4rem;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .p-breadcrumb__list {
    max-width: 100%;
  }
}
.p-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
}
.p-breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: #ffffff;
  pointer-events: none;
}
.p-breadcrumb__link, .p-breadcrumb__current {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
  text-decoration: none;
}
.p-breadcrumb__link:hover {
  opacity: 0.7;
}
.p-breadcrumb__icon {
  display: block;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}

/*----------
footer
----------*/
.l-footer {
  color: #ffffff;
  background: #292929;
}
.l-footer__main {
  padding: 6.4rem 0 4.8rem;
}
@media screen and (max-width: 768px) {
  .l-footer__main {
    padding: 4.8rem 0 3.2rem;
  }
}
.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-footer__logo {
  width: 28.6rem;
  height: 4.8rem;
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    width: 21.6rem;
    height: 3.6rem;
  }
}
.l-footer__logo-img {
  width: 100%;
  height: auto;
}
.l-footer__nav {
  margin-top: 4.8rem;
}
@media screen and (max-width: 768px) {
  .l-footer__nav {
    margin-top: 3.2rem;
  }
}
.l-footer__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4.8rem;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-list {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.l-footer__subnav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4.8rem;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .l-footer__subnav-list {
    flex-direction: column;
    gap: 2.4rem;
    margin-top: 3.2rem;
  }
}
.l-footer__nav-link {
  line-height: 1.5;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.l-footer__subnav-link {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.l-footer__nav-link:hover, .l-footer__subnav-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-link:hover, .l-footer__subnav-link:hover {
    opacity: 1;
  }
}
.l-footer__copyright-wrap {
  background: #1A1A1A;
  padding: 1.6rem 0;
}
.l-footer__copyright {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .l-footer__copyright {
    font-size: 1rem;
  }
}

/*----------
cta-contact（共通CTA / 他ページでinclude可）
----------*/
.p-cta-contact {
  padding: calc(4 * var(--rem)) 0 calc(4.8 * var(--rem));
  background: #08244D url("../images/common/contact_bg.png") center/cover no-repeat;
}
.p-cta-contact__inner {
  width: 102.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-cta-contact__inner {
    width: 36.6rem;
  }
}
.p-cta-contact__title {
  color: #ffffff;
  font-size: 3.2rem;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-cta-contact__card {
  display: flex;
  align-items: stretch;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  border-radius: 2rem;
  border: 0.1rem solid #CCCCCC;
  padding: 2rem 0;
}
@media screen and (max-width: 768px) {
  .p-cta-contact__card {
    flex-direction: column;
    padding: 2.4rem;
  }
}
.p-cta-contact__col {
  flex: 1;
  margin-top: 0.4rem;
  padding: 0 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-cta-contact__col {
    margin-top: 0;
    padding: 0;
  }
}
.p-cta-contact__col--mail {
  border-right: 1px solid #CCCCCC;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-cta-contact__col--mail {
    border-right: none;
    padding-bottom: 3.2rem;
  }
  .p-cta-contact__col--mail::after {
    content: "";
    width: 15.6rem;
    height: 0.1rem;
    background: #CCCCCC;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.p-cta-contact__col--tel {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-cta-contact__col--tel {
    margin-bottom: 0;
    margin-top: 3.2rem;
  }
}
.p-cta-contact__subttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.p-cta-contact__subttl-lead {
  color: #A1312A;
}
.p-cta-contact__desc {
  margin-top: 0.2rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-cta-contact__desc {
    text-align: start;
  }
}
.p-cta-contact .c-btn {
  height: 4rem;
  background-color: #A1312A;
  margin: 1.9rem auto 0;
}
.p-cta-contact .c-btn span {
  font-size: 1.6rem;
}
.p-cta-contact__telbox {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.p-cta-contact__badge {
  display: grid;
  place-content: center;
  width: 4.5rem;
  height: 4.8rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  border-radius: 0.4rem;
  background: linear-gradient(134.7deg, #003E5B 1.85%, #001C29 99.94%);
  box-sizing: border-box;
}
.p-cta-contact__telbody {
  text-align: left;
}
.p-cta-contact__telsub {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #222222;
}
.p-cta-contact__telno {
  display: block;
  margin-top: 0.1rem;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #222222;
  text-decoration: none;
}

/*----------
page-fv（下層ページ共通）
----------*/
.p-page-fv {
  background: url("../images/common/fv_bg.png") center/cover no-repeat;
  padding: calc(13.2 * var(--rem)) 0 calc(6.4 * var(--rem));
  margin-top: -8rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-page-fv {
    padding: 9.8rem 0 6.6rem;
    margin-top: -5.2rem;
  }
}
.p-page-fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.p-page-fv__title {
  color: #ffffff;
  font-size: 4rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-page-fv__title {
    font-size: 3.2rem;
  }
}

/*----------
top
----------*/
.p-top .p-top-mv {
  /* 寸法は :root の var(--rem)（_mixin.scss）を継承 */
  background: url("../images/top/mv_bg.png") center/cover no-repeat;
  padding: calc(13.6 * var(--rem)) 0 calc(11.2 * var(--rem));
  margin-top: calc(-8 * var(--rem));
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-mv {
    padding: 2.4rem 0 5.6rem;
    margin-top: 0;
  }
}
.p-top .p-top-mv__swiper {
  overflow: visible;
  --swiper-wrapper-transition-timing-function: ease-in-out;
}
.p-top .p-top-mv__slide {
  width: calc(88 * var(--rem));
  height: calc(41.7 * var(--rem));
  position: relative;
  margin: 0;
  border-radius: calc(2 * var(--rem));
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-mv__slide {
    width: 31.8rem;
  }
}
.p-top .p-top-mv__slide-img {
  width: 100%;
  height: calc(41.7 * var(--rem));
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .p-top-mv__content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  padding: calc(2 * var(--rem));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.2));
  opacity: 0;
}
.p-top .p-top-mv__title {
  font-size: calc(3.6 * var(--rem));
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-mv__title {
    font-size: 3.2rem;
  }
}
.p-top .p-top-mv__contact {
  height: calc(3.6 * var(--rem));
  margin: calc(1.6 * var(--rem)) auto 0;
}
.p-top .p-top-mv__slide.is-active .p-top-mv__content {
  animation: fadeIn 2s ease forwards;
}
.p-top .p-top-mv {
  /* フェードインアニメーション */
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-top .p-top-mv__pagination {
  height: calc(0.8 * var(--rem));
  bottom: calc(-3.2 * var(--rem));
}
@media screen and (max-width: 768px) {
  .p-top .p-top-mv__pagination {
    bottom: -1.6rem;
  }
}
.p-top .p-top-mv__pagination .swiper-pagination-bullet {
  background: #d9d9d9;
  opacity: 1;
  transition: background 0.3s ease;
}
.p-top .p-top-mv__pagination .swiper-pagination-bullet-active {
  background: #418eb2;
  opacity: 1;
}
.p-top .p-top-reason {
  padding: calc(13.2 * var(--rem)) 0 calc(21.8 * var(--rem));
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-reason {
    padding: 10.3rem 0 14.4rem;
  }
}
.p-top .p-top-reason::before {
  content: "";
  width: calc(102.75 * var(--rem));
  height: calc(41.1 * var(--rem));
  background: url("../images/top/service_line.png") center/cover no-repeat;
  position: absolute;
  top: calc(15.85 * var(--rem));
  right: calc(-0.3 * var(--rem));
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-reason::before {
    width: 54.07rem;
    height: 21.63rem;
    top: 6.8rem;
    right: -27rem;
  }
}
.p-top .p-top-reason__inner {
  margin: 0 auto;
  text-align: center;
}
.p-top .p-top-reason__title {
  width: calc(64 * var(--rem));
  color: #08254D;
  font-size: 4.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-reason__title {
    width: 36.6rem;
    font-size: 3.2rem;
  }
}
.p-top .p-top-reason__title span {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-reason__title span {
    font-size: 2.8rem;
  }
}
.p-top .p-top-reason__title::before {
  content: "";
  width: calc(35.2 * var(--rem));
  height: calc(11 * var(--rem));
  background: url("../images/top/service_plane.png") center/cover no-repeat;
  position: absolute;
  top: calc(-4.6 * var(--rem));
  left: calc(-19.9 * var(--rem));
}
@media screen and (max-width: 768px) {
  .p-top .p-top-reason__title::before {
    width: 20rem;
    height: 6rem;
    top: -6.9rem;
    left: 0.5rem;
  }
}
.p-top .p-top-reason__text {
  width: 64rem;
  color: #000000;
  margin: 2.4rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-reason__text {
    width: 36.6rem;
    margin: 1.6rem auto 0;
  }
}
.p-top .p-top-reason__swiper {
  margin-top: 5.6rem;
  overflow: hidden;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-reason__swiper {
    margin-top: 4.8rem;
  }
}
.p-top .p-top-reason__gallery {
  display: flex;
  transition-timing-function: linear;
}
.p-top .p-top-reason__item {
  width: 28rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-reason__item {
    width: 20rem;
  }
}
.p-top .p-top-reason__item.is-even {
  margin-top: 4rem;
}
.p-top .p-top-reason__item img {
  width: 28rem;
  height: 28rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.8rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-reason__item img {
    width: 20rem;
    height: 20rem;
  }
}
.p-top .p-top-service {
  padding: 6.2rem 0 12rem;
  background: linear-gradient(180deg, #0A3266 0%, #7E92AD 49.04%, rgba(246, 246, 246, 0) 100%);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-service {
    padding: 0 0 6.4rem;
  }
}
.p-top .p-top-service::before {
  content: "";
  width: calc(188.6 * var(--rem));
  height: calc(46.4 * var(--rem));
  position: absolute;
  background: #0A3266;
  border-radius: 50%;
  margin: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(-9.8 * var(--rem));
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-service::before {
    width: 56.27rem;
    height: 13.84rem;
    top: -8rem;
  }
}
.p-top .p-top-service__inner {
  width: 102.4rem;
  border-radius: 2rem;
  background-color: #ffffff;
  margin: 0 auto;
  padding: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-service__inner {
    width: 36.6rem;
    padding: 2.4rem;
  }
}
.p-top .p-top-service__text {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-service__text {
    text-align: start;
  }
}
.p-top .p-top-service__cards {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-service__cards {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
.p-top .p-top-service__card {
  position: relative;
}
.p-top .p-top-service__card img {
  width: 100%;
  border-radius: 1.2rem;
}
.p-top .p-top-service__card-number {
  color: rgba(255, 255, 255, 0.4);
  font-family: "Oswald", sans-serif;
  font-size: 12rem;
  line-height: 1;
  font-weight: 700;
  position: absolute;
  bottom: -0.6rem;
  right: 1.1rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-service__card-number {
    font-size: 8rem;
    bottom: -0.4rem;
    right: 1rem;
  }
}
.p-top .p-top-service__card-title {
  display: flex;
  align-items: center;
  color: #333333;
  font-size: 2.4rem;
  line-height: 3.4rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  background-color: #ffffff;
  padding: 0.2rem 0.8rem;
  position: absolute;
  bottom: 3.1rem;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-service__card-title {
    font-size: 2rem;
    line-height: 2.8rem;
    bottom: 1.6rem;
  }
}
.p-top .p-top-service__card a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
}
.p-top .p-top-service__card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(8, 37, 77, 0.6980392157);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-service__card a::after {
    content: none;
  }
}
.p-top .p-top-service__card a:hover::after {
  opacity: 1;
}
.p-top .p-top-plan {
  padding: 0 0 12rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-plan {
    padding: 0 0 10.2rem;
  }
}
.p-top .p-top-plan__inner {
  width: 102.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-plan__inner {
    width: 36.6rem;
  }
}
.p-top .p-top-plan__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-plan__cards {
    grid-template-columns: 1fr;
    margin-top: 3.2rem;
  }
}
.p-top .p-top-plan__card {
  border-radius: 0.8rem;
  background-color: #ffffff;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.12);
}
.p-top .p-top-plan__card-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  background-color: #0A3266;
  border-radius: 0.8rem 0.8rem 0 0;
  padding: 0.95rem 0;
}
.p-top .p-top-plan__tag {
  color: #0A3266;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  background-color: #ffffff;
  border-radius: 10rem;
  padding: 0 0.8rem;
}
.p-top .p-top-plan__heading {
  color: #ffffff;
  line-height: 1;
  font-weight: 700;
}
.p-top .p-top-plan__card-body {
  padding: 1.6rem;
}
.p-top .p-top-plan__price-block {
  margin: 0 auto 0.5rem;
}
.p-top .p-top-plan__amount {
  color: #666666;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}
.p-top .p-top-plan__amount-value {
  color: #CC3737;
  font-size: 3.2rem;
}
.p-top .p-top-plan__features {
  background-color: #F0F7FA;
  border: 0.1rem solid #CFDFE5;
  border-radius: 0.4rem;
  padding: 0.8rem;
}
.p-top .p-top-plan__feature {
  display: flex;
  align-items: center;
  height: 3.6rem;
  font-size: 1.4rem;
  padding-left: 2.4rem;
  position: relative;
}
.p-top .p-top-plan__feature::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url("../images/top/plan_check.svg") center/cover no-repeat;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.p-top .p-top-plan__card-body--airfare .p-top-plan-airfare-flags__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0.8rem 1.2rem;
}
.p-top .p-top-plan__card-body--airfare .p-top-plan-airfare-flags__cell {
  display: grid;
  place-content: center;
  gap: 0.2rem;
  overflow: visible;
  position: relative;
  padding-bottom: 2.4rem;
}
.p-top .p-top-plan__card-body--airfare .p-top-plan-airfare-flags__cell--europe {
  display: flex;
  grid-column: span 2;
  align-items: center;
  gap: 0.4rem;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.2rem 0.8rem;
  background-color: #F0F7FA;
}
.p-top .p-top-plan__card-body--airfare .p-top-plan-airfare-flags__flag-wrap {
  width: 3.6rem;
  height: 2.4rem;
  overflow: hidden;
}
.p-top .p-top-plan__card-body--airfare .p-top-plan-airfare-flags__flag {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .p-top-plan__card-body--airfare .p-top-plan-airfare-flags__label {
  width: -moz-max-content;
  width: max-content;
  color: #000000;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.2rem;
}
.p-top .p-top-plan__card-body--airfare .p-top-plan-airfare-flags__label--europe {
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  width: auto;
  flex: 1;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: normal;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-plan__card-body--airfare .p-top-plan-airfare-flags__label--europe {
    font-size: 1.1rem;
  }
}
.p-top .p-top-plan__card-body--airfare .p-top-plan-airfare-flags__europe-icon {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  background: url("../images/top/flag-europe.svg") center/cover no-repeat;
}
.p-top .p-top-plan__note {
  color: #333333;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 1.6rem;
}
.p-top .p-top-flow {
  padding: 0 0 12rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-flow {
    padding: 0 0 6.5rem;
  }
}
.p-top .p-top-flow__inner {
  width: 102.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-flow__inner {
    width: 36.6rem;
  }
}
.p-top .p-top-flow__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-flow__list {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-top: 3.2rem;
  }
}
.p-top .p-top-flow__item {
  overflow: hidden;
}
.p-top .p-top-flow__item:first-of-type .p-top-flow__step:nth-child(2) .dot--small {
  background: #568CD5;
}
.p-top .p-top-flow__item:first-of-type .p-top-flow__step:nth-child(3) .dot--small {
  background: #4B7BB9;
}
.p-top .p-top-flow__item:first-of-type .p-top-flow__step:nth-child(4) .dot--small {
  background: #4571AA;
}
.p-top .p-top-flow__item:first-of-type .p-top-flow__step:nth-child(5) .dot--small {
  background: #375B89;
}
.p-top .p-top-flow__item:first-of-type .p-top-flow__step:nth-child(6) .dot--small {
  background: #375B89;
}
.p-top .p-top-flow__item:first-of-type .p-top-flow__step:nth-child(7) .dot--small {
  background: #2B476C;
}
.p-top .p-top-flow__item:first-of-type .p-top-flow__step:nth-child(8) .dot--small {
  background: #253D5D;
}
.p-top .p-top-flow__item:nth-of-type(2) .p-top-flow__step:nth-child(2) .dot--small {
  background: #4B7BB9;
}
.p-top .p-top-flow__item:nth-of-type(2) .p-top-flow__step:nth-child(3) .dot--small {
  background: #4571AA;
}
.p-top .p-top-flow__item:nth-of-type(2) .p-top-flow__step:nth-child(4) .dot--small {
  background: #375B89;
}
.p-top .p-top-flow__item:nth-of-type(2) .p-top-flow__step:nth-child(5) .dot--small {
  background: #2B476C;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-flow__item:nth-of-type(2) .p-top-flow__steps::before {
    bottom: 4.6rem;
  }
}
.p-top .p-top-flow__item:nth-of-type(3) .p-top-flow__step:nth-child(2) .dot--small, .p-top .p-top-flow__item:last-of-type .p-top-flow__step:nth-child(2) .dot--small {
  background: #4B7BB9;
}
.p-top .p-top-flow__item:nth-of-type(3) .p-top-flow__step:nth-child(3) .dot--small, .p-top .p-top-flow__item:last-of-type .p-top-flow__step:nth-child(3) .dot--small {
  background: #375B89;
}
.p-top .p-top-flow__item:nth-of-type(3) .p-top-flow__step:nth-child(4) .dot--small, .p-top .p-top-flow__item:last-of-type .p-top-flow__step:nth-child(4) .dot--small {
  background: #2B476C;
}
.p-top .p-top-flow__item:nth-of-type(3) .p-top-flow__steps::before, .p-top .p-top-flow__item:last-of-type .p-top-flow__steps::before {
  bottom: 4.6rem;
}
.p-top .p-top-flow__trigger {
  width: 100%;
  color: #000000;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  border: 0.1rem solid #999999;
  border-radius: 1.6rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #F6F6F6 100%);
  padding: 1.5rem 6rem 1.5rem 1.5rem;
  position: relative;
  cursor: pointer;
}
.p-top .p-top-flow__item-arrow {
  display: block;
  width: 2rem;
  height: 2rem;
  background: url("../images/top/flow_arrow_bottom.svg") center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 2.6rem;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}
.p-top .p-top-flow__item.is-open .p-top-flow__item-arrow {
  transform: translateY(-50%) rotate(180deg);
}
.p-top .p-top-flow__panel {
  border: 0.1rem solid #999999;
  border-radius: 1.6rem;
  background: #ffffff;
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-flow__panel {
    margin-top: 0.8rem;
  }
}
.p-top .p-top-flow__steps {
  position: relative;
  display: grid;
  gap: 1.6rem;
  list-style: none;
  margin: 2.1rem 2rem;
  padding: 0;
}
.p-top .p-top-flow__steps::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  bottom: 1.6rem;
  left: 0.6rem;
  width: 0.2rem;
  background: linear-gradient(180deg, #5C97E5 0%, #1F324D 100%);
}
.p-top .p-top-flow__step {
  display: grid;
  grid-template-columns: 1.4375rem 1fr;
  -moz-column-gap: 0.865rem;
       column-gap: 0.865rem;
  position: relative;
}
.p-top .p-top-flow__dot {
  width: 1.4375rem;
  height: 1.4375rem;
  border-radius: 50%;
  background: #5C97E5;
  margin-top: 0.865rem;
  position: relative;
  z-index: 1;
}
.p-top .p-top-flow__dot.dot--small {
  width: 0.8984375rem;
  height: 0.8984375rem;
  margin-top: 1.3rem;
  margin-left: 0.3rem;
}
.p-top .p-top-flow__dot--end {
  background: #1F334D;
}
.p-top .p-top-flow__step-title {
  color: #4571AA;
  font-size: 1.6rem;
  font-weight: 700;
}
.p-top .p-top-flow__step-note {
  height: 2.8rem;
  font-size: 1.4rem;
}
.p-top .p-top-faq {
  padding: 0 0 12rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-faq {
    padding: 0 0 6.4rem;
  }
}
.p-top .p-top-faq__inner {
  width: 88rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-faq__inner {
    width: 36.6rem;
  }
}
.p-top .p-top-faq__title {
  color: #000000;
}
.p-top .p-top-faq__text {
  color: #000000;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-faq__text {
    text-align: start;
  }
}
.p-top .p-top-faq__list {
  display: grid;
  gap: 3.2rem;
  background-color: #ffffff;
  border: 0.1rem solid #999999;
  border-radius: 0.8rem;
  padding: 4.8rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-faq__list {
    gap: 1.6rem;
    margin-top: 3.2rem;
    padding: 1.6rem;
  }
}
.p-top .p-top-faq__item {
  display: grid;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-faq__item {
    gap: 0.8rem;
  }
}
.p-top .p-top-faq__question-inner {
  width: 69.45rem;
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 2.95rem;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-faq__question-inner {
    width: 100%;
    grid-template-columns: 4.8rem 1fr;
  }
}
.p-top .p-top-faq__avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-faq__avatar {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.p-top .p-top-faq__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top .p-top-faq__trigger {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0;
  background: #F1F7FA;
  border-radius: 0.4rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
  padding: 1.6rem 4.6rem 1.6rem 1.6rem;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-faq__trigger {
    padding: 0.8rem 3.8rem 0.8rem 0.8rem;
  }
}
.p-top .p-top-faq__trigger::before {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  background: url("../images/top/faq_arrow_left.svg") center/contain no-repeat;
  position: absolute;
  top: 2rem;
  left: -1.8rem;
  z-index: 1;
}
.p-top .p-top-faq__chev {
  display: block;
  width: 2rem;
  height: 2rem;
  background: url("../images/top/flow_arrow_bottom.svg") center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 2.05rem;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-faq__chev {
    right: 0.8rem;
  }
}
.p-top .p-top-faq__item.is-open .p-top-faq__chev {
  transform: translateY(-50%) rotate(180deg);
}
.p-top .p-top-faq__panel {
  position: relative;
}
.p-top .p-top-faq__panel-inner {
  display: grid;
  grid-template-columns: 1fr 6rem;
  gap: 2.95rem;
  width: 69.45rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-faq__panel-inner {
    grid-template-columns: 1fr 4.8rem;
    width: 100%;
  }
}
.p-top .p-top-faq__avatar-a {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-faq__avatar-a {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.p-top .p-top-faq__avatar-a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top .p-top-faq__a {
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0;
  background-color: #F5F5F5;
  border-radius: 0.4rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
  padding: 1.6rem;
  margin: 0 0.2rem 0.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-faq__a {
    padding: 0.8rem;
  }
}
.p-top .p-top-faq__a::before {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  background: url("../images/top/faq_arrow_right.svg") center/contain no-repeat;
  position: absolute;
  top: 2rem;
  right: -1.8rem;
  z-index: 1;
}
.p-top .p-top-faq__a span {
  font-weight: 700;
}

/*----------
service
----------*/
.p-service .c-page-intro {
  width: 88rem;
}
@media screen and (max-width: 768px) {
  .p-service .c-page-intro {
    width: 36.6rem;
  }
}
.p-service__content {
  padding: calc(6 * var(--rem)) 0 calc(12 * var(--rem));
}
@media screen and (max-width: 768px) {
  .p-service__content {
    padding: 4.8rem 0 6.4rem;
  }
}
.p-service__inner {
  display: grid;
  gap: 8rem;
  width: 88rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-service__inner {
    width: 36.6rem;
    gap: 4.8rem;
  }
}
.p-service {
  /* ページ内でサービスごとに繰り返し使うブロック */
}
.p-service-topic {
  display: grid;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-service-topic {
    gap: 1.6rem;
  }
}
.p-service-topic#international-transport .p-service-cards {
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-service-topic#international-transport .p-service-cards {
    gap: 1.6rem;
  }
}
.p-service {
  /* キービジュアル（画像＋中央の白ボックス見出し） */
}
.p-service-kv {
  position: relative;
  border-radius: 0.4rem;
  overflow: hidden;
}
.p-service-kv__img {
  width: 100%;
  height: auto;
  aspect-ratio: 880/160;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-service-kv__img {
    aspect-ratio: 366/100;
  }
}
.p-service-kv__frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-service-kv__heading {
  background-color: #ffffff;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 4.5rem;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 0;
  padding: 0.2rem 0.8rem;
}
@media screen and (max-width: 768px) {
  .p-service-kv__heading {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
.p-service-lead {
  text-align: center;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .p-service-lead {
    text-align: left;
  }
}
.p-service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .p-service-cards {
    grid-template-columns: 1fr;
  }
}
.p-service-cards .p-service-feature-list {
  grid-template-columns: 1fr;
  flex: 1;
  align-content: start;
}
.p-service-card {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  background-color: #ffffff;
  border: 0.1rem solid #CCCCCC;
  border-radius: 0.8rem;
  padding: 2.4rem;
}
.p-service-card__badge {
  align-self: center;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #0A3266;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  border-radius: 10rem;
  padding: 0.4rem 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-service-card__badge {
    font-size: 1.4rem;
    padding: 0.4rem 1.6rem;
  }
}
.p-service-card__text {
  color: #000000;
}
.p-service-religion-desc {
  display: grid;
  gap: 0.8rem;
}
.p-service-religion-desc__title {
  color: #000000;
  font-weight: 700;
}
.p-service-religion-desc__text {
  color: #000000;
}
.p-service {
  /* サービスページ共通：チェック付き業務一覧（カード内などで再利用） */
}
.p-service-feature-list {
  padding: 1.6rem;
  background-color: #F0F7FA;
  border-radius: 0.4rem;
  border: 0.1rem solid #CFDFE5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .p-service-feature-list {
    grid-template-columns: 1fr;
  }
}
.p-service-feature-list__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
}
.p-service-feature-list__item::before {
  content: "";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: url("../images/service/list_check.svg") center/contain no-repeat;
}
.p-service-feature-list__text {
  flex: 1;
  font-size: 1.4rem;
  color: #333333;
}

/*----------
flow
----------*/
.p-flow .c-page-fv-nav__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 13.5rem;
}
@media screen and (max-width: 768px) {
  .p-flow .c-page-fv-nav__list {
    display: flex;
  }
}
.p-flow .c-page-fv-nav__link {
  width: auto;
}
@media screen and (max-width: 768px) {
  .p-flow .c-page-fv-nav__link {
    width: 7.8rem;
  }
}
.p-flow .c-page-intro {
  width: 102.4rem;
}
@media screen and (max-width: 768px) {
  .p-flow .c-page-intro {
    width: 36.6rem;
  }
}
.p-flow__content {
  padding: calc(6 * var(--rem)) 0 calc(12 * var(--rem));
}
@media screen and (max-width: 768px) {
  .p-flow__content {
    padding: 4.8rem 0 6.4rem;
  }
}
.p-flow__inner {
  width: 102.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-flow__inner {
    width: 36.6rem;
  }
}
.p-flow__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-flow__grid {
    grid-template-columns: 1fr;
    gap: 4.8rem;
  }
}
.p-flow__card-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  min-height: 5rem;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  background: #0A3266;
  border-radius: 0.4rem;
  padding: 0.8rem;
  margin-bottom: 1.9rem;
}
.p-flow__card-title-tag {
  color: #0A3266;
  font-size: 1.6rem;
  background-color: #ffffff;
  border-radius: 10rem;
  padding: 0 0.8rem;
}
.p-flow__steps {
  display: grid;
  gap: 1.6rem;
}
.p-flow__step {
  display: grid;
  grid-template-columns: 12rem 1fr;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
  align-items: center;
  position: relative;
}
.p-flow__step-icon {
  width: 12rem;
  height: 12rem;
  position: relative;
}
.p-flow__step-icon img {
  width: 12rem;
  height: auto;
}
.p-flow__step-num {
  position: absolute;
  top: -0.3rem;
  left: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #1F334D;
  font-family: "Oswald", sans-serif;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.5;
  display: grid;
  place-items: center;
  z-index: 1;
}
.p-flow__step-text {
  color: #000000;
  font-weight: 700;
  line-height: 1.5;
}
.p-flow__step-text-note {
  display: inline-block;
  color: #333333;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 500;
  margin-top: 0.4rem;
}

/*----------
area-content
----------*/
.p-area-content .c-page-intro {
  width: 102.4rem;
}
@media screen and (max-width: 768px) {
  .p-area-content .c-page-intro {
    width: 36.6rem;
    margin: 0 auto 4.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-area-content .c-page-intro__title {
    font-size: 3.2rem;
  }
}
.p-area-content .c-page-fv-nav__list {
  padding: 1.1rem 0.2rem;
}
.p-area-content .c-page-fv-nav__link {
  width: 100%;
}
.p-area-content__content {
  padding: calc(6 * var(--rem)) 0 calc(12 * var(--rem));
}
@media screen and (max-width: 768px) {
  .p-area-content__content {
    padding: 4.8rem 0 6.4rem;
  }
}
.p-area-content__inner {
  width: 102.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-area-content__inner {
    width: 36.6rem;
  }
}
.p-area-content__block + .p-area-content__block {
  margin-top: 4.8rem;
}
.p-area-content__block-heading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 2.4rem;
}
.p-area-content__panel {
  background: #ffffff;
  border-radius: 0.8rem;
  padding-bottom: 1.6rem;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.12);
}
.p-area-content__panel--spaced {
  margin-top: 2.4rem;
}
.p-area-content__pill-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.4rem 0;
  border-radius: 0.8rem 0.8rem 0 0;
  margin-bottom: 1.6rem;
}
.p-area-content__pill-head--on-dark {
  background: #0A3266;
}
.p-area-content__pill-head--on-light {
  width: calc(100% - 3.2rem);
  background: #E6E6E6;
  margin: 0 auto 0.4rem;
}
.p-area-content__pill-tag {
  flex-shrink: 0;
  color: #0A3266;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  background-color: #ffffff;
  border-radius: 10rem;
  padding: 0 0.8rem;
}
.p-area-content__pill-heading {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
.p-area-content__pill-head--on-dark .p-area-content__pill-heading {
  color: #ffffff;
}
.p-area-content__pill-head--on-light .p-area-content__pill-heading {
  color: #0A3266;
}
.p-area-content__icon-row {
  list-style: none;
  padding: 0 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 21.1rem 1fr 1fr;
  gap: 0.4rem;
}
@media screen and (max-width: 768px) {
  .p-area-content__icon-row {
    grid-template-columns: 1fr 1fr;
  }
}
.p-area-content__icon-row--basic .p-area-content__icon-cell {
  background: #F0F7FA;
  border-radius: 0.4rem;
  border: 0.1rem solid #CFDFE5;
  padding: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-area-content__icon-row--basic .p-area-content__icon-cell {
    justify-content: center;
    min-height: 13.2rem;
  }
}
.p-area-content__icon-grid {
  list-style: none;
  padding: 0 1.6rem;
  margin-bottom: 1.6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
@media screen and (max-width: 768px) {
  .p-area-content__icon-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.p-area-content__icon-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-area-content__icon-cell--extra {
  background: #F6F6F6;
  border-radius: 0.4rem;
  padding: 1.6rem;
  min-height: 18.8rem;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-area-content__icon-cell--extra {
    justify-content: center;
    min-height: 18.2rem;
    padding: 1.6rem 1.5rem;
  }
}
.p-area-content__icon-cell--extra .p-area-content__icon-circle {
  margin-bottom: 0.8rem;
}
.p-area-content__icon-cell--extra .p-area-content__icon-label {
  color: #000000;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.p-area-content__icon-circle {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #0A3266;
  margin-bottom: 0.4rem;
  flex-shrink: 0;
}
.p-area-content__icon-circle img {
  width: 4rem;
  height: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-area-content__icon-label {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}
.p-area-content__icon-note {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #000000;
}
.p-area-content__icon-text {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: left;
  margin-top: 0.8rem;
}
@media screen and (max-width: 768px) {
  .p-area-content__icon-text {
    font-size: 1.2rem;
  }
}
.p-area-content__plus {
  display: flex;
  justify-content: center;
  margin: 1.6rem;
}
.p-area-content__plus-inner {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: #0A3266;
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}
.p-area-content__footnotes {
  list-style: none;
  margin: 0 1.6rem;
}
.p-area-content__footnotes li {
  font-size: 1.4rem;
}
.p-area-content__card-row {
  list-style: none;
  padding: 0 1.6rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.4rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-area-content__card-row {
    grid-template-columns: 1fr;
  }
}
.p-area-content__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #F0F7FA;
  border-radius: 0.4rem;
  border: 0.1rem solid #CFDFE5;
  padding: 1.6rem;
  height: 100%;
  box-sizing: border-box;
}
.p-area-content__card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.p-area-content__card-text {
  font-size: 1.4rem;
  text-align: left;
}
.p-area-content__block--countries .p-area-content__block-heading {
  margin-bottom: 1.6rem;
}
.p-area-content__countries-lead {
  text-align: center;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-area-content__countries-lead {
    text-align: left;
  }
}
.p-area-content__regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  background-color: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.12);
  padding: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-area-content__regions {
    gap: 0.8rem;
  }
}
.p-area-content__region {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-area-content__region:nth-of-type(-n + 4) .p-area-content__region-title {
    min-height: 7.4rem;
  }
}
.p-area-content__region:nth-of-type(4) .p-area-content__country-list {
  grid-template-columns: 1fr;
}
.p-area-content__region:nth-of-type(4) .p-area-content__country {
  justify-content: center;
}
.p-area-content__region-title {
  padding: 0.4rem 0;
  font-weight: 700;
  color: #0A3266;
  text-align: center;
  background: #F0F7FA;
  border: 0.1rem solid #CCCCCC;
}
@media screen and (max-width: 768px) {
  .p-area-content__region-title {
    display: grid;
    place-content: center;
  }
}
.p-area-content__country-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .p-area-content__country-list {
    grid-template-columns: 1fr;
  }
}
.p-area-content__country {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #F6F6F6;
  border-left: 0.1rem solid #CCCCCC;
  border-right: 0.1rem solid #CCCCCC;
  border-bottom: 0.1rem solid #CCCCCC;
  padding: 1.6rem 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-area-content__country {
    padding: 1.5rem 0.4rem 1.5rem 1.5rem;
  }
}
.p-area-content__country:nth-child(even) {
  border-left: none;
}
@media screen and (max-width: 768px) {
  .p-area-content__country:nth-child(even) {
    border-left: 0.1rem solid #CCCCCC;
  }
}
@media screen and (max-width: 768px) {
  .p-area-content__country--text-only {
    display: grid;
    place-content: center;
    min-height: 11.238rem;
    padding: 1.6rem;
  }
}
.p-area-content__flag {
  width: 4.8rem;
  height: 3.2rem;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-area-content__flag {
    width: 3.6rem;
    height: 2.4rem;
  }
}
.p-area-content__country-name {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .p-area-content__country-name {
    letter-spacing: 0;
  }
}

/*----------
company
----------*/
.p-company__content {
  padding: calc(6 * var(--rem)) 0 calc(12 * var(--rem));
}
@media screen and (max-width: 768px) {
  .p-company__content {
    padding: 3.2rem 0 6.4rem;
  }
}
.p-company__inner {
  width: 102.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-company__inner {
    width: 36.6rem;
  }
}
.p-company__about {
  background-color: #ffffff;
  border-radius: 0.8rem;
  padding: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-company__about {
    padding: 2.4rem 0;
  }
}
.p-company__about-grid {
  display: grid;
  grid-template-columns: 1fr 47.6rem;
  gap: 2.8rem;
  align-items: center;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 768px) {
  .p-company__about-grid {
    grid-template-columns: 1fr;
  }
}
.p-company__about-text {
  display: grid;
  gap: 3.2rem;
}
.p-company__about-block {
  display: grid;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .p-company__about-block {
    grid-template-columns: 4.8rem 1fr;
    gap: 1.2rem;
  }
}
.p-company__about-heading {
  color: #0A3266;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-company__about-desc {
  color: #000000;
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.p-company__about-diagram {
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1;
}
.p-company__table-wrap {
  overflow: hidden;
  border: 1px solid #cccccc;
}
.p-company__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}
.p-company__table tbody tr:last-child .p-company__table-rowtitle,
.p-company__table tbody tr:last-child .p-company__table-cell--mark {
  border-bottom: none;
}
.p-company__table-th {
  padding: 0.4rem 0;
  color: #0A3266;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  background-color: #F0F7FA;
  border-bottom: 1px solid #cccccc;
}
.p-company__table-th--service {
  width: 48.8rem;
}
@media screen and (max-width: 768px) {
  .p-company__table-th--service {
    width: 20.8rem;
  }
}
.p-company__table-th:not(:last-child) {
  border-right: 1px solid #cccccc;
}
.p-company__table-rowtitle {
  padding: 1.6rem 2.4rem;
  color: #000000;
  font-size: 1.4rem;
  line-height: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: left;
  vertical-align: top;
  background-color: #F6F6F6;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
@media screen and (max-width: 768px) {
  .p-company__table-rowtitle {
    padding: 0.8rem;
  }
}
.p-company__table-lead {
  display: block;
  margin-bottom: 0.4rem;
  line-height: 2.5rem;
  font-weight: 700;
}
.p-company__table-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-company__table-list li {
  position: relative;
  padding-left: 1em;
}
.p-company__table-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.p-company__table-note {
  margin: 0;
}
.p-company__table-cell {
  padding: 1.6rem 2.4rem;
  text-align: center;
  vertical-align: middle;
  background-color: #ffffff;
  border-bottom: 1px solid #cccccc;
}
.p-company__table-cell:not(:last-child) {
  border-right: 1px solid #cccccc;
}
.p-company__table-cell--mark {
  font-size: calc(2.4 * var(--rem));
  line-height: 1;
}
.p-company__table-cell--stack {
  display: table-cell;
  padding: 0;
  vertical-align: top;
  height: 100%;
}
.p-company__table-stack {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
  min-height: 13.6rem;
}
@media screen and (max-width: 768px) {
  .p-company__table-stack {
    min-height: 17rem;
  }
}
.p-company__table-stack-band {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
.p-company__table-stack-band .p-company__table-mark-circle,
.p-company__table-stack-band .p-company__table-mark-cross {
  margin: 0;
}
.p-company__table-mark-circle, .p-company__table-mark-cross {
  vertical-align: middle;
}
.p-company__table-mark-circle {
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
}
.p-company__table-mark-cross {
  width: 1.485rem;
  height: 1.485rem;
}
.p-company__spec {
  margin-top: 3.2rem;
  border-top: 1px solid #cccccc;
}
.p-company__spec-list {
  margin: 0;
}
.p-company__spec-row {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 2.4rem;
  padding: 1.6rem 2.4rem;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 768px) {
  .p-company__spec-row {
    grid-template-columns: 6rem 1fr;
    padding: 1.2rem;
  }
}
.p-company__spec-term {
  margin: 0;
  color: #000000;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.p-company__spec-desc {
  margin: 0;
  color: #000000;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.p-company__spec-desc a {
  display: inline;
  color: #000000;
  transition: 0.3s;
}
.p-company__spec-desc a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-company__spec-desc a:hover {
    opacity: 1;
  }
}
.p-company__spec-desc--business {
  display: grid;
  gap: 1.2rem;
}
.p-company__spec-unit {
  display: grid;
  gap: 0.4rem;
}
.p-company__spec-dept {
  line-height: 2.5rem;
  font-weight: 500;
}
.p-company__spec-unit-body {
  line-height: 2.5rem;
}

/*----------
column
----------*/
@media screen and (max-width: 768px) {
  .p-column--single .p-column__content {
    padding: 0 0 6.4rem;
  }
  .p-column--single .p-column__inner--with-sidebar {
    width: 39rem;
  }
  .p-column--single .p-column__article {
    border-radius: 0;
    padding: 2.4rem 1.2rem 1.6rem;
  }
  .p-column--single .p-column__sidebar {
    width: 36.6rem;
    margin: 0 auto;
  }
}
.p-column__content {
  padding: calc(6 * var(--rem)) 0 calc(12 * var(--rem));
}
@media screen and (max-width: 768px) {
  .p-column__content {
    padding: 3.2rem 0 6.4rem;
  }
}
.p-column__inner {
  width: 102.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-column__inner {
    width: 36.6rem;
  }
}
.p-column__inner--with-sidebar {
  display: grid;
  grid-template-columns: 1fr 24.6rem;
  gap: 4rem;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .p-column__inner--with-sidebar {
    grid-template-columns: 1fr;
    gap: 6.4rem;
  }
}
@media screen and (min-width: 769px) {
  .p-column__sidebar {
    position: sticky;
    top: 10rem;
  }
}
.p-column__category-nav {
  display: grid;
  gap: 2.4rem;
}
.p-column__category-nav-title {
  display: block;
  margin: 0;
  color: #222222;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-column__category-nav-title:not(.is-current):hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-column__category-nav-title:not(.is-current):hover {
    opacity: 1;
  }
}
.p-column__category-nav-list {
  display: grid;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .p-column__category-nav-list {
    display: flex;
    flex-wrap: wrap;
  }
}
.p-column__category-nav-item {
  margin: 0;
}
.p-column__category-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 3.4rem;
  padding: 0.5rem 1.5rem;
  color: #4571AA;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  background-color: transparent;
  border: 0.1rem solid #4571AA;
  border-radius: 10rem;
  transition: opacity 0.3s, color 0.3s, border-color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-column__category-nav-link {
    width: 100%;
  }
}
.p-column__category-nav-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-column__category-nav-link:hover {
    opacity: 1;
  }
}
.p-column__category-nav-link.is-current {
  color: #ffffff;
  background-color: #4571AA;
  border-color: #4571AA;
}
.p-column__category-nav-link.is-current:hover {
  opacity: 1;
}
.p-column__main {
  min-width: 0;
}
.p-column__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .p-column__list {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
.p-column__list--related {
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem 2rem;
}
@media screen and (max-width: 768px) {
  .p-column__list--related {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
.p-column__item {
  margin: 0;
}
.p-column__card {
  height: 100%;
  background-color: #ffffff;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.16);
  padding: 1.6rem;
}
.p-column__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .p-column__card-link {
    display: grid;
    grid-template-columns: 10.8rem 1fr;
    gap: 1.2rem;
  }
}
.p-column__card-thumb {
  aspect-ratio: 327/185;
  overflow: hidden;
  border-radius: 0.4rem;
  margin-bottom: 1.2rem;
}
.p-column__card-thumb picture {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-column__card-thumb {
    aspect-ratio: 1/1;
    margin-bottom: 0;
  }
}
.p-column__card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-column__card-body {
  display: grid;
}
.p-column__card-meta, .p-column__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
}
.p-column__card-meta {
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .p-column__card-meta {
    gap: 0 0.8rem;
    margin-bottom: 0.4rem;
  }
}
.p-column__card-date {
  font-family: "Oswald", sans-serif;
  color: #808080;
  font-size: 1.4rem;
  line-height: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.p-column__card-cat {
  display: inline-flex;
  align-items: center;
  color: #4571AA;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.5rem;
  letter-spacing: 0.04em;
}
.p-column__card-title {
  color: #222222;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: left;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 768px) {
  .p-column__card-title {
    line-height: 1.6;
    margin-bottom: 0;
  }
}
.p-column__card-excerpt {
  margin: 0;
  color: #222222;
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.04em;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  max-height: 5.4em;
}
@media screen and (max-width: 768px) {
  .p-column__card-excerpt {
    display: none;
  }
}
.p-column__empty {
  margin: 0;
  padding: 4.8rem 0;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}
.p-column__pagination {
  margin-top: 4.8rem;
}
@media screen and (max-width: 768px) {
  .p-column__pagination {
    margin-top: 4rem;
  }
}
.p-column__pagination-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-column__pagination-item {
  margin: 0;
}
.p-column__pagination-item:first-child {
  margin-right: 6.4rem;
}
@media screen and (max-width: 768px) {
  .p-column__pagination-item:first-child {
    margin-right: 2.4rem;
  }
}
.p-column__pagination-item:last-child {
  margin-left: 6.4rem;
}
@media screen and (max-width: 768px) {
  .p-column__pagination-item:last-child {
    margin-left: 2.4rem;
  }
}
.p-column__pagination-link, .p-column__pagination-current, .p-column__pagination-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}
.p-column__pagination-link, .p-column__pagination-dots {
  color: #222222;
  background-color: #ffffff;
  text-decoration: none;
}
.p-column__pagination-link {
  transition: opacity 0.3s;
}
.p-column__pagination-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-column__pagination-link:hover {
    opacity: 1;
  }
}
.p-column__pagination-current {
  color: #ffffff;
  background-color: #222222;
}
.p-column__pagination-dots {
  pointer-events: none;
  letter-spacing: 0;
}
.p-column__pagination-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  color: #222222;
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-column__pagination-arrow span {
  display: block;
  width: 1rem;
  height: 1rem;
  border-bottom: 0.2rem solid currentColor;
  border-left: 0.2rem solid currentColor;
}
.p-column__pagination-arrow--prev span {
  transform: translateX(0.2rem) rotate(45deg);
}
.p-column__pagination-arrow--next span {
  transform: translateX(-0.2rem) rotate(-135deg);
}
.p-column__pagination-arrow.is-disabled {
  color: #cccccc;
  pointer-events: none;
}
.p-column__pagination-arrow:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-column__pagination-arrow:hover {
    opacity: 1;
  }
}
.p-column__article {
  background-color: #ffffff;
  border-radius: 0.8rem;
  padding: 1.6rem;
}
.p-column__head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}
.p-column__date {
  font-family: "Oswald", sans-serif;
  color: #808080;
  font-size: 1.4rem;
  line-height: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.p-column__cat {
  display: inline-flex;
  align-items: center;
  color: #4571AA;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.5rem;
  letter-spacing: 0.04em;
}
.p-column__title {
  color: #222222;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-column__title {
    line-height: 1.5;
    letter-spacing: 0;
  }
}
.p-column__thumb {
  margin-bottom: 2.4rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
.p-column__thumb-img {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  vertical-align: top;
}
.p-column__body {
  color: #000000;
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.p-column__body > *:first-child {
  margin-top: 0;
}
.p-column__body > *:last-child {
  margin-bottom: 0;
}
.p-column__body p {
  margin: 0 0 0.8rem;
}
.p-column__body h2 {
  margin: 3.2rem 0 1.6rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}
.p-column__body h3 {
  margin: 2.4rem 0 1.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}
.p-column__body ul,
.p-column__body ol {
  margin: 0 0 1.6rem 1.4em;
}
.p-column__body a {
  color: #333333;
  text-decoration: underline;
}
.p-column__body img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
.p-column__related {
  margin-top: 6.4rem;
}
@media screen and (max-width: 768px) {
  .p-column__related {
    width: 36.6rem;
    margin: 6.4rem auto 0;
  }
}
.p-column__related-title {
  margin-bottom: 3.2rem;
  color: #222222;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-column__related-title {
    margin-bottom: 2.4rem;
  }
}
.p-column .c-btn {
  padding: 0 1.6rem 0 3.2rem;
  margin: 4rem auto 0;
}
.p-column .c-btn::before {
  right: inherit;
  left: 0.8rem;
  transform: rotate(180deg);
}

/*----------
contact
----------*/
.p-contact__content {
  padding: calc(6 * var(--rem)) 0 calc(12 * var(--rem));
}
@media screen and (max-width: 768px) {
  .p-contact__content {
    padding: 4.8rem 0 6.4rem;
  }
}
.p-contact__inner {
  width: 83.6rem;
  background-color: #ffffff;
  border-radius: 0.8rem;
  padding: 3.2rem 2.4rem 6.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-contact__inner {
    width: 36.6rem;
    padding: 2.4rem 1.2rem 6.4rem;
  }
}
.p-contact {
  /* 進捗バー */
}
.p-contact__progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 3.2rem;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-contact__progress {
    margin-bottom: 2.4rem;
  }
}
.p-contact__progress-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  width: calc(100% + 1rem);
  color: #999999;
  line-height: 1.5;
  letter-spacing: 0;
  background-color: #E6E6E6;
  clip-path: polygon(0 0, calc(100% - 1.4rem) 0, 100% 50%, calc(100% - 1.4rem) 100%, 0 100%, 1.4rem 50%);
}
@media screen and (max-width: 768px) {
  .p-contact__progress-item {
    font-size: 1.4rem;
  }
}
.p-contact__progress-item:first-child {
  clip-path: polygon(0 0, calc(100% - 1.4rem) 0, 100% 50%, calc(100% - 1.4rem) 100%, 0 100%);
}
.p-contact__progress-item:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 1.4rem 50%);
}
.p-contact__progress-item.is-current {
  color: #ffffff;
  font-weight: 700;
  background-color: #418EB2;
}
.p-contact__progress-item.is-done {
  color: #ffffff;
  background-color: #418EB2;
}
.p-contact__progress-item.is-done .p-contact__progress-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.p-contact__progress-item.is-done .p-contact__progress-text::before {
  content: "";
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: url("../images/contact/progress_check.svg") center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .p-contact__progress-item.is-done .p-contact__progress-text::before {
    width: 2rem;
    height: 2rem;
  }
}
.p-contact__progress-text {
  position: relative;
  z-index: 1;
}
.p-contact {
  /* フォーム共通 */
}
.p-contact__form-wrap .wpcf7 {
  position: relative;
}
.p-contact__form-wrap .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.p-contact__form-wrap .hidden-fields-container {
  display: none;
}
.p-contact__form-wrap .wpcf7-form {
  margin: 0;
}
.p-contact__form-wrap .wpcf7-response-output {
  margin: 2.4rem 0 0;
}
.p-contact__fields {
  display: grid;
  gap: 0.2rem;
}
.p-contact__row {
  display: grid;
  grid-template-columns: 17.6rem 1fr;
}
@media screen and (max-width: 768px) {
  .p-contact__row {
    grid-template-columns: 1fr;
  }
}
.p-contact__label-cell {
  display: flex;
  align-items: baseline;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 1.6rem 2.3rem 1.6rem 1.6rem;
  background-color: #f6f6f6;
}
.p-contact__label {
  margin: 0;
  color: #000000;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  white-space: nowrap;
}
.p-contact__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.2rem 0.4rem;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.6rem;
  letter-spacing: 0.04em;
  background-color: #C8161D;
  border-radius: 0.4rem;
}
.p-contact__optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: 0.8rem;
  padding: 0.2rem 0.4rem;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6rem;
  letter-spacing: 0;
  vertical-align: middle;
  background-color: #808080;
  border-radius: 0.4rem;
}
.p-contact__field-cell {
  padding: 1.6rem 0 1.6rem 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-contact__field-cell {
    padding: 1.6rem;
    margin-bottom: 1.6rem;
  }
}
.p-contact__field-cell--name {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.p-contact__field-cell--name .p-contact__field {
  margin-bottom: 0;
}
.p-contact__field-cell--radio {
  padding: 1.2rem 0 1.2rem 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-contact__field-cell--radio {
    padding: 1.6rem;
  }
}
.p-contact__field {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.p-contact__field:last-of-type {
  margin-bottom: 0;
}
.p-contact__field--radio {
  gap: 1.2rem;
}
.p-contact__field--your-zip .wpcf7-form-control-wrap {
  max-width: 20rem;
}
.p-contact__field-label {
  margin: 0;
  color: #000000;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
.p-contact {
  /* CF7 コントロール */
}
.p-contact .wpcf7-form-control-wrap {
  display: block;
}
.p-contact input[type=text],
.p-contact input[type=email],
.p-contact input[type=tel],
.p-contact textarea {
  width: 100%;
  padding: 1.1rem 1.5rem;
  color: #000000;
  font-size: 1.4rem;
  line-height: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 0.4rem;
}
.p-contact input[type=text]::-moz-placeholder, .p-contact input[type=email]::-moz-placeholder, .p-contact input[type=tel]::-moz-placeholder, .p-contact textarea::-moz-placeholder {
  color: #808080;
}
.p-contact input[type=text]::placeholder,
.p-contact input[type=email]::placeholder,
.p-contact input[type=tel]::placeholder,
.p-contact textarea::placeholder {
  color: #808080;
}
.p-contact textarea {
  min-height: 20rem;
  resize: vertical;
}
@media screen and (max-width: 768px) {
  .p-contact textarea {
    min-height: 16rem;
  }
}
.p-contact .wpcf7-radio {
  display: grid;
  gap: 1.2rem;
}
.p-contact .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.p-contact .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: #000000;
  line-height: 1.5;
  letter-spacing: 0;
  cursor: pointer;
}
.p-contact .wpcf7-radio .wpcf7-list-item input[type=radio] {
  width: 2rem;
  height: 2rem;
  margin: 0;
  accent-color: #418EB2;
}
.p-contact__accept {
  margin-top: 6.4rem;
}
@media screen and (max-width: 768px) {
  .p-contact__accept {
    margin-top: 0;
  }
}
.p-contact__accept-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.p-contact__accept-inner .wpcf7-list-item {
  margin: 0;
}
.p-contact__accept-inner label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
}
.p-contact__accept-inner input[type=checkbox] {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.2rem;
  border: 0.1rem solid #666666;
  margin: 0;
  accent-color: #0066C0;
}
.p-contact__accept-text {
  color: #000000;
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.p-contact__accept-text a {
  display: inline-block;
  color: #0066C0;
  text-decoration: underline;
}
.p-contact__submit {
  margin-top: 2.4rem;
  text-align: center;
}
.p-contact__submit input[type=submit],
.p-contact__submit .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20rem;
  padding: 0.8rem 5.85rem;
  color: #F2EEEA;
  line-height: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background-color: #222222;
  border: none;
  border-radius: 10rem;
  cursor: pointer;
  transition: opacity 0.3s;
}
.p-contact__submit input[type=submit]:hover,
.p-contact__submit .wpcf7-submit:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .p-contact__submit input[type=submit]:hover,
  .p-contact__submit .wpcf7-submit:hover {
    opacity: 1;
  }
}
.p-contact__submit input[type=submit]:disabled,
.p-contact__submit .wpcf7-submit:disabled {
  background-color: #cccccc;
  pointer-events: none;
}
.p-contact__submit input[type=submit]:disabled:hover,
.p-contact__submit .wpcf7-submit:disabled:hover {
  opacity: 1;
}
.p-contact__submit .wpcf7-spinner {
  display: none;
}
.p-contact__submit--send {
  margin-top: 0;
}
.p-contact {
  /* 確認画面 */
}
.p-contact__confirm-intro {
  color: #1E1E1E;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-contact__confirm-intro {
    margin-bottom: 2.4rem;
  }
}
.p-contact__confirm-list {
  display: grid;
  gap: 0.2rem;
}
.p-contact__confirm-row {
  display: grid;
  grid-template-columns: 17.6rem 1fr;
}
@media screen and (max-width: 768px) {
  .p-contact__confirm-row {
    grid-template-columns: 1fr;
  }
}
.p-contact__confirm-term {
  margin: 0;
  padding: 1.6rem;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  background-color: #f6f6f6;
}
.p-contact__confirm-desc {
  margin: 0;
  padding: 1.6rem;
  background-color: #ffffff;
}
.p-contact__confirm-desc p {
  margin-bottom: 1.2rem;
  color: #000000;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-contact__confirm-desc p:last-child {
  margin-bottom: 0;
}
.p-contact__confirm-desc--name {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.p-contact__confirm-desc--name p {
  margin-bottom: 0;
}
.p-contact__confirm-label {
  display: inline-block;
  min-width: 14rem;
  margin-right: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-contact__confirm-label {
    display: block;
    min-width: 0;
    margin: 0 0 0.4rem;
  }
}
.p-contact__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  margin-top: 6.4rem;
}
@media screen and (max-width: 768px) {
  .p-contact__actions {
    flex-direction: column-reverse;
  }
}
.p-contact__back {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 20rem;
  height: 4rem;
  min-height: 4rem;
  max-height: 4rem;
  padding: 0 1.6rem;
  color: #222222;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #222222;
  border-radius: 10rem;
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.p-contact__back::before {
  content: "";
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/contact/back_arrow.svg) center/contain no-repeat;
}
.p-contact__back:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-contact__back:hover {
    opacity: 1;
  }
}
.p-contact__form-wrap--send {
  box-sizing: border-box;
  width: 20rem;
  height: 4rem;
  min-height: 4rem;
  max-height: 4rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.p-contact__form-wrap--send .wpcf7 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
}
.p-contact__form-wrap--send .wpcf7-form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
}
.p-contact__form-wrap--send .p-contact__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  text-align: unset;
}
.p-contact__form-wrap--send .wpcf7-spinner {
  display: none;
}
.p-contact__form-wrap--send input[type=submit],
.p-contact__form-wrap--send .wpcf7-submit {
  box-sizing: border-box;
  width: 20rem;
  height: 4rem;
  min-width: 0;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-contact {
  /* 完了画面 */
}
@media screen and (max-width: 768px) {
  .p-contact__thanks {
    margin-top: 3.2rem;
  }
}
.p-contact__thanks-lead {
  margin-bottom: 3.2rem;
  color: #0A3266;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact__thanks-lead {
    font-size: 2.4rem;
  }
}
.p-contact__thanks-text {
  margin-bottom: 6.4rem;
  color: #1E1E1E;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
}
.p-contact__thanks-btn {
  height: auto;
  background-color: #222222;
  padding: 0.8rem 5.8rem;
  margin-top: 0;
}
.p-contact__thanks-btn::before {
  content: none;
}
.p-contact__thanks-btn span {
  color: #F2EEEA;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.p-contact {
  /*英語版*/
}
@media screen and (max-width: 768px) {
  .p-contact.p-contact--thanks.p-contact--en .p-contact__progress {
    grid-template-columns: 23% 41% 36%;
  }
}

/*----------
privacy-policy
----------*/
.p-privacy-policy__content {
  padding: calc(6 * var(--rem)) 0 calc(8 * var(--rem));
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__content {
    padding: 3.2rem 0 6.4rem;
  }
}
.p-privacy-policy__content-inner {
  display: grid;
  gap: 4.8rem;
  width: 83.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__content-inner {
    width: 36.6rem;
    gap: 3.2rem;
  }
}
.p-privacy-policy__content-title {
  color: #08254D;
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__content-title {
    font-size: 3.2rem;
    text-align: left;
  }
}
.p-privacy-policy__content-body {
  display: grid;
  gap: 4.8rem;
  color: #000000;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__content-body {
    gap: 3.2rem;
  }
}
.p-privacy-policy__block {
  display: grid;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__block {
    gap: 0.8rem;
  }
}
.p-privacy-policy__block a {
  display: inline-block;
  color: #1A73E8;
  text-decoration: underline;
}
.p-privacy-policy__block-title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.p-privacy-policy__list {
  list-style: auto;
  margin-left: 1.4em;
}
.p-privacy-policy__list-sub {
  list-style: lower-alpha;
  margin-left: 1.4em;
}

/*----------
404
----------*/
.p-404 {
  padding: 6.4rem 0;
}
.p-404__inner {
  width: 83.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-404__inner {
    width: 36.6rem;
  }
}
.p-404__heading {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-404__heading {
    font-size: 3.2rem;
  }
}
.p-404__text {
  text-align: center;
}
.p-404__link {
  width: -moz-fit-content;
  width: fit-content;
  margin: 3.2rem auto 0;
}
.p-404__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-404__link:hover {
    opacity: 1;
  }
}
/*# sourceMappingURL=style.css.map */
