@charset "UTF-8";
html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}

@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.5;
  min-width: 86.1%;
  -webkit-text-size-adjust: none;
}

a {
  transition: all 0.4s;
}
a:hover {
  opacity: 0.7;
}

.c-container {
  margin: 0 auto;
  width: 113rem;
  padding: 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-container {
    width: 100%;
    padding: 0 1.46rem;
  }
}

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

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

/* ------------------------------------------
  ヘッダー
------------------------------------------ */
.l-header {
  background-color: #fff;
  padding: 1.1rem;
  position: sticky;
  top: 0;
  z-index: 99;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 0.3rem 1.02rem;
  }
}

.c-header__contents {
  margin: 0 auto;
  max-width: 105rem;
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
}

.c-header__title {
  display: flex;
  gap: 1.7rem;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-header__title {
    gap: 0.83rem;
  }
}

.c-header__title-img {
  height: 10rem;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 767px) {
  .c-header__title-img {
    max-width: 2.9rem;
    position: unset;
    height: auto;
  }
}

.c-header__title-text {
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: #0b1526;
  padding-left: 9rem;
}
@media screen and (max-width: 767px) {
  .c-header__title-text {
    font-size: 1.22rem;
    padding-left: 0;
  }
}

.c-header__title-text-spbig {
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: #0b1526;
}
@media screen and (max-width: 767px) {
  .c-header__title-text-spbig {
    display: block;
    font-size: 1.81rem;
    line-height: 1;
  }
}

.c-header__info {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .c-header__info {
    display: none;
  }
}

.c-header__info-top {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0b1526;
  font-family: "Noto Sans JP", sans-serif;
}

.c-header__info-middle {
  font-size: 3.44rem;
  color: #0b1526;
  font-family: futura-pt-condensed, sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12rem;
}

.c-header__info-bottom {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03rem;
}

.c-header__nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-header__nav {
    display: flex;
    position: fixed;
    right: 0;
    top: 4.93rem;
    height: calc(100vh - 4.93rem);
    transform: translateX(100%);
    transition: ease 0.3s;
    flex-direction: column;
    background-color: #0b1526;
    padding: 3.93rem 1.46rem;
    overflow: auto;
    z-index: 99;
    width: 29rem;
  }
}

.c-header__nav.active {
  transform: translateX(0);
}

.c-header__nav_list {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-header__nav_list {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .c-header__nav_list_item_menu {
    display: block;
    font-size: 1.56rem;
    color: #fff;
    padding-top: 1.22rem;
    padding-bottom: 1.22rem;
    padding-left: 0.34rem;
    border-bottom: 0.04rem solid #fff;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .c-header__nav_list_item_menu::after {
    position: absolute;
    content: "";
    width: 0.97rem;
    height: 1.27rem;
    bottom: 1.65rem;
    right: 0.34rem;
    background-image: url(../img/icon_header-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}

@media screen and (max-width: 767px) {
  .c-header__nav_list_item:first-child .c-header__nav_list_item_menu {
    padding-top: 0;
  }
}

.c-header__toggle {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-header__toggle {
    display: block;
    width: 4.9rem;
    height: 4.9rem;
    cursor: pointer;
    position: fixed;
    right: 0;
    top: 0;
    pointer-events: all;
    z-index: 999;
  }
  .c-header__toggle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0b1526;
    z-index: -1;
  }
}

@media screen and (max-width: 767px) {
  .c-header__toggle_bar {
    display: block;
    width: 3.08rem;
    height: 0.29rem;
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    transition: 0.2s ease;
  }
  .c-header__toggle_bar:nth-child(1) {
    top: 1.12rem;
  }
  .c-header__toggle_bar:nth-child(2) {
    top: 1.7rem;
  }
  .c-header__toggle_bar:nth-child(3) {
    top: 2.3rem;
  }
}

@media screen and (max-width: 767px) {
  .c-header__toggle_text {
    display: block;
    color: #fff;
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.07rem;
  }
}

@media screen and (max-width: 767px) {
  .c-header__toggle.active .c-header__toggle_bar:nth-child(1) {
    top: 1.5rem;
    transform: translateX(-50%) rotate(45deg);
  }
  .c-header__toggle.active .c-header__toggle_bar:nth-child(2) {
    opacity: 0;
  }
  .c-header__toggle.active .c-header__toggle_bar:nth-child(3) {
    top: 1.5rem;
    transform: translateX(-50%) rotate(-45deg);
  }
}

/* ------------------------------------------
  FV
------------------------------------------ */
.p-top__mv {
  position: relative;
}

.p-top__mv-img {
  width: 100%;
}

.p-top__mv-boxwrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 105rem;
}
@media screen and (max-width: 767px) {
  .p-top__mv-boxwrapper {
    top: 4.5rem;
    transform: translate(-50%, 0);
    width: 100%;
  }
}

.p-top__mv-box {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top__mv-box {
    gap: 1.8rem;
    margin: 0 auto;
    align-items: center;
  }
}

.p-top__mv-box-title {
  font-size: 6.1rem;
  color: #fff;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-top__mv-box-title {
    font-size: 2.9rem;
    text-align: center;
    font-weight: bold;
  }
}

.p-top__mv-box-awards {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top__mv-box-awards {
    gap: 0.97rem;
  }
}

.p-top__mv-box-awards-img {
  max-width: 16.3rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top__mv-box-awards-img {
    max-width: 9rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top__mv-btn {
    position: absolute;
    background-image: url(../img/bg_top-mv-btn.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2.78rem;
    padding: 1.56rem 1.95rem;
    display: flex;
    gap: 0.88rem;
    align-items: center;
    width: 26.3rem;
    font-size: 1.71rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top__mv-btn-arrow {
    max-width: 2.68rem;
    width: 100%;
  }
}

/* ------------------------------------------
  Overview
------------------------------------------ */
.p-top__overview-bg {
  background-image: url(../img/bg_overview.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  height: 57rem;
}
@media screen and (max-width: 767px) {
  .p-top__overview-bg {
    background-position: unset;
    height: auto;
  }
}

.p-top__overview-contents {
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
  display: flex;
  flex-direction: column;
  gap: 5.8rem;
}
@media screen and (max-width: 767px) {
  .p-top__overview-contents {
    gap: 2.44rem;
    padding-bottom: 4.15rem;
  }
}

.p-top__overview-contents-title {
  font-size: 3.7rem;
  color: #0b1526;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__overview-contents-title {
    font-size: 2.5rem;
  }
}

.p-top__overview-contents-text {
  font-size: 2.2rem;
  text-align: center;
  line-height: 3.9rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__overview-contents-text {
    font-size: 1.7rem;
    line-height: normal;
    text-align: left;
  }
}

/* ------------------------------------------
  Advise
------------------------------------------ */
.p-top__advise {
  position: relative;
  scroll-margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-top__advise {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 4.15rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top__advise-heading {
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .p-top__advise-heading-img {
    position: absolute;
    bottom: 0;
    right: 1.07rem;
    width: 11.5rem;
  }
}

.p-top__advise-title {
  background-color: #0b1526;
  color: #fff;
  font-size: 3.5rem;
  padding-top: 3.9rem;
  padding-bottom: 3.9rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__advise-title {
    font-size: 2.2rem;
    padding-top: 3.12rem;
    padding-bottom: 3.12rem;
    text-align: left;
    font-weight: bold;
  }
}

.p-top__advise-title-text {
  display: block;
  transform: translateX(-8rem);
}
@media screen and (max-width: 767px) {
  .p-top__advise-title-text {
    padding-left: 1.75rem;
    transform: none;
  }
}

.p-top__advise-bottom {
  display: flex;
  justify-content: center;
  padding-left: 14rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top__advise-bottom {
    padding-left: 0;
    justify-content: flex-start;
  }
}

.p-top__advise-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-top: 6.6rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .p-top__advise-list {
    padding-left: 2.9rem;
    padding-right: 2.9rem;
    padding-top: 2.49rem;
    padding-bottom: 2.49rem;
  }
}

.p-top__advise-list-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #221815;
  position: relative;
  padding-left: 3.7rem;
}
@media screen and (max-width: 767px) {
  .p-top__advise-list-item {
    font-size: 2rem;
    padding-left: 2.5rem;
  }
}
.p-top__advise-list-item::before {
  position: absolute;
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  top: 1rem;
  background-image: url(../img/img_advise-check.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-top__advise-list-item::before {
    width: 2rem;
    height: 2rem;
    top: 0.5rem;
  }
}
.p-top__advise-list-item .p-top__advise-list-item--red {
  font-size: 2.7rem;
  color: #b70101;
}
@media screen and (max-width: 767px) {
  .p-top__advise-list-item .p-top__advise-list-item--red {
    font-size: 2rem;
  }
}

.p-top__advise-img {
  max-width: 31.6rem;
  width: 100%;
  margin-top: -6rem;
}

/* ------------------------------------------
  Reason
------------------------------------------ */
.p-top__reason {
  scroll-margin-top: 4rem;
}

.p-top__reason-itemtop {
  background-image: url(../img/bg_reason1.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .p-top__reason-itemtop {
    background-image: url(../img/bg_reason1-sp.png);
  }
}

.p-top__reason-item-contents {
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media screen and (max-width: 767px) {
  .p-top__reason-item-contents {
    gap: 4.4rem;
    padding-top: 4.1rem;
    padding-bottom: 4.1rem;
  }
}

.p-top__reason-item-contents-title {
  font-size: 4rem;
  color: #0b1526;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__reason-item-contents-title {
    font-size: 1.95rem;
  }
}
.p-top__reason-item-contents-title .p-top__reason-item-contents-title--big {
  font-size: 6.3rem;
}
@media screen and (max-width: 767px) {
  .p-top__reason-item-contents-title .p-top__reason-item-contents-title--big {
    font-size: 3.08rem;
  }
}

.p-top__reason-item-contents-details {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top__reason-item-contents-details {
    flex-direction: column;
    width: 30.7rem;
    margin: 0 auto;
    gap: 2.44rem;
  }
}

.p-top__reason-item:nth-child(even) .p-top__reason-item-contents-details {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-top__reason-item:nth-child(even) .p-top__reason-item-contents-details {
    flex-direction: column;
  }
}

.p-top__reason-item-contents-details-content {
  display: flex;
  flex-direction: column;
  gap: 3.9rem;
}
@media screen and (max-width: 767px) {
  .p-top__reason-item-contents-details-content {
    gap: 2.2rem;
  }
}

.p-top__reason-item-contents-details-img {
  max-width: 50rem;
  width: 100%;
}

.p-top__reason-item-contents-details-textbox-title {
  font-size: 4.3rem;
  color: #0b1526;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-top__reason-item-contents-details-textbox-title {
    font-size: 2.5rem;
  }
}

.p-top__reason-item-contents-details-textbox-textbox {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top__reason-item-contents-details-textbox-textbox {
    gap: 0.88rem;
  }
}

.p-top__reason-item-contents-details-textbox-textbox-text {
  font-size: 2rem;
  color: #0b1526;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__reason-item-contents-details-textbox-textbox-text {
    font-size: 1.7rem;
  }
}

.p-top__reason-itemmiddle {
  background-image: url(../img/bg_reason2.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .p-top__reason-itemmiddle {
    background-image: url(../img/bg_reason2-sp.png);
  }
}

.p-top__reason-item-contents-details-textbox-textbox-imgbox {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.p-top__reason-item-contents-details-textbox-textbox-imgbox-title {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__reason-item-contents-details-textbox-textbox-imgbox-title {
    font-size: 1.7rem;
    padding-top: 3rem;
    text-align: center;
  }
}

.p-top__reason-item-contents-details-textbox-textbox-imgbox-img {
  width: 100%;
}

.p-top__reason-item-contents-details-textbox-textbox-imgbox-text {
  font-size: 1.6rem;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-top__reason-item-contents-details-textbox-textbox-imgbox-text {
    font-size: 0.97rem;
  }
}

.p-top__reason-item-contents-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.p-top__reason-item-contents-bottom-title {
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__reason-item-contents-bottom-title {
    font-size: 1.7rem;
    text-align: center;
  }
}

.p-top__reason-item-contents-bottom-table {
  border-collapse: collapse;
  border: 0.1rem solid #0e050a;
}

.p-top__reason-item-contents-bottom-table-line-title {
  font-size: 2.1rem;
  background-color: #0e265a;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  border-right: 0.1rem solid #fff;
  height: 5.2rem;
  vertical-align: middle;
  width: 27.2rem;
}
@media screen and (max-width: 767px) {
  .p-top__reason-item-contents-bottom-table-line-title {
    width: 9.14rem;
    height: 3.42rem;
    font-size: 1.07rem;
  }
}
.p-top__reason-item-contents-bottom-table-line-title:nth-child(2) {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .p-top__reason-item-contents-bottom-table-line-title:nth-child(2) {
    font-size: 1.07rem;
  }
}
.p-top__reason-item-contents-bottom-table-line-title:last-child {
  border-right: none;
}

.p-top__reason-item-contents-bottom-table-line-content {
  color: #221815;
  font-size: 1.9rem;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  vertical-align: middle;
  border-right: 0.1rem solid #0e050a;
  border-bottom: 0.1rem solid #0e050a;
  height: 5.2rem;
  line-height: 1.3;
  width: 27.2rem;
}
@media screen and (max-width: 767px) {
  .p-top__reason-item-contents-bottom-table-line-content {
    width: 9.14rem;
    height: 3.42rem;
    font-size: 0.83rem;
  }
}
.p-top__reason-item-contents-bottom-table-line-content:first-child {
  font-size: 2.1rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-top__reason-item-contents-bottom-table-line-content:first-child {
    font-size: 1.2rem;
  }
}
.p-top__reason-item-contents-bottom-table-line-content:last-child {
  border-right: none;
}
.p-top__reason-item-contents-bottom-table-line-content:nth-child(2) {
  background-color: #fffbcc;
}
.p-top__reason-item-contents-bottom-table-line-content .p-top__reason-item-contents-bottom-table-line-content--red {
  color: #b70101;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-top__reason-item-contents-bottom-table-line-content .p-top__reason-item-contents-bottom-table-line-content--red {
    font-size: 1.17rem;
  }
}
.p-top__reason-item-contents-bottom-table-line-content .p-top__reason-item-contents-bottom-table-line-content--small {
  font-size: 1rem;
}

.p-top__reason-item-contents-bottom-img {
  width: 100%;
}

.p-top__reason-itembottom {
  background-image: url(../img/bg_reason3.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .p-top__reason-itembottom {
    background-image: url(../img/bg_reason3-sp.png);
  }
}

/* ------------------------------------------
  Features
------------------------------------------ */
.p-top__features {
  background-image: url(../img/bg_features.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  scroll-margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top__features {
    background-image: url(../img/bg_features-sp.png);
  }
}

.p-top__features-contents {
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
  flex-direction: column;
  gap: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-top__features-contents {
    gap: 4.25rem;
    padding-top: 4.1rem;
    padding-bottom: 4.1rem;
  }
}

.p-top__features-contents-title {
  font-size: 6rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__features-contents-title {
    font-size: 2.93rem;
  }
}

.p-top__features-contents-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-top__features-contents-details {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-top__features-contents-details-card {
  background-color: #fff;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.p-top__features-contents-details-card-img {
  max-width: 9.6rem;
  margin: 0 auto;
  height: 10rem;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-top__features-contents-details-card-img {
    max-width: 10.8rem;
    height: 10.8rem;
  }
}

.p-top__features-contents-details-card-title {
  font-size: 3.5rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  line-height: 4.5rem;
  height: 14.5rem;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top__features-contents-details-card-title {
    font-size: 2rem;
    height: auto;
    line-height: normal;
  }
}

.p-top__features-contents-details-card-text {
  font-size: 1.9rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__features-contents-details-card-text {
    font-size: 1.7rem;
  }
}

/* ------------------------------------------
  Result
------------------------------------------ */
.p-top__result {
  background-image: url(../img/bg_result.png);
  background-repeat: no-repeat;
  background-size: cover;
  scroll-margin-top: 3rem;
}

.p-top__result-contents {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-top__result-contents {
    padding-top: 5.37rem;
    padding-bottom: 5.37rem;
  }
}

.p-top__result-contents-title {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-bottom: 4.2rem;
}
@media screen and (max-width: 767px) {
  .p-top__result-contents-title {
    font-size: 1.95rem;
    margin-bottom: 3.91rem;
  }
}
.p-top__result-contents-title .p-top__result-contents-title--big {
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top__result-contents-title .p-top__result-contents-title--big {
    font-size: 3.17rem;
  }
}

.p-top__result-contents-slider {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top__result-contents-slider {
    margin-bottom: 0.78rem;
  }
}

.p-top__result-contents-slide {
  position: relative;
  margin: 0 1rem;
  max-width: 38rem;
  height: 32rem;
}
@media screen and (max-width: 767px) {
  .p-top__result-contents-slide {
    margin: 0 0.73rem;
    max-width: 25.8rem;
    height: 21.7rem;
  }
}

.p-top__result-contents-slide-text {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  background-color: #3e3a39;
  padding: 0.6rem;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__result-contents-slide-text {
    font-size: 1.15rem;
    padding: 0.39rem;
  }
}

.p-top__result-contents-slide-img {
  width: 100%;
  object-fit: cover;
  height: 32rem;
}
@media screen and (max-width: 767px) {
  .p-top__result-contents-slide-img {
    height: 21.7rem;
  }
}

.p-top__result-contents-slide-name {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  background-color: rgba(11, 21, 38, 0.5);
  padding: 1.4rem 1.8rem;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__result-contents-slide-name {
    font-size: 1.17rem;
    padding: 0.92rem;
  }
}

.p-top__result-contents-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.prev-arrow,
.next-arrow {
  display: block;
  width: 16.2rem;
  height: 3rem;
  border-radius: 999.9rem;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .prev-arrow,
  .next-arrow {
    width: 10rem;
  }
}

.prev-arrow {
  transform: rotateY(180deg);
  left: 0.5rem;
}

.next-arrow {
  right: 0.5rem;
}

.prev-arrow::before,
.next-arrow::before {
  content: "";
  position: absolute;
  top: 2.7rem;
  right: 0;
  width: 4.5rem;
  height: 0.2rem;
  border-radius: 999.9rem;
  background-color: #fff;
  transform: rotate(30deg);
  transform-origin: calc(100% - 0.1rem) 50%;
}
@media screen and (max-width: 767px) {
  .prev-arrow::before,
  .next-arrow::before {
    width: 3rem;
  }
}

.prev-arrow::after,
.next-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 16.2rem;
  height: 0.2rem;
  border-radius: 999.9rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .prev-arrow::after,
  .next-arrow::after {
    width: 10rem;
  }
}

.p-top__result-bottom {
  display: flex;
  flex-direction: column;
  gap: 5.7rem;
}
@media screen and (max-width: 767px) {
  .p-top__result-bottom {
    gap: 2.64rem;
  }
}

.p-top__result-bottom-title {
  font-size: 4.7rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__result-bottom-title {
    font-size: 2.2rem;
  }
}

.p-top__result-bottom-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-top__result-bottom-details {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 5.37rem;
    gap: 2.44rem;
  }
}

.p-top__result-bottom-details-card {
  background-image: url(../img/bg_result-card.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 3.4rem 3.4rem 3.4rem 4.4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top__result-bottom-details-card {
    padding: 1.8rem 1.8rem 1.8rem 2.8rem;
    gap: 1.9rem;
  }
}

.p-top__result-bottom-details-card-title {
  font-size: 2.7rem;
  color: #0b1526;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__result-bottom-details-card-title {
    font-size: 1.9rem;
  }
}

.p-top__result-bottom-details-card-title-underline {
  background: linear-gradient(transparent 60%, #fff9b1 30%);
}

.p-top__result-bottom-details-card-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top__result-bottom-details-card-content {
    gap: 1.17rem;
  }
}

.p-top__result-bottom-details-card-content-img {
  max-width: 6.8rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top__result-bottom-details-card-content-img {
    max-width: 5rem;
  }
}

.p-top__result-bottom-details-card-content-text {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #0b1526;
}
@media screen and (max-width: 767px) {
  .p-top__result-bottom-details-card-content-text {
    font-size: 1.7rem;
  }
}

/* ------------------------------------------
  Price
------------------------------------------ */
.p-top__price {
  background-color: #f5f6f7;
}

.p-top__price-contents {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents {
    padding-top: 5.37rem;
    padding-bottom: 5.37rem;
    gap: 4.44rem;
  }
}

.p-top__price-contents-title {
  font-size: 6rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-title {
    font-size: 3.17rem;
  }
}

.p-top__price-contents-details {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details {
    gap: 0;
  }
}

.p-top__price-contents-details-text {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #0b1526;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-text {
    font-size: 1.7rem;
    margin-bottom: 3.61rem;
  }
}

.p-top__price-contents-details-middle {
  display: flex;
  gap: 3rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-middle {
    flex-direction: column;
    gap: 2.59rem;
    margin-bottom: 3.61rem;
  }
}

.p-top__price-contents-details-middle-left {
  position: relative;
}

.p-top__price-contents-details-middle-left-title {
  font-size: 1.7rem;
  color: #fff;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  padding: 1.4rem 6.7rem 1.4rem 1.4rem;
  position: absolute;
  top: -2.4rem;
  background-image: url(../img/bg_price-black-label.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-middle-left-title {
    font-size: 1.6rem;
    padding: 0.48rem 1.71rem 0.48rem 0.48rem;
    top: -1.6rem;
  }
}
.p-top__price-contents-details-middle-left-title .p-top__price-contents-details-middle-left-title--big {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-middle-left-title .p-top__price-contents-details-middle-left-title--big {
    font-size: 1.9rem;
  }
}

.p-top__price-contents-details-middle-left-img {
  width: 100%;
  max-width: 70rem;
}

.p-top__price-contents-details-middle-table {
  border-collapse: collapse;
  border: 0.1rem solid #0b1526;
}

.p-top__price-contents-details-middle-table-line-title {
  font-size: 1.6rem;
  color: #fff;
  background-color: #0b1526;
  text-align: center;
  padding: 1.46rem 0.8rem;
  border-bottom: 0.1rem solid #fff;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-middle-table-line-title {
    font-size: 1.22rem;
    padding: 0.83rem 1rem;
  }
}

.p-top__price-contents-details-middle-table-line:last-child .p-top__price-contents-details-middle-table-line-title {
  border-bottom: none;
}

.p-top__price-contents-details-middle-table-line-text {
  font-size: 1.6rem;
  color: #0b1526;
  vertical-align: middle;
  background-color: #fff;
  border-bottom: 0.1rem solid #0b1526;
  width: 12rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-middle-table-line-text {
    font-size: 1.4rem;
    width: 10.6rem;
  }
}

.p-top__price-contents-details-middle-table-line:last-child .p-top__price-contents-details-middle-table-line-text {
  border-bottom: none;
}

.p-top__price-contents-details-middle-table-line-text-span {
  width: fit-content;
  margin: 0 auto;
  display: block;
}

.p-top__price-contents-details-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-bottom {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-top__price-contents-details-bottom-card {
  position: relative;
  background-color: #fff;
  border: 0.1rem solid #0b1526;
  padding: 5.4rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-bottom-card {
    padding: 4.05rem 1.46rem 1.46rem;
    gap: 1.46rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-bottom-card:last-child {
    margin-bottom: 1.805rem;
  }
}

.p-top__price-contents-details-bottom-card-title {
  font-size: 2.7rem;
  color: #fff;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  gap: 2.3rem;
  align-items: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: fit-content;
  padding: 1.1rem 6.7rem 1.1rem 2.9rem;
  position: absolute;
  top: -2.4rem;
  left: -0.2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-bottom-card-title {
    font-size: 1.71rem;
    padding: 0.68rem 3.96rem 0.68rem 1.8rem;
    top: -1.8rem;
  }
}
.p-top__price-contents-details-bottom-card-title .p-top__price-contents-details-bottom-card-title--small {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-bottom-card-title .p-top__price-contents-details-bottom-card-title--small {
    font-size: 1.46rem;
  }
}

.p-top__price-contents-details-bottom-card-img {
  max-width: 26.6rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-bottom-card-img {
    max-width: 21rem;
  }
}

.p-top__price-contents-details-bottom-card-text {
  font-size: 1.8rem;
  color: #0b1526;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-bottom-card-text {
    font-size: 1.7rem;
  }
}

.p-top__price-contents-details-bottom-card-table {
  border-collapse: collapse;
  border: 0.1rem solid #0b1526;
}

.p-top__price-contents-details-bottom-card-table-line-title {
  font-size: 1.6rem;
  color: #fff;
  background-color: #0b1526;
  text-align: center;
  padding: 1.46rem 0.8rem;
  border-bottom: 0.1rem solid #fff;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-bottom-card-table-line-title {
    font-size: 1.4rem;
    padding: 0.83rem 1.02rem;
  }
}

.p-top__price-contents-details-bottom-card-table-line:last-child .p-top__price-contents-details-bottom-card-table-line-title {
  border-bottom: none;
}

.p-top__price-contents-details-bottom-card-table-line-text {
  font-size: 1.6rem;
  color: #0b1526;
  vertical-align: middle;
  background-color: #fff;
  border-bottom: 0.1rem solid #0b1526;
  width: 12rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-bottom-card-table-line-text {
    font-size: 1.4rem;
  }
}
.p-top__price-contents-details-bottom-card-table-line-text .p-top__price-contents-details-bottom-card-table-line-text-span {
  width: fit-content;
  margin: 0 auto;
  display: block;
}

.p-top__price-contents-details-bottom-card-table-line:last-child .p-top__price-contents-details-bottom-card-table-line-text {
  border-bottom: none;
}

.p-top__price-contents-details-bottom-card-check {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-bottom-card-check {
    gap: 0.92rem;
  }
}

.p-top__price-contents-details-bottom-card-check-title {
  font-size: 2rem;
  color: #0b1526;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  padding: 0.8rem 4rem 0.8rem 1.6rem;
  background-color: #e1e3e5;
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-bottom-card-check-title {
    font-size: 1.61rem;
    padding: 0.63rem 3.86rem 0.63rem 0.88rem;
  }
}
.p-top__price-contents-details-bottom-card-check-title::after {
  position: absolute;
  content: "";
  right: -0.3rem;
  top: -0.7rem;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 4rem transparent;
  border-bottom: solid 6rem #fff;
  z-index: 0;
}

.p-top__price-contents-details-bottom-card-check-list {
  display: flex;
  flex-direction: column;
}

.p-top__price-contents-details-bottom-card-check-list-item {
  font-size: 1.9rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  padding-left: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-bottom-card-check-list-item {
    font-size: 1.46rem;
  }
}

.p-top__price-contents-details-bottom-card-title-redlabel {
  background-image: url(../img/bg_price-red-label.png);
}

.p-top__price-contents-details-bottom-card-title-blacklabel {
  background-image: url(../img/bg_price-black-label.png);
}

.p-top__price-contents-details-list-item {
  font-size: 1.7rem;
  color: #0b1526;
  font-family: "Noto Sans JP", sans-serif;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-top__price-contents-details-list-item {
    font-size: 1.2rem;
  }
}

/* ------------------------------------------
  Flow
------------------------------------------ */
.p-top__flow {
  background-color: #f5f6f7;
  display: flex;
  flex-direction: column;
  gap: 7.9rem;
  padding-bottom: 10rem;
  scroll-margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top__flow {
    gap: 4.4rem;
    padding-bottom: 5.37rem;
  }
}

.p-top__flow-title {
  background-image: url(../img/bg_flow-title.png);
  background-repeat: no-repeat;
  background-size: 100%;
  font-size: 6rem;
  color: #fff;
  text-align: center;
  padding: 10rem 0 15rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-top__flow-title {
    background-image: url(../img/bg_flow-title-sp.png);
    font-size: 3.17rem;
    padding: 3rem 0 5rem;
  }
}

.p-top__flow-details {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
@media screen and (max-width: 767px) {
  .p-top__flow-details {
    padding: 0 2.93rem;
  }
}

.p-top__flow-details-item {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 0.1rem solid #e6e9ee;
}
@media screen and (max-width: 767px) {
  .p-top__flow-details-item {
    flex-direction: column;
  }
}

.p-top__flow-details-item-step {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -4.5rem;
  border-radius: 50%;
  width: 9rem;
  height: 9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #0b1526;
  color: #fff;
  font-size: 2.3rem;
  font-family: futura-pt-condensed, sans-serif;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top__flow-details-item-step {
    top: 1.5rem;
    left: -1.44rem;
    width: 5.28rem;
    height: 5.28rem;
    font-size: 1.36rem;
  }
}
.p-top__flow-details-item-step .p-top__flow-details-item-step--big {
  font-size: 4.1rem;
  font-family: futura-pt-condensed, sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top__flow-details-item-step .p-top__flow-details-item-step--big {
    font-size: 2.49rem;
  }
}

.p-top__flow-details-item-img {
  max-width: 27rem;
  width: 100%;
  height: 23rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top__flow-details-item-img {
    max-width: 22.4rem;
    margin: 0 auto;
    height: auto;
  }
}

.p-top__flow-details-item-contents {
  padding: 3rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-top__flow-details-item-contents {
    padding: 1.36rem 1.46rem;
    display: flex;
    flex-direction: column;
    gap: 2.1rem;
  }
}

.p-top__flow-details-item-contents-title {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__flow-details-item-contents-title {
    font-size: 1.76rem;
    padding-left: 2.88rem;
  }
}

.p-top__flow-details-item-contents-text {
  font-size: 2rem;
  color: #0b1526;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__flow-details-item-contents-text {
    font-size: 1.4rem;
  }
}

.p-top__flow-details-item-contents-textbox-list {
  padding-left: 1em;
  display: flex;
  flex-wrap: wrap;
  width: 51.3rem;
  gap: 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-top__flow-details-item-contents-textbox-list {
    padding-left: 0;
    width: 100%;
    gap: 0 1rem;
  }
}

.p-top__flow-details-item-contents-textbox-list-item {
  font-size: 2rem;
  color: #0b1526;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__flow-details-item-contents-textbox-list-item {
    font-size: 1.4rem;
  }
}

.p-top__flow-details-arrow {
  max-width: 6rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top__flow-details-arrow {
    max-width: 6.3rem;
  }
}

/* ------------------------------------------
  Message
------------------------------------------ */
.p-top__message {
  background-image: url(../img/bg_message.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
  flex-direction: column;
  gap: 6.7rem;
  scroll-margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top__message {
    padding-top: 5.37rem;
    padding-bottom: 5.37rem;
    gap: 1.85rem;
    background-image: url(../img/bg_message-sp.png);
  }
}

.p-top__message__contents {
  display: flex;
  gap: 5.4rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top__message__contents {
    flex-direction: column;
  }
}

.p-top__message__contents-details {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top__message__contents-details {
    gap: 1.85rem;
  }
}

.p-top__message__contents-details-title {
  font-size: 4.3rem;
  color: #0b1526;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-top__message__contents-details-title {
    font-size: 3.03rem;
    text-align: center;
  }
}

.p-top__message__contents-details-catch {
  font-size: 2.7rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #0b1526;
}
@media screen and (max-width: 767px) {
  .p-top__message__contents-details-catch {
    font-size: 1.8rem;
  }
}

.p-top__message__contents-details-textbox {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.p-top__message__contents-details-textbox-text {
  font-size: 2rem;
  color: #0b1526;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__message__contents-details-textbox-text {
    font-size: 1.7rem;
  }
}

.p-top__message__contents-img {
  max-width: 40.8rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top__message__contents-img {
    max-width: 22.5rem;
    margin: 0 auto;
  }
}

.p-top__message-name {
  font-size: 2.7rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #0b1526;
}
@media screen and (max-width: 767px) {
  .p-top__message-name {
    font-size: 1.7rem;
    text-align: right;
  }
}

/* ------------------------------------------
  Option
------------------------------------------ */
.p-top__option {
  background-image: url(../img/bg_option.png);
  background-repeat: no-repeat;
  background-size: cover;
  scroll-margin-top: 3rem;
}

.p-top__option-contents {
  display: flex;
  flex-direction: column;
  gap: 4.4rem;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-top__option-contents {
    padding-top: 5.37rem;
    padding-bottom: 5.37rem;
    gap: 3.27rem;
  }
}

.p-top__option-contents-heading {
  display: flex;
  flex-direction: column;
  gap: 3.7rem;
}

.p-top__option-contents-heading-title {
  font-size: 6rem;
  font-weight: bold;
  text-align: center;
  color: #0b1526;
}
@media screen and (max-width: 767px) {
  .p-top__option-contents-heading-title {
    font-size: 3.03rem;
  }
}

.p-top__option-contents-heading-text {
  font-size: 2.3rem;
  font-weight: bold;
  color: #0b1526;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__option-contents-heading-text {
    font-size: 1.7rem;
    text-align: left;
  }
}

.p-top__option-contents-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top__option-contents-details {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-top__option-contents-details-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top__option-contents-details-card {
    gap: 1.46rem;
  }
}

.p-top__option-contents-details-card-img {
  max-width: 33.8rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top__option-contents-details-card-img {
    max-width: 24.3rem;
    margin: 0 auto;
  }
}

.p-top__option-contents-details-card-title {
  font-size: 2.3rem;
  color: #0b1526;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__option-contents-details-card-title {
    font-size: 2rem;
  }
}

.p-top__option-contents-details-card-text {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__option-contents-details-card-text {
    font-size: 1.7rem;
  }
}

/* ------------------------------------------
  Contact
------------------------------------------ */
.p-top__contact {
  background-color: #0b1526;
  scroll-margin-top: 3rem;
}
.p-top__contact--thanks {
  height: 100vh;
}

.p-top__contact-contents {
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-top__contact-contents {
    padding-top: 5.37rem;
    padding-bottom: 5.37rem;
    gap: 3.27rem;
  }
}
.p-top__contact-contents--confirm {
  max-width: 80rem;
}

.p-top__contact-contents-heading {
  display: flex;
  flex-direction: column;
  gap: 10.2rem;
}
@media screen and (max-width: 767px) {
  .p-top__contact-contents-heading {
    gap: 3.7rem;
  }
}

.p-top__contact-contents-heading-title {
  font-size: 6rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__contact-contents-heading-title {
    font-size: 2.9rem;
  }
}

.p-top__contact-contents-heading-text {
  font-size: 2.3rem;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__contact-contents-heading-text {
    font-size: 1.56rem;
    text-align: left;
  }
}

.p-top__contact-contents-form {
  display: flex;
  flex-direction: column;
}

.p-top__contact-contents-form-line {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-top__contact-contents-form-line {
    gap: 1rem;
    margin-bottom: 4rem;
  }
}
.p-top__contact-contents-form-line:last-of-type {
  margin-bottom: 0.8rem;
}

.p-top__contact-contents-form-line-title {
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__contact-contents-form-line-title {
    font-size: 1.6rem;
  }
}
.p-top__contact-contents-form-line-title .p-top__contact-contents-form-line-title-red {
  color: #b70101;
}

.p-top__contact-contents-form-line-wrapper {
  position: relative;
}
.p-top__contact-contents-form-line-wrapper::after {
  content: "";
  position: absolute;
  top: 2.5rem;
  right: 2.4rem;
  border-right: 1.2rem solid transparent;
  border-left: 1.2rem solid transparent;
  border-top: 1.2rem solid #0b1526;
  border-bottom: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top__contact-contents-form-line-wrapper::after {
    top: 50%;
    transform: translateY(-50%);
    right: 1.5rem;
    border-right: 0.6rem solid transparent;
    border-left: 0.6rem solid transparent;
    border-top: 0.6rem solid #0b1526;
  }
}

.p-top__contact-contents-form-line-wrapper-select {
  width: 100%;
  background-color: #fff;
  height: 6rem;
  border-radius: 0.4rem;
  padding: 0 2.4rem;
  font-size: 1.6rem;
  -webkit-appearance: none;
  appearance: none;
}
@media screen and (max-width: 767px) {
  .p-top__contact-contents-form-line-wrapper-select {
    height: 5rem;
    padding: 0 1.5rem;
    font-size: 1.76rem;
  }
}

.p-top__contact-contents-form-line-input {
  width: 100%;
  background-color: #fff;
  height: 6rem;
  border-radius: 0.4rem;
  padding: 0 2.4rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-top__contact-contents-form-line-input {
    height: 5rem;
    padding: 0 1.5rem;
    font-size: 1.76rem;
  }
}

.p-top__contact-contents-form-line-textarea {
  width: 100%;
  height: 31.6rem;
  background-color: #fff;
  font-size: 1.6rem;
  padding: 2.4rem;
  border-radius: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-top__contact-contents-form-line-textarea {
    height: 20rem;
    padding: 1.5rem;
    font-size: 1.76rem;
  }
}

.p-top__contact-contents-form-note {
  font-size: 1.6rem;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-top__contact-contents-form-note {
    font-size: 1.2rem;
    margin-bottom: 5rem;
  }
}

.p-top__contact-contents-form-note-link {
  text-decoration: underline;
}

.p-top__contact-contents-form-submit {
  background-color: #fff;
  padding: 2rem;
  font-size: 2rem;
  width: 29.5rem;
  text-align: center;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__contact-contents-form-submit {
    font-size: 1.5rem;
    padding: 1.5rem;
    width: 20rem;
  }
}
.p-top__contact-contents-form-submit--confirm {
  margin-top: 5rem;
}

.p-top__contact-error {
  color: #b70101;
  font-family: "Noto Sans JP", sans-serif;
}

.p-top__contact-contents-form-line-confirm {
  font-size: 1.8rem;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  border-top: #fff 1px solid;
  padding-top: 1.6rem;
}

.p-top__contact-contents-form-back {
  margin-top: 4rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29.5rem;
  font-size: 1.8rem;
  height: 4rem;
  font-family: "Noto Sans JP", sans-serif;
  border: #fff 1px solid;
}
@media screen and (max-width: 767px) {
  .p-top__contact-contents-form-back {
    width: 20rem;
  }
}

/* ------------------------------------------
  Info
------------------------------------------ */
.p-top__info {
  background-color: #f5f6f7;
  scroll-margin-top: 4rem;
}

.p-top__info-contents {
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
  gap: 2.4rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top__info-contents {
    padding-top: 5.37rem;
    padding-bottom: 5.37rem;
    flex-direction: column;
  }
}

.p-top__info-contents-img {
  max-width: 55.8rem;
}
@media screen and (max-width: 767px) {
  .p-top__info-contents-img {
    max-width: none;
    width: 100%;
  }
}

.p-top__info-contents-details {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}

.p-top__info-contents-details-top-line {
  display: flex;
  border-top: 0.1rem solid #0b1526;
  padding: 2rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-top__info-contents-details-top-line {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }
}
.p-top__info-contents-details-top-line:last-child {
  border-bottom: 0.1rem solid #0b1526;
}

.p-top__info-contents-details-top-line-title {
  font-size: 1.8rem;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .p-top__info-contents-details-top-line-title {
    font-size: 1.5rem;
  }
}

.p-top__info-contents-details-top-line-text {
  font-size: 1.6rem;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .p-top__info-contents-details-top-line-text {
    font-size: 1.4rem;
  }
}

.p-top__info-contents-details-bottom {
  display: flex;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-top__info-contents-details-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

.p-top__info-contents-details-bottom-text {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #0b1526;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top__info-contents-details-bottom-text {
    font-size: 1.8rem;
  }
}

.p-top__info-contents-details-bottom-list {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top__info-contents-details-bottom-list {
    justify-content: center;
  }
}

.p-top__info-contents-details-bottom-list-item-img {
  max-width: 7.1rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top__info-contents-details-bottom-list-item-img {
    max-width: 5rem;
  }
}

iframe {
  width: 100%;
  height: 50.7rem;
}
@media screen and (max-width: 767px) {
  iframe {
    height: 30rem;
  }
}

/* ------------------------------------------
  固定バナー
------------------------------------------ */
.p-top__banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 2.3rem;
  background-color: rgba(11, 21, 38, 0.5);
}
@media screen and (max-width: 767px) {
  .p-top__banner {
    padding: 0.5rem;
  }
}

.p-top__banner-contents {
  display: flex;
  gap: 3.1rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top__banner-contents {
    gap: 1.32rem;
  }
}

.p-top__banner-contents-btn {
  padding: 1.4rem 1.8rem 1.4rem 5.4rem;
  background-color: #0b1526;
  border: 0.1rem solid #fff;
  border-radius: 0.8rem;
  font-size: 1.9rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__banner-contents-btn {
    font-size: 1.4rem;
    padding: 0rem 0.95rem 0rem 3.5rem;
    height: 3.3rem;
    line-height: 3rem;
  }
}

.p-top__banner-contents-contact::before {
  position: absolute;
  content: "";
  width: 2.8rem;
  height: 2.8rem;
  top: 50%;
  left: 1.8rem;
  transform: translateY(-50%);
  background-image: url(../img/icon_mail.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-top__banner-contents-contact::before {
    width: 1.56rem;
    height: 1.56rem;
    left: 1.2rem;
  }
}

.p-top__banner-contents-tel::before {
  position: absolute;
  content: "";
  width: 2.8rem;
  height: 2.8rem;
  top: 50%;
  left: 1.8rem;
  transform: translateY(-50%);
  background-image: url(../img/icon_tel.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-top__banner-contents-tel::before {
    width: 1.56rem;
    height: 1.56rem;
    left: 1.2rem;
  }
}

.p-top__banner-contents-line::before {
  position: absolute;
  content: "";
  width: 2.8rem;
  height: 2.8rem;
  top: 50%;
  left: 1.8rem;
  transform: translateY(-50%);
  background-image: url(../img/icon_line-green.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-top__banner-contents-line::before {
    content: none;
  }
}

@media screen and (max-width: 767px) {
  .p-top__banner-contents-line-img {
    height: 3.3rem;
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */