@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  font-size: 1rem;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
button,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption,
th {
  text-align: left;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

sup {
  vertical-align: text-top;
}

a:not([class]) {
  transition: 0.3s;
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  vertical-align: top;
}

input,
button,
textarea,
select {
  font: inherit;
}

span {
  color: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
}

:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "Meiryo", "Yu Gothic", "MS PGothic", sans-serif;
  font-weight: 300;
}

.js-body.is-active {
  overflow: hidden;
}

.js-fadeIn {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
  transform: translate(0, 80px);
}

.js-fadeIn.is-scrollIn {
  opacity: 1;
  transform: translate(0, 0);
}

.l-inner {
  width: 100%;
  max-width: 77rem;
  margin-inline: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: 100%;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.c-title {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.5rem;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.c-title::before {
  content: "";
  position: absolute;
  bottom: -1.875rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5.625rem;
  height: 1px;
  background: #111111;
}
@media screen and (max-width: 768px) {
  .c-title::before {
    bottom: -1.25rem;
    width: 3.75rem;
  }
}

.p-anchor-nav {
  background: #f4f4f4;
}

.p-anchor-nav__list {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.p-anchor-nav__item a {
  position: relative;
  padding-top: 1.25rem;
  padding-bottom: 2rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
}

.p-anchor-nav__item a::before {
  content: "";
  position: absolute;
  bottom: 1.3125rem;
  left: 50%;
  transform: translateX(-50%) rotate(135deg);
  width: 0.75rem;
  height: 0.75rem;
  border-top: solid 0.1875rem #151515;
  border-right: solid 0.1875rem #151515;
}

.p-button {
  margin-top: 5.375rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-button {
    margin-top: 2.5rem;
  }
}

.p-button a {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 37.5rem;
  padding-block: 1.5rem;
  padding-right: 2.125rem;
  background: #ad0026;
  border: 1px solid #ad0026;
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .p-button a {
    min-width: 20rem;
    font-size: 1rem;
    padding-block: 1.25rem;
    padding-right: 1.75rem;
  }
}

.p-button a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10.25rem;
  transform: translateY(-50%);
  width: 0.875rem;
  height: 0.875rem;
  background: #ffffff;
  -webkit-mask-image: url(../img/icon_out_link.svg);
          mask-image: url(../img/icon_out_link.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: ease-in-out, 0.4s;
}
@media screen and (max-width: 768px) {
  .p-button a::before {
    right: 3.125rem;
  }
}

.p-button a:hover {
  color: #ad0026;
  background: #ffffff;
  transform: translateY(4px);
  box-shadow: none;
}
.p-button a:hover::before {
  background: #ad0026;
}

.p-comparison {
  position: relative;
}

.p-comparison::before {
  content: "";
  position: absolute;
  bottom: -0.625rem;
  left: 0;
  width: 100%;
  height: 56.5625vw;
  background: url(../img/comparison_bg.webp) center/contain no-repeat;
  z-index: -1;
}
@media (max-width: 1600px) {
  .p-comparison::before {
    height: 56.5625rem;
    background: url(../img/comparison_bg.webp) center/cover no-repeat;
  }
}
@media screen and (max-width: 768px) {
  .p-comparison::before {
    height: 17.625rem;
    background: url(../img/comparison_bg_sp.webp) center/cover no-repeat;
  }
}

.p-comparison__inner.l-inner {
  padding-block: 10rem;
}
@media screen and (max-width: 768px) {
  .p-comparison__inner.l-inner {
    padding-block: 3.75rem;
    padding-inline: 0;
  }
}

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

.p-comparison__item + .p-comparison__item {
  margin-top: 5.5rem;
}
@media screen and (max-width: 768px) {
  .p-comparison__item + .p-comparison__item {
    margin-top: 4.5rem;
  }
}

.p-comparison__item-category {
  display: block;
  margin-top: 4.875rem;
  padding-block: 0.4375rem;
  border: 1px solid #ad0026;
  border-radius: 1.875rem;
  color: #ad0026;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-comparison__item-category {
    margin-top: 3.875rem;
    margin-top: 3.25rem;
    font-size: 1rem;
  }
}

.p-comparison__item-subtitle {
  margin-top: 1.5rem;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-comparison__item-subtitle {
    margin-top: 1.25rem;
    font-size: 1.25rem;
  }
}

.p-comparison__item-body {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-comparison__item-body {
    margin-top: 1.25rem;
    padding-left: 0.9375rem;
  }
}

.p-comparison__item-wrapper {
  position: relative;
  border: 1px solid #d9d9d9;
}

.p-comparison__item-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3.75rem;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.1), transparent 55%);
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-comparison__item-wrapper::before {
    content: none;
  }
}

.p-comparison__item-wrapper.is-bottom::before {
  opacity: 0;
}

.p-comparison__item-content {
  background: #ffffff;
  overflow-y: auto;
  max-height: 42.375rem;
}
@media screen and (max-width: 768px) {
  .p-comparison__item-content {
    border-right: none;
    overflow-y: visible;
    overflow-x: scroll;
    max-height: 100%;
  }
}

.p-comparison__table {
  width: 100%;
  display: table;
  table-layout: fixed;
}
@media (max-width: 1250px) {
  .p-comparison__table {
    table-layout: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-comparison__table {
    table-layout: fixed;
  }
}

.p-comparison__th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding-block: 0.125rem;
  padding-inline: 0.75rem;
  background: #111111;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 2.2;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .p-comparison__th {
    padding-inline: 0.375rem;
    font-size: 0.75rem;
  }
}

.p-comparison__th:first-child,
.p-comparison__th:nth-of-type(2) {
  width: 10.625rem;
}
@media screen and (max-width: 768px) {
  .p-comparison__th:first-child,
  .p-comparison__th:nth-of-type(2) {
    width: 8.75rem;
  }
}

.p-comparison__th:nth-of-type(3) {
  width: 13.125rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1200px) {
  .p-comparison__th:nth-of-type(3) {
    width: 11.25rem;
  }
}
@media screen and (max-width: 768px) {
  .p-comparison__th:nth-of-type(3) {
    width: 8.75rem;
  }
}

.p-comparison__th:nth-of-type(4) {
  width: 17.5rem;
}
@media screen and (max-width: 768px) {
  .p-comparison__th:nth-of-type(4) {
    width: 15rem;
  }
}

.p-comparison__th:nth-of-type(5),
.p-comparison__th:nth-of-type(6),
.p-comparison__th:nth-of-type(7) {
  width: 6.25rem;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-comparison__th:nth-of-type(5),
  .p-comparison__th:nth-of-type(6),
  .p-comparison__th:nth-of-type(7) {
    width: 5.625rem;
  }
}

.p-comparison__th:not(:last-child) {
  border-right: 1px solid #d9d9d9;
}

.p-comparison__td {
  padding-block: 0.9375rem;
  padding-inline: 0.75rem;
  border: 1px solid #d9d9d9;
  font-size: 0.9375rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-comparison__td {
    padding-inline: 0.375rem;
    font-size: 0.75rem;
  }
}

.p-comparison__td:first-child {
  border-left: none;
  background: #f4f4f4;
}

.p-comparison__tr:last-child .p-comparison__td {
  border-bottom: none;
}

.p-comparison__td a {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.p-comparison__td a.noLink {
  pointer-events: none;
  text-decoration: none !important;
}

@media screen and (max-width: 768px) {
  .p-comparison__td a {
    font-size: 0.75rem;
  }
}

.p-comparison__td:first-child a {
  position: relative;
  font-weight: 600;
  text-decoration: underline;
}

.p-comparison__td:nth-of-type(3) a {
  display: block;
  width: 11.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #00288c;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .p-comparison__td:nth-of-type(3) a {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .p-comparison__td a:hover {
    color: #ad0026;
  }
}

.p-comparison__item-notice {
  position: relative;
  margin-top: 0.75rem;
  padding-left: 1.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.8;
}

.p-comparison__item-notice::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.375rem;
  height: 1.375rem;
  background: url(../img/icon_finger.svg) center/contain no-repeat;
  animation: slideLR 1.6s infinite alternate linear;
}

@keyframes slideLR {
  0% {
    transform: translateX(0) translateY(-50%); /* 左端 */
  }
  100% {
    transform: translateX(8px) translateY(-50%); /* 右端 */
  }
}
.p-comparison__item-time {
  margin-top: 1.375rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-comparison__item-time {
    margin-top: 0.5rem;
    padding-right: 0.9375rem;
    font-size: 0.75rem;
  }
}

.p-cta {
  position: relative;
  z-index: 1;
}

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

.p-cta__container {
  display: flex;
  border-radius: 0.625rem;
  overflow: clip;
}
@media screen and (max-width: 768px) {
  .p-cta__container {
    flex-direction: column-reverse;
    border-radius: 0.375rem;
  }
}

.p-cta__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  width: 36rem;
  margin-top: -0.3125rem;
  padding-top: 3.75rem;
  padding-bottom: 4.375rem;
  background: #dfa752;
}
@media screen and (max-width: 768px) {
  .p-cta__content {
    width: 100%;
    margin-top: 0;
    padding-block: 1.875rem;
  }
}

.p-cta__text {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-cta__text {
    font-size: 1rem;
  }
}

.p-cta__button {
  width: 100%;
  text-align: center;
}

.p-cta__button a {
  position: relative;
  padding-block: 1.5rem;
  padding-left: 3.125rem;
  padding-right: 5.125rem;
  width: 100%;
  max-width: 23.5rem;
  background: #ffffff;
  border-radius: 0.25rem;
  color: #dfa752;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .p-cta__button a {
    max-width: 19.0625rem;
    padding-block: 1rem;
    font-size: 1rem;
    padding-right: 4.875rem;
  }
}

@media (min-width: 768px) {
  .p-cta__button a:hover {
    opacity: 0.8;
    transform: translateY(4px);
    box-shadow: none;
  }
}

.p-cta__button a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 6.375rem;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
  background: #dfa752;
  -webkit-mask-image: url(../img/icon_out_link.svg);
          mask-image: url(../img/icon_out_link.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (max-width: 768px) {
  .p-cta__button a::before {
    right: 5.15625rem;
  }
}

.p-cta__img {
  flex-shrink: 0;
  width: 100%;
  max-width: 39rem;
  aspect-ratio: 624/336;
}

.p-cta__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-footer {
  position: relative;
}

.p-footer__inner {
  padding-block: 1.1875rem;
  background: #111111;
  text-align: center;
}
.p-footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-footer__copyright {
    font-size: 0.75rem;
  }
}

.p-hamburger {
  display: none;
  width: 1.375rem;
  height: 1rem;
  position: relative;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .p-hamburger {
    display: block;
  }
}

.p-hamburger__bar {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 0.125rem;
  background: black;
  border-radius: 2px;
  transition: 0.3s;
}

.p-hamburger__bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.p-hamburger__bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.p-hamburger__bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

.js-hamburger.is-active .p-hamburger__bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.js-hamburger.is-active .p-hamburger__bar:nth-child(2) {
  opacity: 0;
}

.js-hamburger.is-active .p-hamburger__bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .p-header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.125rem;
    width: 4.375rem;
    height: 3.75rem;
  }
}

@media screen and (max-width: 768px) {
  .p-header__hamburger-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.6875rem;
    line-height: 1.4545454545;
    font-weight: 700;
  }
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  overflow: clip;
}

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

.p-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding-block: 1.4375rem;
  padding-inline: 1.875rem;
  border-bottom: 1px solid #e6e6e6;
  -webkit-backdrop-filter: blur(36px);
          backdrop-filter: blur(36px);
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .p-header__inner {
    justify-content: space-between;
    padding-left: 1.25rem;
    padding-right: 0.25rem;
    padding-block: 0;
    z-index: 10000;
  }
}

.p-header.is-active .p-header__inner::before {
  background: #ffffff;
  filter: none;
}

.p-header__logo {
  flex-shrink: 0;
  color: #111111;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    padding-block: 0.1875rem;
  }
}

.p-header__logo a {
  max-width: 9.9375rem;
  aspect-ratio: 159/34;
  vertical-align: middle;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-header__logo a {
    max-width: 7.5rem;
    aspect-ratio: 120/26;
  }
}

.p-header__logo a:hover {
  opacity: 0.6;
}

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

.p-header__nav {
  position: static;
  display: flex;
  background: transparent;
  z-index: 99;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f5f5f5;
    z-index: 9999;
    display: block;
    transform: translateY(-100%);
    pointer-events: none;
    transition: 0.3s;
    margin-top: 3.75rem;
    padding-top: 1.875rem;
    padding-inline: 1.875rem;
  }
}

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

.p-header__nav--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-header__nav--sp {
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: ease-in-out, 0.4s;
  }
}

@media screen and (max-width: 768px) {
  .js-navigation.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    overflow-y: scroll;
  }
}

.p-header__nav-list {
  display: flex;
  justify-content: center;
  gap: 5rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-header__nav-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.75rem;
    width: 100%;
    margin-top: 2.5rem;
  }
}

.p-header__nav-item {
  color: #111111;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-header__nav-item {
    font-weight: bold;
  }
}

.p-header__nav-item a {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-header__nav-item a {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .p-header__nav-item a:hover {
    opacity: 0.6;
  }
}

.p-header__nav-title {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #ad0026;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #ad0026;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.p-header__nav-title .p-header__nav-title--narrow {
  letter-spacing: -0.04em;
}

.p-header__nav-title .p-header__nav-title--narrow + .p-header__nav-title--narrow {
  letter-spacing: -0.027em;
}

.p-header__nav-button {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  padding-right: 1.5625rem;
  border-top: 1px dashed #111111;
  text-align: center;
}

.p-header__nav-button__text {
  position: relative;
  display: inline-block;
  font-weight: 700;
  line-height: 1.6;
}

.p-header__nav-button__text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -2.1875rem;
  transform: translateY(-50%) rotate(45deg);
  width: 1.25rem;
  height: 0.125rem;
  background: #151515;
}

.p-header__nav-button__text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2.1875rem;
  transform: translateY(-50%) rotate(-45deg);
  width: 1.25rem;
  height: 0.125rem;
  background: #151515;
}

.p-header__hamburger-text {
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.4545454545;
}

.p-kv {
  height: 55.125rem;
  overflow: clip;
}
@media screen and (max-width: 768px) {
  .p-kv {
    height: 60.5rem;
    padding-bottom: 2.5rem;
  }
}

.p-kv__inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-kv__inner {
    flex-direction: column;
    justify-content: end;
    align-items: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .p-kv__inner.l-inner {
    padding-inline: 0;
  }
}

.p-kv::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72.5vw;
  height: 55rem;
  background: url(../img/kv.webp) 0 0/cover no-repeat;
  z-index: -1;
}
@media (min-width: 1601px) {
  .p-kv::before {
    background: url(../img/kv_large.webp) -3.5rem 0/cover no-repeat;
  }
}
@media (max-width: 1400px) {
  .p-kv::before {
    background: url(../img/kv.webp) -9.5625rem 0/cover no-repeat;
  }
}
@media (max-width: 1200px) {
  .p-kv::before {
    background: url(../img/kv.webp) -14.0625rem 0/cover no-repeat;
  }
}
@media screen and (max-width: 768px) {
  .p-kv::before {
    background: url(../img/kv_sp.webp) center/cover no-repeat;
    width: 100%;
    height: 31.25rem;
  }
}

.p-kv__contents {
  max-width: 43.75rem;
  padding-top: 3.75rem;
  padding-right: 2.5rem;
  border-radius: 0 2.5rem 0 0;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-kv__contents {
    max-width: 94.6666666%;
    margin-right: auto;
    padding-top: 2rem;
    padding-inline: 1rem;
    border-radius: 0 1.25rem 0 0;
  }
}

.p-kv__title-label {
  display: inline-block;
  padding-block: 0.5rem;
  padding-inline: 1.5625rem;
  border-radius: 100vh;
  border: 1px solid #111111;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-kv__title-label {
    padding-block: 0.625rem;
    padding-inline: 1rem;
    font-size: 1rem;
    line-height: 1;
  }
}

.p-kv__title-text {
  position: relative;
  display: inline-block;
  margin-top: 1.25rem;
  color: #ad0026;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-kv__title-text {
    margin-top: 1rem;
    font-size: 2rem;
  }
}

.p-kv__title-text::before {
  content: "";
  position: absolute;
  bottom: -1.875rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: #ad0026;
}
@media screen and (max-width: 768px) {
  .p-kv__title-text::before {
    bottom: -1.25rem;
  }
}

.p-kv__title-text .p-kv__title-text--narrow {
  letter-spacing: -0.04em;
}

.p-kv__title-text .p-kv__title-text--narrow + .p-kv__title-text--narrow {
  letter-spacing: -0.25em;
}

.c-title .c-title__text--narrow {
  letter-spacing: -0.04em;
}

.c-title .c-title__text--narrow + .c-title__text--narrow {
  letter-spacing: -0.25em;
}

.p-kv__subtitle {
  margin-top: 3.75rem;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-kv__subtitle {
    margin-top: 2.5rem;
    font-size: 1rem;
    line-height: 1.6;
  }
}

.p-kv__text {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-kv__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.p-page-top {
  display: block;
  position: fixed;
  bottom: 1.75rem;
  right: 0.9375rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  z-index: 999;
  transition: ease-in-out, 0.4s;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .p-page-top {
    bottom: 1.5rem;
  }
}

.p-page-top::before {
  content: "";
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%) rotate(-45deg);
  width: 0.9375rem;
  height: 0.9375rem;
  border-top: solid 0.1875rem #767676;
  border-right: solid 0.1875rem #767676;
}

.p-page-top.is-show {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .p-page-top:hover {
    opacity: 0.6;
  }
}

.p-service {
  background: #f4f4f4;
}

.p-service__inner {
  position: relative;
  padding-block: 8.5rem;
}
@media screen and (max-width: 768px) {
  .p-service__inner {
    padding-block: 3.75rem;
  }
}

.p-service__inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18.3125rem;
  height: 31.625rem;
  background: url(../img/service_doctor.webp) center/contain no-repeat;
}
@media (min-width: 1600px) {
  .p-service__inner::before {
    right: -7.8125rem;
  }
}
@media screen and (max-width: 768px) {
  .p-service__inner::before {
    content: none;
  }
}

.p-service__inner.is-even::before {
  content: none;
}

.p-service__text {
  margin-top: 3.75rem;
  font-size: 1.125rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-service__text {
    margin-top: 2.75rem;
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

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

.p-service__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-service__list {
    gap: 1.5rem 1.25rem;
  }
}

.p-service__item {
  width: calc((100% - 2.5rem) / 2);
}
@media screen and (max-width: 768px) {
  .p-service__item {
    width: calc((100% - 1.25rem) / 2);
  }
}

.p-service__item a {
  display: flex;
  gap: 1.5rem;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-service__item a {
    flex-direction: column;
    gap: 0.25rem;
  }
}

.p-service__item a:hover {
  opacity: 0.6;
}

.p-service__item img {
  flex-shrink: 0;
  width: 100%;
  max-width: 16.25rem;
  height: auto;
  aspect-ratio: 260/130;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-service__item img {
    aspect-ratio: 160/80;
  }
}

.p-service__item-title {
  position: relative;
  display: inline-block;
  color: #ad0026;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
  text-decoration: underline;
  transition: ease-in-out, 0.4s;
}
@media screen and (max-width: 768px) {
  .p-service__item-title {
    font-size: 0.875rem;
  }
}

.p-service__item-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.375rem;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 0.75rem;
  background: #ad0026;
  -webkit-mask-image: url(../img/icon_out_link.svg);
          mask-image: url(../img/icon_out_link.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (max-width: 768px) {
  .p-service__item-title::before {
    right: -0.875rem;
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-service__item-text {
  margin-top: 0.25rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-service__item-text {
    font-size: 0.75rem;
    line-height: 1.6;
  }
}

.p-strategy {
  background: #f4f4f4;
}

.p-strategy__inner {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 17.5rem;
}
@media screen and (max-width: 768px) {
  .p-strategy__inner {
    padding-top: 3.75rem;
    padding-bottom: 8.75rem;
  }
}

.p-strategy__inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30.8125rem;
  height: 31.9375rem;
  background: url(../img/strategy_doctor.webp) center/contain no-repeat;
}
@media (min-width: 1600px) {
  .p-strategy__inner::before {
    right: -8.375rem;
  }
}
@media screen and (max-width: 768px) {
  .p-strategy__inner::before {
    content: none;
  }
}

.p-strategy__inner.is-even::before {
  content: none;
}

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

.p-strategy__block + .p-strategy__block {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-strategy__block + .p-strategy__block {
    margin-top: 3.5rem;
  }
}

.p-strategy__block-title {
  padding-block: 0.5rem;
  padding-inline: 1rem;
  background: #111111;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-strategy__block-title {
    border-radius: 0.25rem;
    font-size: 1rem;
  }
}

.p-strategy__block-body {
  display: flex;
  gap: 1.875rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-strategy__block-body {
    flex-direction: column;
    margin-top: 1rem;
  }
}

.p-strategy__block-card {
  max-width: 35.625rem;
}
@media screen and (max-width: 768px) {
  .p-strategy__block-card {
    max-width: 100%;
  }
}

.p-strategy__block-card a {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-strategy__block-card a {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .p-strategy__block-card a:hover {
    opacity: 0.8;
  }
}

.p-strategy__block-card-img {
  flex-shrink: 0;
  max-width: 17.5rem;
  aspect-ratio: 280/147;
}
@media screen and (max-width: 768px) {
  .p-strategy__block-card-img {
    aspect-ratio: 345/181;
    min-width: 100%;
  }
}

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

.p-strategy__category {
  display: inline-block;
  padding-block: 0.25rem;
  padding-inline: 0.625rem;
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-strategy__category {
    font-size: 0.625rem;
  }
}

.p-strategy__category--red {
  background: #ad0026;
}

.p-strategy__category--blue {
  background: #00288c;
}

.p-strategy__block-card-title {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
  text-decoration: underline;
  transition: ease-in-out, 0.4s;
}
@media screen and (max-width: 768px) {
  .p-strategy__block-card-title {
    margin-top: 0.375rem;
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .p-strategy__block-card a:hover .p-strategy__block-card-title {
    color: #ad0026;
  }
}

.p-strategy__block-card__name {
  position: relative;
  display: block;
  margin-top: 0.75rem;
  padding-left: 0.96875rem;
  color: #585858;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-strategy__block-card__name {
    margin-top: 0.5rem;
    padding-left: 1.375rem;
  }
}

.p-strategy__block-card__name::before {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  background: url(../img/icon_human.svg) center/contain no-repeat;
}
.p-strategy__wrapper:nth-of-type(2) {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 5rem 3.75rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-strategy__wrapper:nth-of-type(2) {
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3.5rem;
  }
}
.p-strategy__wrapper:nth-of-type(2) .p-strategy__block {
  width: calc((100% - 3.75rem) / 2);
}
@media screen and (max-width: 768px) {
  .p-strategy__wrapper:nth-of-type(2) .p-strategy__block {
    width: 100%;
  }
}
.p-strategy__wrapper:nth-of-type(2) .p-strategy__block + .p-strategy__block {
  margin-top: 0;
}
.p-strategy__wrapper:nth-of-type(2) .p-strategy__block-body {
  display: block;
}

.p-strategy__list {
  padding-left: 1.875rem;
  border-left: 1px dashed #7e7e7e;
}
@media screen and (max-width: 768px) {
  .p-strategy__list {
    position: relative;
    padding-top: 1.25rem;
    padding-left: 0;
    border-left: none;
    border-top: 1px dashed #7e7e7e;
  }
}

@media screen and (max-width: 768px) {
  .p-strategy__list--hidden {
    position: relative;
    overflow: hidden;
    transition: ease-in-out, 0.4s;
    padding-bottom: 1.25rem;
  }
}

.p-strategy__list--hidden::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6.25rem;
  background: linear-gradient(to top, #f2f2f2, transparent);
}

.p-strategy__list--hidden.is-open::before {
  content: none;
}

.p-strategy__item + .p-strategy__item {
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-strategy__item + .p-strategy__item {
    margin-top: 1rem;
  }
}

.p-strategy__item a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-strategy__item a {
    align-items: flex-start;
  }
}

.p-strategy__item-title {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  text-decoration: underline;
  transition: ease-in-out, 0.4s;
}
@media screen and (max-width: 768px) {
  .p-strategy__item-title {
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) {
  .p-strategy__item a:hover .p-strategy__item-title {
    color: #ad0026;
  }
}

.p-strategy__toggle {
  position: relative;
  max-width: 8.625rem;
  padding-block: 0.625rem;
  padding-left: 1rem;
  padding-right: 2.25rem;
  border: 1px solid #111111;
  border-radius: 100vh;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  z-index: 1;
}

.p-strategy__toggle::before {
  content: "";
  position: absolute;
  top: 47%;
  right: 1.125rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: solid 0.125rem #111111;
  border-right: solid 0.125rem #111111;
}

.p-strategy__toggle--open {
  position: absolute;
  bottom: 0.125rem;
  left: 50%;
  transform: translateX(-50%);
  background: #f4f4f4;
}

.p-strategy__toggle--open::before {
  transform: translateY(-50%) rotate(135deg);
}

.p-strategy__toggle--close {
  margin-top: 2rem;
  margin-inline: auto;
}

.p-strategy__toggle--close::before {
  top: 57%;
  transform: translateY(-50%) rotate(-45deg);
}

.p-system__inner {
  padding-block: 8.75rem;
}
@media screen and (max-width: 768px) {
  .p-system__inner {
    padding-block: 3.75rem;
  }
}

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

.p-system__list {
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .p-system__list {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-system__item {
  width: calc((100% - 6rem) / 3);
}
@media screen and (max-width: 768px) {
  .p-system__item {
    width: 100%;
  }
}

.p-system__item-title {
  padding-block: 0.5rem;
  padding-inline: 1rem;
  background: #111111;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-system__item-title {
    font-size: 1rem;
  }
}

.p-system__item-text {
  margin-top: 1rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-system__item-text {
    margin-top: 0.75rem;
    font-size: 0.875rem;
  }
}

.p-useful {
  background: #ffffff;
}

.p-useful__inner {
  padding-block: 9.75rem;
}
@media screen and (max-width: 768px) {
  .p-useful__inner {
    padding-top: 5rem;
    padding-bottom: 3.75rem;
  }
}

.p-useful__header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-useful__header {
    gap: 0.75rem;
  }
}

.p-useful__label {
  display: inline-block;
  padding-block: 0.6875rem;
  padding-inline: 1.5rem;
  border: 1px solid #111111;
  border-radius: 100vh;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-useful__label {
    font-size: 1rem;
    padding-block: 0.5rem;
  }
}

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

.p-useful__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 2.25rem;
}
@media screen and (max-width: 768px) {
  .p-useful__list {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-useful__item {
  width: calc((100% - 4.5rem) / 3);
}
@media screen and (max-width: 768px) {
  .p-useful__item {
    width: 100%;
  }
}

.p-useful__item a {
  transition: 0.4s;
}

@media (min-width: 768px) {
  .p-useful__item a:hover {
    opacity: 0.6;
  }
}

.p-useful__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 376/58;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-useful__item img {
    aspect-ratio: 345/53;
  }
}

.p-useful__item-title {
  margin-top: 0.5rem;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-useful__item-title {
    margin-top: 0.25rem;
    font-size: 0.875rem;
  }
}

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

@media screen and (max-width: 768px) {
  .u-md-none {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
