@charset "UTF-8";
html {
  scroll-behavior: smooth;
}
@media screen and (max-width: 1439px) and (min-width: 767px) {
  html {
    font-size: min(1600 / 1440 * 1vw, 18px);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: clamp(12px, 1600 / 375 * 1vw, 16px);
  }
}

body {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  font-size: max(12px, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.875rem;
    line-height: 160%;
  }
}

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

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

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

button {
  color: inherit;
  background: transparent;
}

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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

.l-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}

.l-header--start {
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header--start {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
  }
}

.l-header--fixed {
  translate: 0 -100%;
  transition: translate 0.5s ease;
}
.l-header--fixed.js-scroll {
  translate: 0;
}

.l-header__top {
  padding-block: 1rem 0;
}
@media screen and (max-width: 767px) {
  .l-header__top {
    height: 3.25rem;
    padding-block: 0;
  }
}

.l-header__top-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__top-wrap {
    height: 100%;
  }
}

.l-header__logo {
  width: 23rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 14.5rem;
  }
}
@media (any-hover: hover) {
  .l-header__logo:hover {
    opacity: 0.7;
  }
}

.l-header__bottom {
  padding-block: 0.9375rem 0.875rem;
  text-align: center;
}

.l-header__list {
  padding-block: 0.625rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.l-header__list li {
  position: relative;
}
.l-header__list li::before {
  content: "";
  position: absolute;
  width: 0.125rem;
  height: 1rem;
  background: #F18500;
  top: 50%;
  translate: 0 -50%;
  left: 0;
}
.l-header__list li:last-of-type::after {
  content: "";
  position: absolute;
  width: 0.125rem;
  height: 1rem;
  background: #F18500;
  top: 50%;
  translate: 0 -50%;
  right: 0;
}
.l-header__list li a {
  color: #0A376C;
  width: 100%;
}
@media (any-hover: hover) {
  .l-header__list li a:hover {
    opacity: 0.7;
  }
}

.l-drawer__icon {
  position: relative;
  z-index: 102;
  width: 24px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.l-drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #0A376C;
  transition: all 0.5s ease;
}

.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 7.5px;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
}

.l-drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: min(100%, 400px);
  height: 100vh;
  height: 100svh;
  background: #fff;
  overflow-y: scroll;
  translate: 101%;
  transition: translate 0.5s ease;
}
.l-drawer.js-show {
  translate: 0;
}

.l-drawer__inner {
  width: 100%;
  height: fit-content;
  padding: 55px 20px 76px;
}

.l-drawer__list {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.l-drawer__list li a {
  color: #0A376C;
  font-size: 16px;
  font-weight: 500;
  padding-block: 22px;
  border-bottom: 1px solid #BBBBBB;
  width: 100%;
}

.l-wrapper {
  margin-block: 5rem 6.25rem;
  display: grid;
  grid-template-columns: 18.125rem 1fr;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    margin-block: 3.125rem;
    display: flex;
    flex-direction: column-reverse;
    gap: 6.25rem;
  }
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: inherit;
  padding: 0 10.625rem;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .l-inner {
    padding: 0 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 550px;
    padding: 0 1.25rem;
  }
}

.l-footer__top {
  padding-block: 3.75rem 3.125rem;
  background: #DFF3FF;
}
@media screen and (max-width: 767px) {
  .l-footer__top {
    padding-block: 1.875rem;
  }
}

.l-footer__top-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-footer__top-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.875rem;
  }
}

.l-footer__logo {
  width: 23rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 14.5rem;
  }
}
@media (any-hover: hover) {
  .l-footer__logo:hover {
    opacity: 0.7;
  }
}

.l-footer__bottom {
  padding-block: 1.25rem 0.625rem;
  background: #0A376C;
  color: #fff;
  text-align: center;
}

.l-footer__list {
  padding-block: 0.625rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 767px) {
  .l-footer__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.1875rem;
    place-items: start;
  }
}
.l-footer__list li {
  position: relative;
}
.l-footer__list li::before {
  content: "";
  position: absolute;
  width: 0.0625rem;
  height: 1rem;
  background: #fff;
  top: 50%;
  translate: 0 -50%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-footer__list li::before {
    display: none;
  }
}
.l-footer__list li:last-of-type::after {
  content: "";
  position: absolute;
  width: 0.0625rem;
  height: 1rem;
  background: #fff;
  top: 50%;
  translate: 0 -50%;
  right: 0;
}
@media screen and (max-width: 767px) {
  .l-footer__list li:last-of-type::after {
    display: none;
  }
}
.l-footer__list li a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-footer__list li a:hover {
    opacity: 0.7;
  }
}

.l-footer__copyright {
  display: block;
  margin-top: 1.5625rem;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.004em;
}

.l-section {
  margin-top: 6.25rem;
}

.l-sidebar {
  display: block;
}

.l-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.l-sidebar__link {
  width: 100%;
  padding: 1.5rem 0.9375rem;
  background: url("../img/bg_blue.png") no-repeat center center/cover;
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 100%;
  display: block;
}
@media (any-hover: hover) {
  .l-sidebar__link:hover {
    opacity: 0.7;
  }
}
.l-sidebar__link.--title {
  pointer-events: none;
}

.l-sidebar__sub-list {
  border: 0.0625rem solid #046EB2;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-sidebar__sub-list {
    padding: 0 2.5rem;
  }
}
.l-sidebar__sub-list li:last-child .l-sidebar__sub-link {
  border-bottom: unset;
}

.l-sidebar__sub-link {
  width: 100%;
  padding: 1.25rem 0;
  border-bottom: 0.0625rem solid #046EB2;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .l-sidebar__sub-link {
    padding: 1rem 0;
  }
}
.l-sidebar__sub-link::before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #0A376C;
  flex-shrink: 0;
}
@media (any-hover: hover) {
  .l-sidebar__sub-link:hover {
    opacity: 0.7;
  }
}

.c-btn__tel {
  border-radius: 0.625rem;
  border: 0.25rem solid #fff;
  background: url("../img/bg_blue.png") no-repeat center center/cover;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
  padding: 0.0625rem 0.4375rem 0.1875rem;
  text-align: center;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-btn__tel {
    width: 100%;
    padding: 0.25rem 0.4375rem 0.4375rem;
  }
}
@media (any-hover: hover) {
  .c-btn__tel:hover {
    opacity: 0.7;
  }
}

.c-btn__tel-ja {
  line-height: 100%;
  font-size: 1rem;
}

.c-btn__tel-num {
  margin-top: 0.1875rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  display: flex;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .c-btn__tel-num {
    margin-top: 0;
    justify-content: center;
  }
}
.c-btn__tel-num::before {
  content: "";
  background: url(../img/icon_tel.svg) no-repeat center center/contain;
  width: 1.75rem;
  height: 1.75rem;
}

.c-title {
  color: #F18500;
}

.c-title__en {
  font-family: "Roboto", sans-serif;
  font-size: max(12px, 0.875rem);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.c-title__en::before {
  content: "";
  width: 2.5rem;
  height: 0.0625rem;
  background: #F18500;
}

.c-title__ja {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .c-title__ja {
    font-size: 1.5rem;
  }
}

.c-orange {
  color: #F18500;
}

.c-info__wrap {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-info__wrap {
    flex-direction: column;
    gap: 0.625rem;
  }
}
.c-info__wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 542/440;
  width: 71.3157894737%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-info__wrap img {
    aspect-ratio: 335/260;
    width: 100%;
  }
}
.c-info__wrap .c-info__wrap-small {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-info__wrap .c-info__wrap-small {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-info__wrap .c-info__wrap-small img {
  aspect-ratio: 198/140;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-info__wrap .c-info__wrap-small img {
    aspect-ratio: 105/74;
  }
}

.c-info__lists {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-info__lists {
    margin-top: 2.5rem;
    gap: 1.25rem;
  }
}

.c-info__list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-info__list {
    flex-direction: column;
    align-items: start;
  }
}

.c-info__list-head {
  width: 104px;
  padding: 0.3125rem 1.25rem 0.375rem;
  text-align: center;
  border-radius: 0.25rem;
  background: url("../img/bg_blue.png") no-repeat center center/cover;
  color: #fff;
  font-weight: 500;
  line-height: 100%;
  font-size: 1rem;
}

.c-info__list-body {
  line-height: 100%;
}

.c-contact {
  margin-top: 3.125rem;
  padding: 3rem 2.8125rem;
  border: 0.25rem solid #0A376C;
  background: #fef7e4;
  text-align: center;
  color: #0A376C;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-contact {
    padding: 1.25rem;
    border: 0.125rem solid #0A376C;
  }
}

.c-contact__title {
  font-size: 2rem;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .c-contact__title {
    font-size: 1.25rem;
    gap: 0.25rem;
  }
}
.c-contact__title::before, .c-contact__title::after {
  content: "";
  width: 2.375rem;
  height: 1.9375rem;
}
.c-contact__title::before {
  background: url(../img/deco_contact-left.svg) no-repeat center center/contain;
}
.c-contact__title::after {
  background: url(../img/deco_contact-right.svg) no-repeat center center/contain;
}

.c-contact__text {
  margin-top: 0.8125rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-contact__text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.c-contact__btn {
  margin-top: 1.25rem;
  width: 100%;
  border-radius: 0.5rem;
  background: #F18500;
  box-shadow: 0px 0px 10px 0px rgba(198, 109, 1, 0.2);
  padding: 2.375rem 2.5rem 2.375rem 12.125rem;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-contact__btn {
    margin-top: 1.125rem;
    padding: 0.6875rem 0.625rem 0.75rem 4.625rem;
  }
}
.c-contact__btn::before {
  content: "";
  position: absolute;
  background: url(../img/icon_tel.svg) no-repeat center center/contain;
  width: 5.625rem;
  height: 5.625rem;
  left: 2.5rem;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .c-contact__btn::before {
    width: 3.375rem;
    height: 3.375rem;
    left: 0.625rem;
  }
}
@media (any-hover: hover) {
  .c-contact__btn:hover {
    opacity: 0.7;
  }
}

.c-contact__btn-ja {
  line-height: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-contact__btn-ja {
    line-height: normal;
  }
}

.c-contact__btn-num {
  font-size: 3rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-contact__btn-num {
    font-size: 1.75rem;
    line-height: 100%;
  }
}

.c-contact__map {
  margin-top: 1.25rem;
  aspect-ratio: 660/363;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .c-contact__map {
    aspect-ratio: 295/162;
  }
}
.c-contact__map iframe {
  width: 100%;
  height: 100%;
}

.c-head {
  background: url(../img/bg_head.png) no-repeat center center/cover;
  padding-block: 7.625rem 7.5625rem;
}

.c-head__wrap {
  color: #0A376C;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.c-head__title-en {
  font-family: "Roboto", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 70%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.c-head__title-slash {
  width: 0.125rem;
  height: 1.875rem;
  background: #0A376C;
  transform: rotate(45deg);
}

.c-head__title-ja {
  font-size: max(12px, 1rem);
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
}

.p-top-fv {
  background: url("../img/bg_fv.png") no-repeat center center/cover;
  padding-block: 6.25rem 3.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv {
    background: url("../img/bg_fv-sp.png") no-repeat center center/cover;
    padding-block: 5.25rem 2rem;
  }
}

.p-top-fv__title {
  padding: 1rem;
  background: linear-gradient(90deg, #0f4263 0%, #046eb2 100%);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 100%;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-top-fv__title {
    padding: 0.25rem;
    font-size: 0.875rem;
    line-height: 140%;
  }
}

.p-top-fv__text {
  margin-top: 2.5rem;
  width: 50.625rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-top-fv__text {
    margin-top: 0.625rem;
    width: 20.25rem;
  }
}

.p-top-fv__wrap {
  margin-top: 4.5rem;
  display: flex;
  align-items: end;
  gap: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__wrap {
    margin-top: 5rem;
    flex-direction: column;
    align-items: start;
  }
}

.p-top-fv__item-badge {
  width: 11rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-top-fv__item-badge {
    width: 6.8125rem;
  }
}

.p-top-fv__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-items: end;
  gap: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__list {
    margin-top: -1rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.125rem 0.4375rem;
  }
}

.p-top-fv__item {
  width: 14.1875rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__item {
    width: 10.25rem;
  }
}
.p-top-fv__item:nth-of-type(3), .p-top-fv__item:nth-of-type(4) {
  margin-top: -0.875rem;
}

.p-top-intro__title {
  color: #0A376C;
  font-size: 2rem;
  font-weight: 700;
  line-height: 160%;
  text-align: center;
  padding: 0.9375rem 1.25rem 1.125rem;
  border: 0.125rem solid #0A376C;
  background: #DFF3FF;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-intro__title {
    font-size: 1.5rem;
    padding: 0.6875rem 1.25rem;
  }
}
.p-top-intro__title::after {
  content: "";
  position: absolute;
  background: url("../img/deco_top-intro.svg") no-repeat center center/contain;
  width: 10.75rem;
  height: 11.0625rem;
  right: -0.5625rem;
  bottom: -2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-top-intro__title::after {
    width: 5.5625rem;
    height: 6.5rem;
    right: -1rem;
    bottom: -2.5rem;
  }
}
.p-top-intro__title span:first-of-type {
  background-image: radial-gradient(circle at center, #F18500 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: 0.125rem; /* 縦方向の位置調整 */
}

.p-top-intro__wrap {
  margin-top: 3.75rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-intro__wrap {
    margin-top: 3.3125rem;
    flex-direction: column;
  }
}
.p-top-intro__wrap img {
  aspect-ratio: 372/228;
  width: 23.1875rem;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-intro__wrap img {
    width: 100%;
  }
}

.p-top-intro__text {
  margin-top: 1.875rem;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-top-intro__text {
    margin-top: 2.5rem;
  }
}

.p-top-bunner {
  aspect-ratio: 757/371;
  margin-top: 6.375rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-bunner {
    margin-top: 3.125rem;
    aspect-ratio: 331/184;
  }
}

.p-top-bunner__btn {
  position: absolute;
  width: 27.375rem;
  height: auto;
  right: 1.5rem;
  bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-bunner__btn {
    width: calc(100% - 0.625rem);
    right: unset;
    left: 50%;
    translate: -50%;
    bottom: 0.3125rem;
  }
}
@media (any-hover: hover) {
  .p-top-bunner__btn:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .p-top-worries.l-section {
    margin-top: 3.125rem;
  }
}

.p-top-worries__title {
  background: url("../img/bg_worries-title.png") no-repeat center center/contain;
  aspect-ratio: 761/177;
  width: 100%;
  height: auto;
  color: #0A376C;
  font-size: 2rem;
  font-weight: 700;
  line-height: 160%;
  text-align: center;
  padding: 1.875rem 18.375rem 1.875rem 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-worries__title {
    background: url("../img/bg_worries-title-sp.png") no-repeat center center/contain;
    padding: 6.6875rem 1.4375rem 1.875rem;
    font-size: 1.5rem;
  }
}

.p-top-worries__lists {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 2.9375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-worries__lists {
    margin-top: 1.25rem;
    width: 100%;
    padding-bottom: 3.125rem;
    gap: 0.875rem;
  }
}
.p-top-worries__lists::after {
  content: "";
  position: absolute;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #0A376C;
  width: 4.0625rem;
  height: 2.1875rem;
  bottom: 0rem;
  left: 50%;
  translate: -50%;
}
@media screen and (max-width: 767px) {
  .p-top-worries__lists::after {
    width: 4.5rem;
    height: 1.875rem;
  }
}

.p-top-worries__list {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-worries__list {
    gap: 0.5rem;
    font-size: 1rem;
    line-height: 130%;
    align-items: start;
  }
}
.p-top-worries__list::before {
  content: "";
  background: url("../img/icon_check.svg") no-repeat center center/contain;
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-worries__list::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.p-top-worries__text {
  margin-top: 1.875rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 100%;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-worries__text {
    margin-top: 1.25rem;
    font-size: 1.5rem;
    line-height: 160%;
    padding: 0.625rem;
    background: linear-gradient(90deg, #0f4263 0%, #046eb2 100%);
  }
}
.p-top-worries__text span {
  padding: 0.625rem;
  background: linear-gradient(90deg, #0f4263 0%, #046eb2 100%);
  display: block;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-worries__text span {
    display: inline-block;
    padding: 0;
    background: unset;
  }
}
.p-top-worries__text span + span {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-worries__text span + span {
    margin-top: 0;
  }
}

.p-top-point__title {
  aspect-ratio: 761/202;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-top-point__title {
    aspect-ratio: 375/185;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

.p-top-point__lists {
  margin-top: 3.125rem;
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-point__lists {
    margin-top: 1.875rem;
  }
}

.p-top-point__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.p-top-point__list:nth-of-type(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-top-point__list {
    flex-direction: column !important;
  }
}

.p-top-point__head {
  display: flex;
  align-items: end;
  gap: 0.625rem;
}

.p-top-point__num {
  font-family: "Roboto", sans-serif;
  font-size: 1.5625rem;
  font-weight: 900;
  letter-spacing: 0.004em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-top-point__num {
    font-size: 1.25rem;
  }
}
.p-top-point__num span {
  font-size: 4rem;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-point__num span {
    font-size: 3.5rem;
  }
}

.p-top-point__item-title {
  color: #0A376C;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-top-point__item-title {
    font-size: 1.25rem;
  }
}

.p-top-point__body {
  margin-top: 1rem;
  font-weight: 500;
  line-height: 160%;
}

.p-top-point__img {
  aspect-ratio: 342/228;
  width: 21.375rem;
  height: 100%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-point__img {
    aspect-ratio: 335/217;
    width: 100%;
  }
}
.p-top-point__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-menu__wrap {
  margin-top: 3.0625rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu__wrap {
    margin-top: 2.5rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.p-top-menu__link {
  padding-block: 1.625rem 1.5625rem;
  padding-inline: 1.25rem;
  color: #fff;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-menu__link {
    padding-block: 1.25rem 1.1875rem;
    gap: 1rem;
  }
}
@media (any-hover: hover) {
  .p-top-menu__link:hover::before {
    opacity: 1;
  }
}
.p-top-menu__link .p-top-menu__title,
.p-top-menu__link .p-top-menu__text, .p-top-menu__link::after {
  position: relative;
  z-index: 10;
}
.p-top-menu__link::after {
  content: "";
  background: url("../img/icon_arrow_circle_white.svg") no-repeat center center/contain;
  width: 1.5625rem;
  height: 1.5625rem;
  margin-top: auto;
  margin-inline: auto;
}
.p-top-menu__link::before {
  content: "";
  position: absolute;
  background: #0A376C;
  opacity: 0.7;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.p-top-menu__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-top-menu__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-menu__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120%;
  padding-bottom: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-menu__title {
    font-size: 1.25rem;
    padding-bottom: 1rem;
  }
}
.p-top-menu__title::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 8.125rem;
  height: 0.0625rem;
  bottom: 0;
  left: 50%;
  translate: -50%;
}

.p-top-menu__text {
  line-height: 160%;
}

.p-top-symptoms__lists {
  margin-top: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-symptoms__lists {
    margin-top: 2.5rem;
  }
}

.p-top-symptoms__list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.875rem;
  background: #DFF3FF;
}
@media screen and (max-width: 767px) {
  .p-top-symptoms__list {
    flex-direction: column;
  }
}
@media (any-hover: hover) {
  .p-top-symptoms__list:hover {
    opacity: 0.7;
  }
}

.p-top-symptoms__img {
  aspect-ratio: 260/180;
  width: 16.25rem;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-symptoms__img {
    margin-inline: auto;
  }
}
.p-top-symptoms__img img {
  object-fit: cover;
}

.p-top-symptoms__body {
  color: #0A376C;
  padding-right: 1.75rem;
  flex-grow: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-symptoms__body {
    padding-right: 0;
  }
}
.p-top-symptoms__body::after {
  content: "";
  position: absolute;
  background: url("../img/icon_arrow_blue.svg") no-repeat center center/contain;
  width: 0.5rem;
  height: 1.125rem;
  top: 50%;
  translate: 0 -50%;
  right: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-top-symptoms__body::after {
    top: 0.125rem;
    translate: unset;
    right: 0;
  }
}

.p-top-symptoms__title {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top-symptoms__title {
    font-size: 1.25rem;
  }
}

.p-top-symptoms__text {
  margin-top: 0.4375rem;
  line-height: 130%;
}
@media screen and (max-width: 767px) {
  .p-top-symptoms__text {
    margin-top: 0.625rem;
  }
}

.p-top-flow__lists {
  margin-top: 2.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-flow__lists {
    margin-top: 2.5rem;
    gap: 1.6875rem;
  }
}
.p-top-flow__lists::before {
  content: "";
  position: absolute;
  width: 0.1875rem;
  height: 85%;
  background: #0A376C;
  top: 2.125rem;
  left: 1.5rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-flow__lists::before {
    top: 1.0625rem;
    left: 1.0625rem;
    height: 87%;
  }
}

.p-top-flow__list {
  display: flex;
  align-items: start;
  gap: 1.5rem;
}

.p-top-flow__num {
  margin-top: 0.75rem;
  background: linear-gradient(90deg, #0f4263 0%, #046eb2 100%);
  border-radius: 50%;
  padding: 0.75rem 1.0625rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-flow__num {
    margin-top: 0;
    padding: 0.5rem 0.8125rem;
    font-size: 1.25rem;
  }
}

.p-top-flow__item {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow__item {
    gap: 0.75rem;
    flex-direction: column-reverse;
  }
}

.p-top-flow__body {
  margin-top: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow__body {
    margin-top: 0;
  }
}

.p-top-flow__title {
  color: #0A376C;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top-flow__title {
    font-size: 1rem;
  }
}

.p-top-flow__text {
  margin-top: 0.75rem;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-top-flow__text {
    margin-top: 0.625rem;
    font-size: 0.875rem;
  }
}

.p-top-flow__img {
  aspect-ratio: 246/154;
  width: 15.375rem;
  height: 100%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-flow__img {
    aspect-ratio: 273/114;
    width: 100%;
  }
}
.p-top-flow__img img {
  object-fit: cover;
}

.p-top-message__wrap {
  position: relative;
  padding: 3.25rem 21.5rem 3.125rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-message__wrap {
    padding: 2.5rem 0 0;
  }
}
.p-top-message__wrap::before {
  content: "";
  position: absolute;
  background: url("../img/bg_top-message.png") no-repeat top center/cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-message__wrap::before {
    background: url("../img/bg_top-message-sp.png") no-repeat top center/cover;
    width: 18.9375rem;
    height: 16.4375rem;
    top: -5.375rem;
    left: unset;
    right: -1.25rem;
  }
}

.p-top-message__title {
  color: #0A376C;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-message__title {
    font-size: 1.25rem;
    line-height: 160%;
  }
}

.p-top-message__text {
  margin-top: 2.5rem;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-top-message__text {
    margin-top: 1.25rem;
  }
}

.p-top-message__name {
  margin-top: 3.75rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
}
.p-top-message__name span {
  margin-left: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__name span {
    margin-left: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-message__name {
    text-align: right;
    margin-top: 2.25rem;
    font-size: 1.25rem;
  }
}

.p-price__wrap {
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
}

.p-price__list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.p-price__list-item {
  display: flex;
  gap: 0.125rem;
  text-align: center;
}
.p-price__list-item.--vertical {
  flex-direction: column;
}

.p-price__menu {
  background: #046EB2;
  padding: 1.1875rem 0;
  width: 13.5625rem;
  color: #fff;
  font-weight: 700;
  line-height: 120%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.p-price__menu.--vertical {
  width: 100%;
}

.p-price__price-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.125rem;
}

.p-price__price {
  padding: 1.0625rem 0;
  border: 0.0625rem solid #046EB2;
  line-height: 120%;
  flex-grow: 1;
  display: grid;
  place-items: center;
}

.p-menu__title {
  padding: 1.25rem;
  font-size: 2.125rem;
  color: #fff;
  background: #046EB2;
  border: 2px solid #046EB2;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-menu__title {
    font-size: 1.625rem;
  }
}
.p-menu__title::before {
  content: "";
  width: 12.5rem;
  height: 12.5rem;
  background-color: #fff;
  position: absolute;
  bottom: -1.25rem;
  right: -6.25rem;
  transform: rotate(145deg);
}

.p-menu__wrap {
  margin: 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-menu__wrap {
    margin: 0;
  }
}

.p-menu__item {
  margin-top: 2rem;
}

.p-menu__item-title {
  margin-top: 2rem;
  padding: 0.5rem 1rem;
  font-size: max(16px, 1.125rem);
  color: #fff;
  background: #046EB2;
  overflow: hidden;
  position: relative;
}
.p-menu__item-title::before {
  content: "";
  width: 9.375rem;
  height: 9.375rem;
  background: url("../img/bg_blue.png") no-repeat center center/cover;
  position: absolute;
  bottom: 0px;
  right: -4.375rem;
  transform: rotate(145deg);
}

.p-menu__list {
  margin-top: 2.25rem;
  width: 27rem;
}
@media screen and (max-width: 767px) {
  .p-menu__list {
    width: 100%;
  }
}
.p-menu__list li {
  margin: 0 0 0.25rem;
  border-bottom: dotted 0.125rem #c9c9ba;
  padding: 0 0 0.3125rem 0.625rem;
  font-size: max(12px, 1.125rem);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.p-menu__list li::before {
  content: "";
  background: url(../img/icon_check_yellow.svg) no-repeat center center/contain;
  width: 1.625rem;
  height: 1.625rem;
}
.p-menu__list a {
  color: #d31e17;
  text-decoration: underline;
}

.p-menu__content {
  margin: 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-menu__content {
    margin: 0;
  }
}
.p-menu__content h2 {
  margin: 3.125rem 0 1.5rem;
  padding: 0.5rem 1rem;
  font-size: max(16px, 1.125rem);
  color: #fff;
  background: #046EB2;
  overflow: hidden;
  position: relative;
}
.p-menu__content h2::before {
  content: "";
  width: 9.375rem;
  height: 9.375rem;
  background: url("../img/bg_blue.png") no-repeat center center/cover;
  position: absolute;
  bottom: 0px;
  right: -4.375rem;
  transform: rotate(145deg);
}
.p-menu__content h3 {
  margin: 2.5rem 0 1.5rem;
  padding-bottom: 0.5rem;
  font-size: max(16px, 1.125rem);
  border-bottom: 2px solid #0A376C;
}
.p-menu__content .wp-block-list {
  margin-bottom: 1.5rem;
}
.p-menu__content li {
  margin: 0 0 0.25rem;
  border-bottom: dotted 0.125rem #c9c9ba;
  padding: 0 0 0.3125rem 0.625rem;
  font-size: max(12px, 1.125rem);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.p-menu__content li::before {
  content: "";
  background: url(../img/icon_check_yellow.svg) no-repeat center center/contain;
  width: 1.625rem;
  height: 1.625rem;
}
.p-menu__content p {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
.u-font {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__jp {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__en {
  font-family: "Roboto", sans-serif;
}

.u-text__center {
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .u-text__center--sp {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .u-text__center--pc {
    text-align: center !important;
  }
}

.u-text__left {
  text-align: left !important;
}
@media screen and (max-width: 767px) {
  .u-text__left--sp {
    text-align: left !important;
  }
}
@media (min-width: 768px) {
  .u-text__left--pc {
    text-align: left !important;
  }
}

.u-text__right {
  text-align: right !important;
}
@media screen and (max-width: 767px) {
  .u-text__right--sp {
    text-align: right !important;
  }
}
@media (min-width: 768px) {
  .u-text__right--pc {
    text-align: right !important;
  }
}

.u-text__nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .u-text__nowrap--sp {
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}

.u-pointer__none {
  pointer-events: none !important;
}
@media screen and (max-width: 767px) {
  .u-pointer__none--sp {
    pointer-events: none !important;
  }
}
@media (min-width: 768px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}