@charset "UTF-8";
.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

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

/* 画像の中央寄せ */
.aligncenter {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像の中央寄せ */
.aligncenter img {
  height: auto;
  max-width: 100%;
}

/* 画像右寄せ */
.alignright {
  height: auto;
  margin-left: auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像右寄せ */
.alignright img {
  height: auto;
  max-width: 100%;
}

/* 位置指定のない画像 */
.alignnone {
  height: auto;
  max-width: 100%;
}

/* figureタグで囲まれた位置指定のない画像 */
.alignnone img {
  height: auto;
  max-width: 100%;
}

/* 自動折り返し有効化 */
pre {
  white-space: pre-wrap;
}

body.is-fixed {
  height: 100%;
  overflow: hidden !important;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /* Safari */
  background-color: #f1f1f1;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
/* 初期状態: 非表示で下に少し移動 */
.fadeup {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

/* 表示状態: フェードアップ完了 */
.fadeup.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 1400px) {
  html {
    font-size: 1.1428571429vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

fieldset,
legend,
button {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
  margin: 0;
  padding: 4px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 16px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=number],
input[type=datetime],
input[type=week],
textarea,
select {
  margin-right: 0;
  margin-left: 0;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 0;
  outline: none;
  background: none;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  width: 100%;
  height: 100px;
  overflow: auto;
}

select {
  padding-right: 30px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: right 8px center;
}

.select {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.select select {
  width: 100%;
  padding-right: 24px;
  border: 1px solid #ccc;
  background: none;
  text-overflow: "";
  cursor: pointer;
}

.select::before {
  position: absolute;
  top: 13px;
  right: 8px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}

/* radio & checkbox */
input[type=radio],
input[type=checkbox] {
  display: none;
}

input[type=radio] + span,
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin-left: 8px;
  padding: 10px 20px;
  color: #555;
  font-size: 22.4px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}

input[type=radio] + span::before,
input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 16px;
  height: 16px;
  content: "";
  margin-top: -8px;
  border: 1px solid #ccc;
  background: #fff;
}

/* fieldset */
fieldset {
  padding: 8px 16px;
  border: 1px solid #ccc;
}

legend {
  padding: 0 8px;
}

/* button */
input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-block;
  margin: 0;
  padding: 10px 30px;
  border: 1px solid #999;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  background: #efefef;
  color: #000;
  font-size: 20px;
  cursor: pointer;
}

/* ブラウザ対策
---------------------------------------------------------------------------- */
/* Firefox */
/* IE */
select::-ms-expand {
  display: none;
}

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

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-decoration {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: textfield;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  outline: none;
  font-size: 16px;
}

/* 挙動
---------------------------------------------------------------------------- */
/* hover */
input:hover,
textarea:hover,
select:hover {
  border-color: #666;
}

input[type=radio] + span:hover,
input[type=checkbox] + span:hover {
  color: #000;
}

input[type=radio] + span:hover::before,
input[type=checkbox] + span:hover::before {
  border-color: #000;
}

input[type=radio] + span:hover::after,
input[type=checkbox] + span:hover::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #ccc;
}

/* checked */
input[type=radio]:checked + span,
input[type=checkbox]:checked + span {
  color: #3498db;
}

input[type=radio]:checked + span::before,
input[type=checkbox]:checked + span::before {
  border-color: #3498db;
}

input[type=radio]:checked + span::after,
input[type=checkbox]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #3498db;
}

/* radio */
input[type=radio] + span::before,
input[type=radio] + span:hover::after,
input[type=radio]:checked + span::after {
  border-radius: 50%;
}

/* button */
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover {
  border-color: #3498db;
  background: #3498db;
  color: #fff;
}

/* focus */
input:focus,
textarea:focus {
  border-color: #3498db;
}

input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus,
input[type=search]:focus {
  outline-offset: -2px;
}

/* disabled */
input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
  border-color: #ccc;
  background: #eee;
  cursor: not-allowed;
}

input[type=radio]:disabled + span,
input[type=checkbox]:disabled + span {
  color: #ccc;
  cursor: not-allowed;
}

input[type=radio]:disabled + span::before,
input[type=checkbox]:disabled + span::before {
  border-color: #ccc;
  cursor: not-allowed;
}

/* バリデーション */
/* placeholder */
/* パンくず
------------------------------------------------ */
.c-breadclumb {
  width: 100%;
  padding: 40px 0;
  padding: 2.5rem 0;
  font-size: 16px;
  font-size: 1rem;
  overflow-x: hidden;
  /* 必要に応じて親要素にも設定 */
}
@media screen and (max-width: 767px) {
  .c-breadclumb {
    padding: 1.25rem 0;
    font-size: 0.875rem;
  }
}

.c-breadclumb__wrap {
  overflow-x: auto;
  /* 横スクロールを有効にする */
  white-space: nowrap;
  /* 子要素を横一列に並べる */
}

.c-breadclumb__wrap a {
  display: inline-block;
  /* 子要素のアンカーをインラインブロックにする */
}

/* -----------------------------------------------------------------
  共通ボタン
----------------------------------------------------------------- */
.c-button a {
  display: inline-block;
  width: 100%;
  max-width: 200px;
  max-width: 12.5rem;
  padding: 12px 5px;
  padding: 0.75rem 0.3125rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  text-align: center;
  border-radius: 1.875rem;
  border: 1px solid #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-button a:hover {
  background-color: #fff;
  color: #3E4F98;
  border: 1px solid #3E4F98;
}

/* ハンバーガーボタン
------------------------------------------------ */
.c-hamburger {
  width: 5px;
  width: 0.3125rem;
  height: 30px;
  height: 1.875rem;
  border-radius: 50%;
  z-index: 10;
  padding: 0 0;
}
.c-hamburger span {
  position: relative;
  display: block;
  height: 3px;
  height: 0.1875rem;
  width: 3px;
  width: 0.1875rem;
  background-color: #676767;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  -webkit-box-shadow: 0.0625rem 0.0625rem 0.0625rem 0.0625rem rgba(0, 0, 0, .2);
          box-shadow: 0.0625rem 0.0625rem 0.0625rem 0.0625rem rgba(0, 0, 0, .2);
  border-radius: 50%;
}
.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  margin: 8px 0;
  margin: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .c-hamburger span:nth-child(2) {
    margin: 0.4375rem 0;
  }
}

.c-hamburger span:nth-child(3) {
  top: 0;
}

.c-hamburger.open span:nth-child(1) {
  width: 15px;
  width: 0.9375rem;
  border-radius: 0%;
}

.c-hamburger.open span:nth-child(2) {
  width: 12px;
  width: 0.75rem;
  border-radius: 0%;
}

.c-hamburger.open span:nth-child(3) {
  width: 8px;
  width: 0.5rem;
  border-radius: 0%;
}

/* トップ セクションタイトル
------------------------------------------------ */
.c-title {
  font-size: 50px;
  font-size: 3.125rem;
  color: #3E4F98;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 2.5rem;
  }
}

.c-title span {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-title span {
    font-size: 0.875rem;
  }
}

.c-title.--wh {
  color: #fff;
}

.c-title.--wh span {
  color: #fff;
}

.c-title.--center {
  text-align: center;
}

.c-title.--faq {
  text-transform: uppercase;
  text-align: center;
}

.c-title.--line span {
  display: inline-block;
}

.l-contents {
  margin-top: 190px;
  margin-top: 11.875rem;
}
@media screen and (max-width: 767px) {
  .l-contents {
    margin-top: 7.5rem;
  }
}

.l-inner {
  width: 100%;
  max-width: 1450px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
    max-width: 640px;
  }
}

/* アーカイブページのページ送り */
.p-pagenavi {
  position: relative;
  min-width: 280px;
  min-width: 17.5rem;
  text-align: center;
  margin-top: 100px;
  margin-top: 6.25rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-pagenavi {
    margin-top: 3.75rem;
    font-size: 0.875rem;
  }
}

.current {
  display: inline-block;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  color: #fff;
  background-color: #111;
  border: 1px solid #111;
}
.p-pagenavi a:not(.previouspostslink):not(.nextpostslink) {
  display: inline-block;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  color: #111;
  border: 1px solid #111;
}
.extend {
  display: inline-block;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  color: #111;
  border: 1px solid #111;
}

.current,
.larger,
.smaller,
.extend {
  margin-right: 5px;
  margin-right: 0.3125rem;
}
.larger:nth(:last-of-type) {
  margin-right: 34px;
  margin-right: 2.125rem;
}
@media screen and (max-width: 767px) {
  .larger:nth(:last-of-type) {
    margin-right: 1.25rem;
  }
}

.previouspostslink {
  margin-right: 34px;
  margin-right: 2.125rem;
  font-size: 22px;
  font-size: 1.375rem;
  padding: 10px 17px;
  padding: 0.625rem 1.0625rem;
  border: 1px solid #EAEAEA;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .previouspostslink {
    margin-right: 1.25rem;
    padding: 0.25rem 0.625rem;
  }
}

.nextpostslink {
  font-size: 22px;
  font-size: 1.375rem;
  padding: 10px 17px;
  padding: 0.625rem 1.0625rem;
  border: 1px solid #EAEAEA;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .nextpostslink {
    padding: 0.25rem 0.625rem;
  }
}

/* -----------------------------------------------------------------
  swiper カスタマイズ
----------------------------------------------------------------- */
/* スライドの動き等速 */
/* 前ページ、次ページボタン共通のスタイル */
.p-approach__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 3.125rem;
     -moz-column-gap: 3.125rem;
          column-gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-approach__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-approach__left {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .p-approach__left {
    width: 100%;
  }
}

.p-approach__text {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-approach__text {
    margin-top: 2.5rem;
  }
}

.p-approach__right {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .p-approach__right {
    width: 100%;
  }
}

.p-approach__img {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-case {
  padding-top: 180px;
  padding-top: 11.25rem;
  padding-bottom: 200px;
  padding-bottom: 12.5rem;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media screen and (max-width: 767px) {
  .p-case {
    padding-top: 6.25rem;
    padding-bottom: 5rem;
  }
}

.p-case.--blue {
  background-color: #5282ac;
}

.p-case__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-case__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-case.--blue .p-case__title {
  color: #fff;
}

.p-case.--blue .p-case__title span {
  color: #fff;
}

.p-case.--blue .p-case__text {
  color: #fff;
}

.p-case__wrap {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-case__wrap p {
  color: #111;
}

.p-case.--blue .p-case__wrap p {
  color: #fff;
}

.p-case__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 90px 60px;
  gap: 5.625rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-case__lists {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.p-case__img img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-case__md-title {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-case__md-title {
    font-size: 1rem;
  }
}

.p-case__caption {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-case__caption {
    margin-top: 1.125rem;
  }
}

.p-case.--blue .p-case__md-title,
.p-case.--blue .p-case__caption {
  color: #fff;
}

.p-case__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-case__tags {
    gap: 0.5rem;
  }
}

.p-case__tag {
  padding: 5px 16px;
  padding: 0.3125rem 1rem;
  background-color: #ebc024;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  text-align: center;
  border-radius: 1.25rem;
}

.p-contact {
  padding-top: 180px;
  padding-top: 11.25rem;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  background-image: url(../images/bg-contact.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-position: 15% center;
  }
}

.p-contact__text {
  margin-top: 60px;
  margin-top: 3.75rem;
  color: #fff;
}

.p-contact__button {
  margin-top: 80px;
  margin-top: 5rem;
}

/* -----------------------------------------------------------------
  ドロワーメニュー
----------------------------------------------------------------- */
.p-drawer {
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #f1f1f1;
}

.p-drawer__wrap {
  padding: 90px 50px 100px;
  padding: 5.625rem 3.125rem 6.25rem;
}

.p-drawer__logo {
  width: 135px;
  width: 8.4375rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__logo {
    width: 6.25rem;
  }
}

.p-drawer__navigation-items {
  margin-top: 30px;
  margin-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid rgba(17, 17, 17, .3);
}

.p-drawer__navigation-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #111;
  text-transform: capitalize;
}

.p-drawer__navigation-item + .p-drawer__navigation-item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-drawer__meta {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-drawer__meta table {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.4;
  color: #111;
}

.p-drawer__meta table tbody tr th {
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
  width: 100px;
  width: 6.25rem;
  text-align: left;
  font-weight: 400;
}

.p-drawer__privacy {
  margin-top: 50px;
  margin-top: 3.125rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: #111;
}

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

.p-drawer__logo {
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 140px;
  width: 8.75rem;
}

.p-faq__wrap {
  margin-top: 80px;
  margin-top: 5rem;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
}

.p-faq__dl dt {
  position: relative;
  margin-top: 50px;
  margin-top: 3.125rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-left: 60px;
  padding-left: 3.75rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  border-bottom: 1px solid #d7d7d7;
}
@media screen and (max-width: 767px) {
  .p-faq__dl dt {
    padding-left: 2.5rem;
  }
}

.p-faq__dl dt:before {
  display: block;
  content: "Q：";
  position: absolute;
  top: 0;
  left: 35px;
  left: 2.1875rem;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Montserrat", sans-serif;
  color: #3E4F98;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-faq__dl dt:before {
    left: 1.25rem;
    font-size: 1.125rem;
  }
}

.p-faq__dl dd {
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-left: 60px;
  padding-left: 3.75rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq__dl dd {
    padding-left: 2.5rem;
  }
}

.p-faq__dl dd:before {
  display: block;
  content: "A：";
  position: absolute;
  top: 0;
  left: 35px;
  left: 2.1875rem;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Montserrat", sans-serif;
  color: #676767;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-faq__dl dd:before {
    left: 1.25rem;
    font-size: 1.125rem;
  }
}

.p-footer {
  padding-top: 150px;
  padding-top: 9.375rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  background-color: #111;
}

.p-footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3.75rem;
  }
}

.p-footer__left {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .p-footer__left {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 100%;
    max-width: 12.5rem;
  }
}

.p-footer__text {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}

.p-footer__address {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}

.p-footer__right {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .p-footer__right {
    width: 100%;
  }
}

.p-footer__nav ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 20px;
  gap: 1rem 1.25rem;
  text-align: center;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .p-footer__nav ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    text-align: left;
  }
}

.p-footer__copy {
  margin-top: 180px;
  margin-top: 11.25rem;
  color: #fff;
  text-align: right;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    margin-top: 8.75rem;
    text-align: center;
  }
}

.p-form input[type=radio], .p-form input[type=checkbox] {
  display: block;
  opacity: 0;
  position: absolute;
  z-index: -100;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.p-form input[type=radio] + span,
.p-form input[type=checkbox] + span {
  padding: 20px 20px 20px 20px;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #111;
  text-align: left;
  width: 100%;
}
.p-form input[type=radio] + span {
  padding: 10px 10px 10px 18px;
  padding: 0.625rem 0.625rem 0.625rem 1.125rem;
}
.p-form input[type=checkbox] + span {
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-form input[type=checkbox] + span {
    padding-right: 0;
  }
}
.p-form input[type=radio]:checked + span,
.p-form input[type=checkbox]:checked + span {
  color: #111;
}
.p-form input[type=radio] + span:before,
.p-form input[type=checkbox] + span::before {
  border: 1px solid #707070;
}
.p-form input[type=radio]:checked + span:before,
.p-form input[type=checkbox]:checked + span::before {
  border: 1px solid #707070;
}
.p-form input[type=radio]:checked + span:after {
  background: #111;
}
.p-form input[type=checkbox]:checked + span:after {
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -10px;
  -webkit-mask: url(../images/common/icon-check.png) no-repeat center center/contain;
          mask: url(../images/common/icon-check.png) no-repeat center center/contain;
  background-color: #111;
  width: 20px;
  height: 20px;
}
.p-form input[type=checkbox] + span:hover::after {
  background-color: #111;
}
.p-form input[type=text], .p-form input[type=password], .p-form input[type=email], .p-form input[type=tel], .p-form input[type=url], .p-form input[type=search], .p-form input[type=number], .p-form input[type=datetime], .p-form input[type=week], .p-form select {
  width: 100%;
  background-color: #fff;
  padding: 10px 10px;
  padding: 0.625rem 0.625rem;
}
.p-form textarea {
  padding: 10px 10px;
  padding: 0.625rem 0.625rem;
  width: 100%;
  background-color: #fff;
}

.p-form__table {
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  border-collapse: collapse;
}

.p-form__table a {
  border-bottom: 1px solid #111;
}

@media screen and (max-width: 767px) {
  .p-form__table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-form__table th {
  text-align: left;
  font-weight: 400;
  border-bottom: 1px solid rgba(17, 17, 17, .1);
}

.p-form__table td {
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(17, 17, 17, .1);
}

.p-form__required:after {
  content: "※";
  display: inline-block;
  margin-left: 10px;
  margin-left: 0.625rem;
  font-size: 10px;
  font-size: 0.625rem;
  color: red;
}

@media screen and (max-width: 767px) {
  .submit_button + .submit_button {
    margin-top: 1.25rem;
  }
}

/* -----------------------------------------------------------------
  ヘッダー
----------------------------------------------------------------- */
.p-header {
  height: 80px;
  height: 5rem;
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 3.75rem;
  }
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-header__logo a {
  display: block;
  width: 100%;
  max-width: 150px;
  max-width: 9.375rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    max-width: 10rem;
  }
}

.p-header__logo a img {
  width: 100%;
  height: auto;
}

.p-header__nav {
  height: 100%;
  margin-right: 60px;
  margin-right: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    margin-left: auto;
    margin-right: 1.25rem;
    display: none;
  }
}

.p-header__navItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
  height: 100%;
  text-transform: capitalize;
}

.p-header__navItem {
  height: 100%;
}

.p-header__navItem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  height: 100%;
}

.p-header__hamburger {
  position: fixed;
  top: 25px;
  top: 1.5625rem;
  right: 25px;
  right: 1.5625rem;
  z-index: 16;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
    top: 0.9375rem;
  }
}

.p-issue {
  padding-top: 180px;
  padding-top: 11.25rem;
  padding-bottom: 200px;
  padding-bottom: 12.5rem;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media screen and (max-width: 767px) {
  .p-issue {
    margin-top: 9.375rem;
    padding-top: 6.25rem;
    padding-bottom: 5rem;
  }
}

.p-issue.--dark {
  background-color: #4C4C4C;
}

.p-issue__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
@media screen and (max-width: 767px) {
  .p-issue__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.5rem;
  }
}

.p-issue__left {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .p-issue__left {
    width: 100%;
  }
}

.p-issue__title {
  font-size: 30px;
  font-size: 1.875rem;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.p-issue.--dark .p-issue__title {
  color: #fff;
}

.p-issue__left p {
  margin-top: 50px;
  margin-top: 3.125rem;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.p-issue.--dark .p-issue__left p {
  color: #fff;
}

.p-issue__right {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-issue__right {
    width: 100%;
  }
}

.p-issue__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  gap: 0.625rem;
}

.p-issue__list-item {
  padding: 12px 10px;
  padding: 0.75rem 0.625rem;
  border: 1px solid #676767;
  border-radius: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media screen and (max-width: 767px) {
  .p-issue__list-item {
    font-size: 0.75rem;
  }
}

.p-issue.--dark .p-issue__list-item {
  border: 1px solid #fff;
  color: #fff;
}

/* -----------------------------------------------------------------
  ローディング
----------------------------------------------------------------- */
.p-loading {
  width: 100vw;
  height: 100vh;
  background-color: #676767;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.p-loading__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.p-loading__img {
  width: 280px;
  width: 17.5rem;
  height: 280px;
  height: 17.5rem;
  margin: auto;
  -webkit-animation: fade 3s ease-in;
          animation: fade 3s ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-loading__img {
    max-width: 12.5rem;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-loading__imgMain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv__wrap {
  width: 100%;
  max-width: 2000px;
  max-width: 125rem;
  height: 15vh;
  min-height: 200px;
  min-height: 12.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-mv__wrap {
    height: 10vh;
    min-height: 11.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.p-mv__copy {
  font-size: 60px;
  font-size: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-mv__copy {
    font-size: 2.25rem;
  }
}

.p-mv__left p {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-mv__left p {
    margin-top: 0.625rem;
    font-size: 1.375rem;
  }
}

.p-mv__right {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.p-mv__caption {
  font-size: 20px;
  font-size: 1.25rem;
  color: #676767;
}
@media screen and (max-width: 767px) {
  .p-mv__caption {
    text-align: right;
    font-size: 0.9375rem;
  }
}

.p-mv__right ul {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #676767;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-mv__right ul {
    font-size: 0.75rem;
  }
}

.p-mv__image {
  height: 50vh;
}
@media screen and (max-width: 767px) {
  .p-mv__image {
    height: 40vh;
  }
}

.p-mv__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-points__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 3.125rem;
     -moz-column-gap: 3.125rem;
          column-gap: 3.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1000px;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-points__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.875rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-points__wrap ul li {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-points__wrap ul li {
    font-size: 1.25rem;
  }
}

.p-points__wrap ul li + li {
  margin-top: 14px;
  margin-top: 0.875rem;
}

.p-points__wrap ul li span {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  color: #3E4F98;
  font-weight: 700;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .p-points__wrap ul li span {
    font-size: 1.125rem;
  }
}

/* 記事詳細
------------------------------------------------ */
.p-post__inner {
  max-width: 800px;
  max-width: 50rem;
}

.p-post__head {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-post__head {
    text-align: left;
  }
}

.p-post__head time {
  font-size: 20px;
  font-size: 1.25rem;
  color: #111;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-post__head time {
    font-size: 0.875rem;
  }
}

.p-post__title {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-post__title {
    font-size: 1.125rem;
  }
}

.p-post__thumbnail {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-post__thumbnail img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-post__wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-post__wrap h2 {
  margin-top: 65px;
  margin-top: 4.0625rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-post__wrap h2 {
    font-size: 1.375rem;
  }
}

.p-post__wrap h3 {
  margin-top: 65px;
  margin-top: 4.0625rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-post__wrap h3 {
    font-size: 1.125rem;
  }
}

.p-post__wrap h4 {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-post__wrap h4 {
    font-size: 1rem;
  }
}

.p-post__wrap p {
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-post__wrap p {
    font-size: 0.875rem;
  }
}

.p-post__wrap a {
  margin-top: 8px;
  margin-top: 0.5rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #44a3cb;
  border-bottom: 1px solid #44a3cb;
  border-bottom: 0.0625rem solid #44a3cb;
}
@media screen and (max-width: 767px) {
  .p-post__wrap a {
    font-size: 0.875rem;
  }
}

.p-post__wrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-post__wrap ul {
  list-style: disc;
  padding-left: 30px;
  padding-left: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-post__wrap ul {
    font-size: 0.875rem;
  }
}

.p-post__pagination {
  margin-top: 80px;
  margin-top: 5rem;
}

/* 記事詳細ページのページ送り */
.p-postPagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-postPagination__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 26%;
  min-width: 300px;
  min-width: 18.75rem;
  max-width: 400px;
  max-width: 25rem;
}

.p-postPagination__link.--placeholder {
  visibility: hidden;
}

.p-postPagination__link a {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  color: #111;
  position: relative;
}

.p-postPagination__link-pageprev a:before {
  -webkit-mask: url(../images/common/icon-prevarrow.png) no-repeat center center/contain;
          mask: url(../images/common/icon-prevarrow.png) no-repeat center center/contain;
  background-color: #676767;
  width: 7px;
  width: 0.4375rem;
  height: 10px;
  height: 0.625rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -20px;
  left: -1.25rem;
  content: "";
}

.p-postPagination__link-pagenext a:before {
  -webkit-mask: url(../images/common/icon-nextarrow.png) no-repeat center center/contain;
          mask: url(../images/common/icon-nextarrow.png) no-repeat center center/contain;
  background-color: #676767;
  width: 7px;
  width: 0.4375rem;
  height: 10px;
  height: 0.625rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -20px;
  right: -1.25rem;
  content: "";
}

.p-postPagination__link-archive {
  text-align: center;
}

.p-postPagination__link-archive span:before {
  -webkit-mask: url(../images/common/icon-listbox.png) no-repeat center center/contain;
          mask: url(../images/common/icon-listbox.png) no-repeat center center/contain;
  background-color: #676767;
  width: 15px;
  height: 15px;
  position: absolute;
  top: calc(50% - 8px);
  left: -22px;
  content: "";
}

.p-postPagination__link {
  margin: 0 auto;
}

.p-pricing__wrap {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.p-pricing__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-pricing__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 1.125rem;
  }
}

.p-pricing__head.--addmg {
  margin-top: 180px;
  margin-top: 11.25rem;
}
@media screen and (max-width: 767px) {
  .p-pricing__head.--addmg {
    margin-top: 6.25rem;
  }
}

.p-pricing__md-title {
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-pricing__md-title {
    font-size: 1.5rem;
  }
}

.p-pricing__md-title:after {
  content: "";
  display: block;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 50px;
  width: 3.125rem;
  height: 3px;
  height: 0.1875rem;
  background-color: #3E4F98;
}
@media screen and (max-width: 767px) {
  .p-pricing__md-title:after {
    margin-top: 1rem;
  }
}

.p-pricing__head-text {
  font-size: 14px;
  font-size: 0.875rem;
}

.p-pricing__table-wrap {
  margin-top: 60px;
  margin-top: 3.75rem;
  overflow-x: auto;
}

.p-pricing__table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  min-width: 43.75rem;
}

.p-pricing__table-wrap table thead tr th,
.p-pricing__table-wrap table tr th,
.p-pricing__table-wrap table td {
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #d7d7d7;
}
@media screen and (max-width: 767px) {
  .p-pricing__table-wrap table thead tr th,
.p-pricing__table-wrap table tr th,
.p-pricing__table-wrap table td {
    font-size: 0.875rem;
  }
}

.p-pricing__table-wrap table thead tr th {
  width: 25%;
  min-width: 260px;
  min-width: 16.25rem;
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
  text-align: left;
}

.p-pricing__table-wrap table thead tr th:first-of-type {
  width: 20%;
  min-width: 220px;
  min-width: 13.75rem;
}
@media screen and (max-width: 767px) {
  .p-pricing__table-wrap table thead tr th:first-of-type {
    width: 15%;
    min-width: 8.125rem;
  }
}

.p-pricing__table-wrap table tr th {
  width: 20%;
  vertical-align: top;
}

.p-pricing__table-wrap table td {
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
  vertical-align: top;
  line-height: 2;
}

.p-pricing__table-wrap table td ul {
  color: #676767;
  padding-left: 10px;
  padding-left: 0.625rem;
}

.p-pricing__table-wrap table .td-center {
  text-align: center;
  word-break: keep-all;
}

.p-pricing__table-wrap table small {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
}

.p-pricing__text {
  margin-top: 60px;
  margin-top: 3.75rem;
}

/* プライバシーポリシー
------------------------------------------------ */
.p-privacy h1 {
  text-align: left;
}

.p-privacy h2 {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

.p-privacy p {
  margin-top: 18px;
  margin-top: 1.125rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-privacy p {
    font-size: 0.875rem;
  }
}

.p-profile__wrap {
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
  background-color: #fff;
  border-radius: 1.875rem;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 60px;
  padding: 2.5rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-profile__wrap {
    padding: 2.5rem 1.25rem;
  }
}

.p-profile__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-profile__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.875rem;
  }
}

.p-profile__left {
  width: 75%;
}
@media screen and (max-width: 767px) {
  .p-profile__left {
    width: 100%;
  }
}

.p-profile__text {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-profile__right {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .p-profile__right {
    width: 100%;
    max-width: 15.625rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-profile__small {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-profile__small {
    text-align: right;
  }
}

@media screen and (max-width: 767px) {
  .p-profile__sign {
    text-align: right;
  }
}

.p-service__lists {
  width: 100%;
  max-width: 800px;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  row-gap: 20px;
  row-gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-service__lists {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 2.5rem;
  }
}

.p-service__list-item {
  padding: 30px 30px;
  padding: 1.875rem 1.875rem;
  border: 2px solid #3E4F98;
  border-radius: 1.25rem;
}

.p-service__md-title {
  font-size: 20px;
  font-size: 1.25rem;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  color: #3E4F98;
}
@media screen and (max-width: 767px) {
  .p-service__md-title {
    font-size: 1.125rem;
  }
}

.p-service__md-title span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  color: #111;
}

.p-service__icon {
  width: 100%;
  max-width: 80px;
  max-width: 5rem;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-service__icon {
    max-width: 3.75rem;
  }
}

.p-service__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-service__tags {
  margin-top: 30px;
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-service__tags {
    gap: 0.3125rem;
  }
}

.p-service__tag {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 5px 16px;
  padding: 0.3125rem 1rem;
  background-color: #b6b6b6;
  color: #fff;
  text-align: center;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-service__tag {
    font-size: 0.75rem;
  }
}

.p-service__caption {
  margin-top: 50px;
  margin-top: 3.125rem;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  width: 100%;
  max-width: 900px;
  max-width: 56.25rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  background-color: #fff5d8;
}
@media screen and (max-width: 767px) {
  .p-service__caption {
    -moz-text-align-last: left;
         text-align-last: left;
    font-size: 1rem;
  }
}

/* 下層のMV
------------------------------------------------ */
/* -----------------------------------------------------------------
  タブ切り替え
----------------------------------------------------------------- */
.p-tabContents {
  position: relative;
}

.p-tabContents__tabButton[aria-selected=true] {
  color: red;
}

.p-tabContents__panelWrap {
  position: relative;
  width: 100%;
  height: 30vh;
}

.p-tabContents__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
@media screen and (max-width: 767px) {
  .p-tabContents__panel {
    width: 100%;
  }
}

.p-tabContents__panel[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
}

.p-tabContents__panel[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}
/*# sourceMappingURL=style.css.map */
