@charset "UTF-8";
:root {
  --font-family: "Inter", "Noto Sans JP", sans-serif;
  --color-lightblue: #2ab0c4;
  --color-yellow: #f3e82f;
  --color-pink: #d86b70;
  --color-blue: #2c75bb;
  --color-white: #ffffff;
  --color-black: #000013;
  --color-bg-lightblue: #e6f6f9;
  --color-bg-gray: #f2f2f2;
  --color-border: #d0d6da;
  --color-text: #2a2a3c;
  --color-text-gray: #7c7c7c;
  --color-text-blue: #0071b7;
  --font-thin: 300;
  --font-light: 400;
  --font-regular: 500;
  --font-medium: 600;
  --font-bold: 700;
  --lh-xs: 1;
  --lh-sm: 1.25;
  --lh-md: 1.5;
  --lh-lg: 1.75;
  --lh-xl: 2;
  --normal-transition: 0.3s ease ;
}

:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

html {
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

a,
button {
  cursor: revert;
}

menu,
ol,
summary,
ul {
  list-style: none;
}

ol {
  counter-reset: revert;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
  box-sizing: border-box;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

::-webkit-details-marker {
  display: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  line-height: var(--lh-lg);
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: 1.4rem;
  font-weight: var(--font-regular);
  background-color: var(--color-white);
  color: var(--color-text);
}

@media (min-width: 768px) {
  body {
    font-size: clamp(1.2rem, 0.625vw + 0.717rem, 1.6rem);
  }
}
body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
}

a,
button {
  color: inherit;
}

button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.nolink {
  color: var(--color-text-gray);
}

img,
svg {
  width: 100%;
  height: auto;
  line-height: 0;
  vertical-align: bottom;
}

b,
strong {
  font-weight: var(--font-bold);
}

table {
  width: 100%;
  table-layout: fixed;
}

td,
th {
  word-break: break-word;
}

td[colspan] {
  white-space: normal;
}

sup {
  vertical-align: super;
  font-size: 0.5em;
}

.contentsWrap {
  padding: 7.2rem 0 0;
  overflow: hidden;
}

@media (min-width: 1000px) {
  .contentsWrap {
    padding: 0 0 0;
    overflow: visible;
  }
}
.sponly {
  display: block !important;
}

@media (min-width: 768px) {
  .sponly {
    display: none !important;
  }
}
.pconly {
  display: none !important;
}

@media (min-width: 768px) {
  .pconly {
    display: block !important;
  }
}
.is-anm {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}

.is-anm.is-animated {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 1.6rem;
  background: var(--color-white);
  z-index: 1000;
  box-sizing: border-box;
}

.header .header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7.2rem;
  padding-right: calc(40px + 1.6rem);
}

.header .logo {
  width: 9.8rem;
}

.header .logo a {
  display: block;
}

.header .pcnav {
  display: none;
}

.header .hamburger {
  position: fixed;
  top: 1.6rem;
  right: 1.6rem;
  z-index: 100;
  width: 40px;
  height: 40px;
  border: none;
  background: url(../img/sp_menu.svg) no-repeat 50%;
  cursor: pointer;
}

.header .btn-consult {
  display: none;
}

.btn-appointment {
  height: 100%;
}

.btn-appointment a {
  display: block;
  height: 100%;
}

.btn-appointment img {
  height: 100%;
  width: auto;
}

@media (min-width: 1000px) {
  .header .header-inner {
    width: 100%;
    height: 11.6rem;
    max-width: 132rem;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0;
  }
  .header .logo {
    width: 15.6rem;
    margin-right: 3.143vw;
  }
  .header .pcnav {
    display: block;
    margin-right: 3.143vw;
  }
  .header .pcnav-list {
    display: flex;
    gap: 3rem;
    position: relative;
  }
  .header .pcnav-list:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -1.5rem;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background-color: var(--color-text);
  }
  .header .pcnav-list li {
    display: flex;
    align-items: center;
    height: 4.9rem;
    line-height: var(--lh-sm);
    font-weight: var(--font-medium);
    text-align: center;
    position: relative;
    cursor: pointer;
  }
  .header .pcnav-list li.active {
    color: var(--color-lightblue);
    position: relative;
  }
  .header .pcnav-list li.active:before {
    content: "";
    width: 32px;
    height: 18px;
    background: url(../img/pc_menu_arrow.svg) no-repeat 50%;
    position: absolute;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%);
  }
  .header .pcnav-list li:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1.5rem;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background-color: var(--color-text);
  }
  .header .pcnav-list li a {
    padding: 0.8rem 0;
    display: block;
    transition: opacity var(--normal-transition);
  }
  .header .pcnav-list li a:hover {
    opacity: 0.6;
  }
  .header .pcnav-list li a span {
    display: inline-block;
  }
  .header .hamburger {
    display: none;
  }
  .header .btn-consult {
    display: block;
    width: 25.6rem;
    margin-left: auto;
  }
  .header .btn-consult a {
    transition: opacity var(--normal-transition);
  }
  .header .btn-consult a:hover {
    opacity: 0.6;
  }
  .btn-appointment {
    display: none;
  }
}
.sp-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  z-index: 1001;
}

.sp-menu-overlay.is-open {
  display: block;
}

.sp-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-lightblue);
  padding: 6rem 7.979vw;
  color: var(--color-white);
}

.sp-menu-inner {
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
}

.sp-menu .close-btn {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 4rem;
  height: 4rem;
  background: url(../img/sp_menu_close.svg) no-repeat 50%;
  cursor: pointer;
}

.sp-menu .menu-list > li {
  margin: 0.5rem 0;
}

.sp-menu .menu-list .sp-submenu-container,
.sp-menu .menu-list > li.home {
  font-weight: var(--font-bold);
  font-size: 2.1rem;
}

.sp-menu .menu-list .sp-submenu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sp-menu .menu-list .sp-submenu-link {
  font-weight: var(--font-bold);
  font-size: 2.1rem;
}

.sp-menu .menu-list .sp-submenu-toggle {
  cursor: pointer;
  margin-left: 8px;
  width: 3.6rem;
  height: 3.6rem;
  background: url(../img/sp_menu_plus.svg) no-repeat 50%;
  transition: background-image var(--normal-transition);
}

.sp-menu .menu-list .sp-submenu-toggle.is-open {
  background-image: url(../img/sp_menu_minus.svg);
}

.sp-menu .sp-submenu {
  display: block;
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--normal-transition);
}

.sp-menu .sp-submenu li {
  margin-bottom: 1rem;
}

.sp-menu a.external-link {
  padding-right: 3.5rem;
  background: url(../img/icon_external_link.svg) no-repeat 100% 0;
  background-size: 1.8rem 1.8rem;
}

.sp-menu .sp-btmmenu {
  margin-top: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--color-white);
  font-size: 1.5rem;
}

.sp-menu .sp-btmmenu p {
  padding: 0.5rem 0;
}

.sp-menu .btn-consult {
  display: block;
  margin-top: 24px;
}

.pc-submenu-container {
  position: fixed;
  top: 11.6rem;
  left: 0;
  width: 100%;
  background: var(--color-lightblue);
  color: var(--color-white);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity var(--normal-transition), visibility var(--normal-transition), max-height var(--normal-transition);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.pc-submenu-container.is-open {
  opacity: 1;
  visibility: visible;
  max-height: 50rem;
}

.pc-submenu,
.pc-submenu-container.is-closed {
  display: none;
}

.pc-submenu {
  margin: 0 auto;
  justify-content: left;
  flex-wrap: nowrap;
  padding: 8.5rem 1.429vw 8.5rem 7.143vw;
  position: relative;
}

.pc-submenu.is-open {
  display: flex;
}

.pc-submenu .sub-title {
  width: 31.429vw;
  flex-shrink: 0;
  padding-right: 2.857vw;
  position: relative;
}

.pc-submenu .sub-title:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: var(--color-white);
}

.pc-submenu .sub-title .title {
  font-weight: var(--font-bold);
  margin-bottom: 0.8rem;
}

.pc-submenu .sub-title .copy {
  font-weight: var(--font-medium);
  line-height: var(--lh-lg);
  color: var(--color-text);
  margin-bottom: 2.4rem;
}

.pc-submenu .sub-title a.cat-link {
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
  font-weight: var(--font-medium);
  padding-right: 4.5rem;
  background: url(../img/arrow_w.svg) no-repeat 100% 0;
  background-size: 3.5rem 3.5rem;
  transition: opacity var(--normal-transition);
}

.pc-submenu .sub-title a.cat-link:hover {
  opacity: 0.6;
}

.pc-submenu .link-col {
  min-width: 23.571vw;
  padding-left: 3.571vw;
}

.pc-submenu .link-col h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.pc-submenu .link-col p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.pc-submenu .link-col ul li {
  width: 100%;
  margin-bottom: 1.5rem;
}

.pc-submenu .link-col ul li a {
  width: 100%;
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
  font-weight: var(--font-medium);
  padding-right: 4.5rem;
  background: url(../img/arrow_w.svg) no-repeat 100% 0;
  background-size: 3.5rem 3.5rem;
  transition: opacity var(--normal-transition);
}

.pc-submenu .link-col ul li a:hover {
  opacity: 0.6;
}

.pc-submenu .link-col ul li a.external-link {
  background: url(../img/icon_external_link.svg) no-repeat right 0.3rem top 30%;
  background-size: 2.5rem 2.5rem;
}

.pc-submenu .link-col ul li a .new,
.sp-submenu li a .new {
  color: var(--color-yellow);
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1.4rem;
}

.pc-submenu .close-pc {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 4rem;
  height: 4rem;
  background: url(../img/pc_menu_close.svg) no-repeat 50%;
  cursor: pointer;
  transition: opacity var(--normal-transition);
}

.pc-submenu .close-pc:hover {
  opacity: 0.6;
}

.footer {
  background-color: var(--color-black);
  box-sizing: border-box;
}

.sp-footer {
  padding: 4rem 0 8rem;
  text-align: center;
  color: var(--color-white);
}

.sp-footer__nav {
  margin: 0 auto;
  text-align: center;
  font-size: 1.5rem;
  font-weight: var(--font-medium);
}

.sp-footer__nav li {
  padding: 0.5rem;
}

.sp-footer__nav li a {
  display: inline-block;
  line-height: var(--lh-lg);
}

.sns-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.sns-links a {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  transition: opacity var(--normal-transition);
}

.sns-links a:hover {
  opacity: 0.6;
}

@media (min-width: 768px) {
  .sns-links {
    justify-content: left;
    margin-top: 4rem;
  }
}
.footer-award {
  width: 12rem;
  margin: 3rem auto 0;
}

@media (min-width: 768px) {
  .footer-award {
    width: 17.6rem;
    margin: 10rem 0 0;
  }
}
.copyright {
  margin-top: 3rem;
  font-size: 1.2rem;
  font-weight: var(--font-medium);
}

@media (min-width: 768px) {
  .copyright {
    margin-top: 1rem;
    color: var(--color-white);
    text-align: right;
  }
}
.pc-footer {
  padding: 9rem 2rem 10rem;
}

.pc-footer__wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-areas: "left right-top" "left right-bottom";
  grid-template-columns: 286px 1fr;
  grid-template-rows: auto auto;
  grid-gap: 8rem 2rem;
  gap: 8rem 2rem;
  container-type: normal;
}

.pc-footer__left {
  grid-area: left;
}

.pc-footer__logo {
  width: 17rem;
  margin: 0 auto 4rem;
}

@media (min-width: 768px) {
  .pc-footer__logo {
    width: 28.4rem;
    transition: opacity var(--normal-transition);
  }
}
.pc-footer__logo:hover {
  opacity: 0.6;
}

.pc-footer__right {
  grid-area: right-top;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4rem;
  container-type: inline-size;
  container-name: footer-links;
}

.pc-footer__nav {
  flex: 0 1 auto;
}

.pc-footer__nav h3 {
  color: var(--color-white);
  font-weight: var(--font-bold);
  margin-bottom: 0.8rem;
}

.pc-footer__nav h3 a {
  color: var(--color-white);
  transition: opacity var(--normal-transition);
}

.pc-footer__nav h3 a:hover {
  opacity: 0.6;
}

.pc-footer__nav ul li {
  margin-bottom: 2.3rem;
}

.pc-footer__nav ul li a {
  color: var(--color-white);
  line-height: var(--lh-lg);
  transition: opacity var(--normal-transition);
}

.pc-footer__nav ul li a:hover {
  opacity: 0.6;
}

.footer a.external-link {
  padding-right: 2.2rem;
  background: url(../img/icon_external_link.svg) no-repeat right top 30%;
  background-size: 1.5rem 1.5rem;
}

.pc-footer__nav ul + h3 {
  margin-top: 2rem;
}

.pc-footer__bottom {
  grid-area: right-bottom;
}

.pc-footer ul.foot-nav {
  display: flex;
  justify-content: right;
  flex-wrap: wrap;
  gap: 0 2rem;
}

.pc-footer ul.foot-nav li a {
  display: inline-block;
  color: var(--color-white);
  line-height: var(--lh-lg);
  transition: opacity var(--normal-transition);
}

.pc-footer ul.foot-nav li a:hover {
  opacity: 0.6;
}

.pc-footer__right {
  width: 45%;
  margin-left: auto;
  padding-top: 3rem;
}

.pc-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@container footer-links (max-width: 740px) {
  .pc-footer__right {
    justify-content: right;
  }
  .pc-footer__nav {
    flex: 0 1 220px;
  }
}
@container footer-links (max-width: 500px) {
  .pc-footer__nav {
    flex: 0 1 40%;
  }
}
.error404 {
  width: 100%;
  height: calc(100vh - 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.error404 .title {
  color: var(--color-lightblue);
  font-weight: var(--font-bold);
}

.error404 .sub-title {
  padding: 0.714vw 0 2.857vw;
  font-weight: var(--font-bold);
}

.grid-container {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.grid-container .card {
  padding: 5.319vw;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .grid-container {
    gap: 2rem;
  }
  .grid-container.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-container.cols-2 .card {
    padding: 3.929vw 4.286vw;
  }
  .grid-container.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-container.cols-3 .card {
    padding: 2.857vw 3.929vw;
  }
  .grid-container.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-container.cols-4 .card {
    padding: 2.143vw 2.5vw;
  }
}
.col-1 {
  padding: 5.319vw;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .col-1 {
    padding: 3.929vw 4.286vw;
  }
}
.grid-wrap {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-wrap.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-wrap.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-wrap.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-wrap.cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
a.link {
  color: var(--color-lightblue);
  text-decoration: underline;
  transition: all var(--normal-transition);
}

a.link:hover {
  color: var(--color-text);
  text-decoration: none;
}

a.icon {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: var(--font-medium);
  line-height: var(--lh-xs);
  padding-right: 4.5rem;
  background: url(../img/arrow.svg) no-repeat 100% 0;
  background-size: 3rem 3rem;
}

@media (min-width: 768px) {
  a.icon {
    min-height: 3.5rem;
    padding-right: 4.5rem;
    background-size: 3.5rem 3.5rem;
    transition: opacity var(--normal-transition);
  }
  a.icon:hover {
    opacity: 0.6;
  }
}
a.icon.wh {
  background: url(../img/arrow_w.svg) no-repeat 100% 0;
  background-size: 2.1rem 2.1rem;
}

@media (min-width: 768px) {
  a.icon.wh {
    min-height: 3.5rem;
    background-size: 3.5rem 3.5rem;
  }
}
a.icon-back {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: var(--font-medium);
  line-height: var(--lh-xs);
  padding-left: 4.5rem;
  background: url(../img/arrow_back.svg) no-repeat 0 0;
  background-size: 3rem 3rem;
}

@media (min-width: 768px) {
  a.icon-back {
    min-height: 3.5rem;
    padding-left: 4.5rem;
    background-size: 3.5rem 3.5rem;
    transition: opacity var(--normal-transition);
  }
  a.icon-back:hover {
    opacity: 0.6;
  }
}
.indent li {
  padding-left: 1em;
  text-indent: -1em;
}

.break {
  display: inline-block;
}

.btn-cta01 {
  max-width: 400px;
  min-width: 300px;
  width: 30vw;
  margin: 30px auto 0;
}

.btn-cta01 p {
  font-size: clamp(1.2rem, 0.55rem + 0.8vw, 1.8rem);
  text-align: center;
  color: #cf4e5d;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.btn-cta01 p.white {
  color: #fff;
}

@media (min-width: 768px) {
  .btn-cta01 {
    margin: 50px auto 0;
  }
  .btn-cta01 a {
    transition: opacity var(--normal-transition);
  }
  .btn-cta01 a:hover {
    opacity: 0.6;
  }
}
@media (max-width: 767px) {
  .has-fixed-btn {
    padding-bottom: 40vw;
  }
  .btn-form-fixed-bottom {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    opacity: 0;
    transform: translateY(12px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    padding: 5px 0;
  }
  .btn-form-fixed-bottom a {
    display: block;
  }
  .btn-form-fixed-bottom img {
    filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.2));
  }
  .btn-form-fixed-bottom.is-show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
@media (min-width: 768px) {
  .btn-form-fixed-bottom {
    display: none;
  }
}
.breadcrumb {
  padding-top: 2rem;
  border-bottom: 1px solid #e6e6e6;
}

.breadcrumb ul {
  width: 100%;
  display: inline-flex;
  align-items: center;
  list-style: none;
  margin: 0;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(1px);
}

.breadcrumb ul li {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--color-lightblue);
}

.breadcrumb ul li + li {
  padding-left: 2rem;
}

.breadcrumb ul li + li:before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url(../img/icon_path_arrow.svg) no-repeat 0 0;
  position: absolute;
  top: 0.6rem;
  left: 0.2rem;
}

.breadcrumb ul li a {
  display: block;
}

.breadcrumb ul li a .homeicon {
  width: 1.4rem;
  height: 1.4rem;
  display: inline-block;
  vertical-align: middle;
}

.breadcrumb ul li strong {
  font-weight: var(--font-bold);
}

@media (min-width: 768px) {
  .breadcrumb {
    padding-top: 6rem;
  }
  .breadcrumb ul li {
    font-size: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .breadcrumb ul li + li {
    padding-left: 2.7rem;
  }
  .breadcrumb ul li + li:before {
    top: 0.4rem;
    left: 0.6rem;
  }
  .breadcrumb ul li a {
    transition: opacity var(--normal-transition);
  }
  .breadcrumb ul li a:hover {
    opacity: 0.6;
  }
}
.intro {
  padding: 3rem 0;
}

.intro h1 {
  font-weight: var(--font-bold);
}

.intro h1 + p,
.intro p + p {
  padding-top: 1.5rem;
}

.intro .copy {
  font-weight: var(--font-bold);
  padding-bottom: 1.5rem;
}

.intro p,
.intro ul {
  font-weight: var(--font-medium);
}

@media (min-width: 768px) {
  .intro {
    padding: 5.357vw 0;
  }
  .intro h1 + p {
    padding-top: 2.143vw;
  }
  .intro p + p {
    padding-top: 1.5vw;
  }
  .intro .copy {
    padding-bottom: 1.429vw;
  }
  .intro p {
    font-weight: var(--font-medium);
  }
}
.sec-title {
  padding-bottom: 1.5rem;
  font-weight: var(--font-bold);
}

@media (min-width: 768px) {
  .sec-title {
    padding-bottom: 2.857vw;
  }
}
.sec-subtitle {
  padding-bottom: 1rem;
  font-weight: var(--font-bold);
}

@media (min-width: 768px) {
  .sec-subtitle {
    padding-bottom: 1.429vw;
  }
}
.step__item {
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  grid-template-rows: auto;
  grid-column-gap: 3.214vw;
  grid-row-gap: 0;
}

.step__item.end .step__bar:after {
  display: none;
}

.step__item.end .step__cont {
  padding-bottom: 0;
}

.step__bar {
  position: relative;
}

.step__bar:before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  width: 1.7rem;
  height: 1.7rem;
  background-color: var(--color-lightblue);
  border-radius: 50%;
  border: 1px solid var(--color-white);
}

.step__bar.gary:before {
  background-color: #aeaeae;
}

.step__bar:after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  width: 0.2rem;
  height: 100%;
  background-color: var(--color-border);
}

.step__cont {
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
}

.step__cont--title {
  padding-bottom: 0.5rem;
  font-weight: var(--font-medium);
  color: var(--color-lightblue);
}

.step__cont--ttl {
  padding-bottom: 1rem;
  font-weight: var(--font-medium);
}

.step__cont--text {
  padding-top: 0.3rem;
  font-weight: var(--font-medium);
}

.step__sub {
  margin-top: 1rem;
  padding: 1.5rem;
  background-color: var(--color-bg-gray);
  border-radius: 8px;
}

.step__sub .sub-title,
.step__sub li {
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .step__bar:before {
    top: 0.7rem;
  }
  .step__cont {
    display: flex;
    flex-direction: row;
    gap: 3.214vw;
    padding-bottom: 3rem;
  }
  .step__cont--title {
    padding-top: 0.3rem;
    padding-bottom: 0.5rem;
  }
  .step__sub {
    padding: 2.143vw;
    width: 100%;
  }
  .step__sub .sub-wrap {
    display: grid;
    grid-row-gap: 0;
    width: 100%;
  }
  .step__sub li {
    padding-bottom: 1.5rem;
  }
}
.sml .step__cont {
  padding-bottom: 0.5rem;
}

.worry-inc-answer {
  padding-bottom: 5rem;
}

.worry__wrap {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.worry__wrap li {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: var(--color-lightblue);
  padding: 1rem;
  border-radius: 8px;
}

.worry__wrap li img {
  margin-right: 2rem;
  width: 10rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.worry__wrap li p {
  font-weight: var(--font-medium);
  color: var(--color-white);
  line-height: var(--lh-md);
  text-align: left;
}

.worry__wrap li p span {
  color: var(--color-yellow);
}

.worry .answer {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: var(--color-yellow);
  border-radius: 6px;
  font-weight: var(--font-bold);
}

.worry .answer span {
  color: var(--color-pink);
}

@media (min-width: 768px) {
  .worry {
    position: relative;
  }
  .worry-inc-answer {
    padding-bottom: 10vw;
  }
  .worry__wrap {
    max-width: 970px;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
  }
  .worry__wrap li {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 50%;
  }
  .worry__wrap li img {
    margin-right: 0;
    margin-bottom: 1.429vw;
    width: 9.714vw;
  }
  .worry__wrap li p {
    text-align: center;
  }
  .worry__wrap.cols-2 {
    width: 57.143vw;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: column;
    place-items: center;
  }
  .worry__wrap.cols-2 li {
    width: 21.429vw;
  }
  .worry__wrap.cols-4 {
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .worry .answer {
    margin: 0;
    position: absolute;
    bottom: 5vw;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    padding: 1.429vw;
    white-space: nowrap;
  }
}
.price-line li + li {
  margin-top: 2rem;
}

.price-line--title {
  display: block;
}

.price-line--price {
  display: block;
  font-weight: var(--font-bold);
  white-space: nowrap;
}

.price-line--note {
  margin-top: 0.5rem;
  line-height: var(--lh-md);
}

.price-line--note.mt {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .price-line {
    line-height: var(--lh-sm);
  }
  .price-line--wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .price-line--wrap:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #bebec4;
    z-index: 0;
  }
  .price-line--title {
    margin-right: 1rem;
    padding-right: 2.143vw;
  }
  .price-line--price,
  .price-line--title {
    position: relative;
    background: var(--color-bg-gray);
    z-index: 1;
  }
  .price-line--price {
    margin-left: 1rem;
    padding-left: 2.143vw;
  }
  .price-line--note {
    margin-top: 0.5rem;
  }
}
.price-note {
  margin-top: 1rem;
}

.banner a {
  display: block;
  max-width: 1070px;
  margin: 0 auto;
}

.banner {
  padding-top: 20px;
  padding-bottom: 70px;
}

@media (min-width: 768px) {
  .banner {
    padding-bottom: 8rem;
  }
  .banner a {
    transition: opacity var(--normal-transition);
  }
  .banner a:hover {
    opacity: 0.6;
  }
}
.interview__slider {
  margin-top: 4rem;
  overflow-x: hidden;
}

.swiper.interview {
  padding: 0 7.979vw;
}

.swiper.interview .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper.interview .swiper-slide {
  display: flex;
  height: auto;
  background-color: var(--color-bg-gray);
  border-radius: 8px;
}

.swiper.interview .swiper-slide a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 6.649vw;
}

.swiper.interview .swiper-slide a .interview-text {
  padding-top: 2.66vw;
}

.swiper.interview .swiper-slide a .interview-text p span {
  display: block;
  font-weight: var(--font-bold);
  color: var(--color-lightblue);
}

@media (min-width: 768px) {
  .interview__slider {
    margin-top: 3.571vw;
  }
  .swiper.interview {
    overflow: visible;
    padding: 0 14.286vw;
  }
  .swiper.interview .swiper-slide {
    width: 30.714vw;
  }
  .swiper.interview .swiper-slide a {
    padding: 2.643vw;
    transition: opacity var(--normal-transition);
  }
  .swiper.interview .swiper-slide a .interview-text {
    padding-top: 1.786vw;
  }
  .swiper.interview .swiper-slide a:hover {
    opacity: 0.6;
  }
}
.voice__wrap {
  overflow-x: hidden;
}

.voice__slider {
  margin-top: 6.649vw;
}

.swiper.voice {
  padding: 7.979vw 7.979vw 0;
}

.swiper.voice .swiper-slide {
  width: 100%;
  flex-shrink: 0;
}

.swiper.voice .swiper-slide a {
  display: block;
  position: relative;
}

.swiper.voice .swiper-slide a .age {
  width: 25.266vw;
  height: 25.266vw;
  position: absolute;
  top: -6.649vw;
  left: -6.649vw;
}

.swiper.voice .swiper-slide a img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper.voice .swiper-slide a .voice-text {
  padding-top: 2.66vw;
}

@media (min-width: 768px) {
  .voice__slider {
    margin-top: 6.429vw;
  }
  .swiper.voice {
    overflow: visible;
    padding: 0 14.286vw;
  }
  .swiper.voice .swiper-slide {
    width: 22.143vw;
  }
  .swiper.voice .swiper-slide a {
    transition: opacity var(--normal-transition);
  }
  .swiper.voice .swiper-slide a .age {
    width: 6.786vw;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    position: absolute;
    top: -1.786vw;
    left: -1.786vw;
  }
  .swiper.voice .swiper-slide a .voice-text {
    padding-top: 0.714vw;
  }
  .swiper.voice .swiper-slide a:hover {
    opacity: 0.6;
  }
}
.swiper-button-next,
.swiper-button-prev {
  width: 10.372vw;
  height: 10.372vw;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: none;
}

.swiper-button-next {
  background: url(../img/arrow_bk_next.svg) no-repeat 0 0;
  background-size: contain;
}

.swiper-button-prev {
  background: url(../img/arrow_bk_back.svg) no-repeat 0 0;
  background-size: contain;
}

@media (min-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 3.714vw;
    height: 3.714vw;
    transition: opacity var(--normal-transition);
  }
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    opacity: 0.6;
  }
  .interview .swiper-button-next {
    right: 12.143vw;
  }
  .interview .swiper-button-prev {
    left: 12.143vw;
  }
  .voice .swiper-button-next {
    top: 10.714vw;
    right: 9.286vw;
  }
  .voice .swiper-button-prev {
    top: 10.714vw;
    left: 9.286vw;
  }
}
.faq__inner {
  padding: 6.649vw;
  background-color: var(--color-bg-gray);
  border-radius: 8px;
}

@media (min-width: 768px) {
  .faq__inner {
    padding: 4.286vw 11.786vw;
  }
}
.faq-title {
  position: relative;
}

.faq-title .title {
  font-weight: var(--font-bold);
}

.faq-title .link {
  position: absolute;
  top: 0;
  right: 0;
}

@media (min-width: 768px) {
  .faq-title .title {
    width: 100%;
    text-align: center;
  }
  .faq-title .link {
    position: absolute;
    top: 0.714vw;
    right: 0;
  }
}
.faq-wrap {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 8.2rem;
  padding: 1rem 6rem;
  background: url(../img/icon_faq_q.svg) no-repeat left 1rem center;
  background-size: 3.5rem 3.5rem;
  position: relative;
}

.faq-question .q-text {
  font-weight: var(--font-medium);
}

.faq-question .faq-toggle-icon {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  font-weight: var(--font-bold);
  color: var(--color-lightblue);
  transition: opacity var(--normal-transition);
}

.faq-question .faq-toggle-icon:after {
  content: "＋";
}

.faq-question .faq-toggle-icon.is-open:after {
  content: "－";
}

.faq-answer {
  position: relative;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}

.faq-answer .a-text {
  padding: 2.2rem 2rem 2rem 6rem;
  background: url(../img/icon_faq_a.svg) no-repeat left 1rem top 1.6rem;
  background-size: 3.5rem 3.5rem;
  font-weight: var(--font-medium);
}

.faq-answer:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-bg-gray);
  position: absolute;
  top: 0;
  left: 0;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

@media (min-width: 768px) {
  .faq-wrap {
    gap: 1.071vw;
  }
  .faq-question {
    min-height: 5.714vw;
    padding: 2.143vw 5.429vw;
    background: url(../img/icon_faq_q.svg) no-repeat left 1.429vw center;
    background-size: 2.857vw 2.857vw;
    transition: opacity var(--normal-transition);
  }
  .faq-question:hover {
    opacity: 0.6;
  }
  .faq-question .faq-toggle-icon {
    right: 2.857vw;
  }
  .faq-answer .a-text {
    padding: 2.143vw 2.143vw 2.143vw 5.429vw;
    background: url(../img/icon_faq_a.svg) no-repeat left 1.429vw top 2.143vw;
    background-size: 2.857vw 2.857vw;
  }
}
.fs-faq {
  font-size: 1.4rem;
  line-height: var(--lh-md);
}

@media (min-width: 768px) {
  .fs-faq {
    font-size: clamp(1.6rem, 0.791vw + 0.992rem, 2.1rem);
  }
}
.link-sub {
  margin-top: 5rem;
  padding: 3rem 0 5rem;
  background-color: var(--color-lightblue);
  color: var(--color-white);
}

.link-sub .sec-title {
  text-align: center;
}

.link-sub__wrap {
  width: 65%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-sub__btn {
  padding: 1rem 0;
  font-weight: var(--font-medium);
  background: url(../img/arrow_w.svg) no-repeat 100%;
  background-size: 3rem 3rem;
  position: relative;
}

.link-sub__btn + .link-sub__btn:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #8ac7d4;
  position: absolute;
  top: -0.5rem;
  left: 0;
}

.link-sub__btn.external-link {
  padding-right: 3.5rem;
}

@media (min-width: 768px) {
  .link-sub {
    margin-top: 10vw;
    padding: 2.143vw 0 3.571vw;
  }
  .link-sub .sec-title {
    padding-bottom: 2.143vw;
  }
  .link-sub__wrap {
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 3.571vw;
  }
  .link-sub-narrow .link-sub__wrap {
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1vw 3.571vw;
  }
  .link-sub__btn {
    padding: 1.071vw 3.929vw 1.071vw 0;
    font-weight: var(--font-medium);
    background: url(../img/arrow_w.svg) no-repeat 100%;
    background-size: 2.5vw 2.5vw;
    transition: opacity var(--normal-transition);
  }
  .link-sub__btn:hover {
    opacity: 0.6;
  }
  .link-sub__btn + .link-sub__btn:before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #8ac7d4;
    position: absolute;
    top: 0;
    left: -1.786vw;
  }
}
.callout-parent {
  position: relative;
}

.sec-title.callout-parent {
  padding-top: 3rem;
}

.callout {
  position: absolute;
  top: -3.3rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  background: var(--color-yellow);
  color: var(--color-lightblue);
  padding: 0.5rem 2rem;
  border-radius: 5rem;
  white-space: nowrap;
  border: 2px solid #fff;
  font-weight: var(--font-medium);
}

.sec-title .callout {
  top: -1.5rem;
}

.callout.left {
  left: 0;
  transform: translateX(0);
}

.callout:after {
  border-width: 6px;
  border-style: solid;
  border-color: var(--color-yellow) transparent transparent transparent;
}

.callout:after,
.callout:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.callout:before {
  border: 10px solid transparent;
  border-top-color: #fff;
}

@media (min-width: 768px) {
  .callout {
    font-size: 1.4rem;
  }
}
.mt15 {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .mt15 {
    margin-top: 1vw;
  }
}
.mt30 {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .mt30 {
    margin-top: 2.143vw;
  }
}
.mt50 {
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .mt50 {
    margin-top: 3.571vw;
  }
}
.mt100 {
  margin-top: 5rem;
}

@media (min-width: 768px) {
  .mt100 {
    margin-top: 7.143vw;
  }
}
.mt70 {
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .mt70 {
    margin-top: 5vw;
  }
}
.mb100 {
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .mb100 {
    margin-bottom: 7.143vw;
  }
}
.mw20 {
  margin-left: 4.255vw;
  margin-right: 4.255vw;
}

@media (min-width: 768px) {
  .mw20 {
    margin-left: 1.429vw;
    margin-right: 1.429vw;
  }
}
.mw96 {
  margin-left: 4.255vw;
  margin-right: 4.255vw;
}

@media (min-width: 768px) {
  .mw96 {
    margin-left: 6.857vw;
    margin-right: 6.857vw;
  }
}
.pt50 {
  padding-top: 2.5rem;
}

@media (min-width: 768px) {
  .pt50 {
    padding-top: 3.571vw;
  }
}
.pt100 {
  padding-top: 5rem;
}

@media (min-width: 768px) {
  .pt100 {
    padding-top: 7.143vw;
  }
}
.pb15 {
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .pb15 {
    padding-bottom: 1.071vw;
  }
}
.pb100 {
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .pb100 {
    padding-bottom: 7.143vw;
  }
}
.pw20 {
  padding-left: 4.255vw;
  padding-right: 4.255vw;
}

@media (min-width: 768px) {
  .pw20 {
    padding-left: 1.429vw;
    padding-right: 1.429vw;
  }
}
.pw96 {
  padding-left: 4.255vw;
  padding-right: 4.255vw;
}

@media (min-width: 768px) {
  .pw96 {
    padding-left: 6.857vw;
    padding-right: 6.857vw;
  }
}
.fs-12 {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .fs-12 {
    font-size: clamp(1rem, 0.316vw + 0.757rem, 1.2rem);
  }
}
.fs-14 {
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .fs-14 {
    font-size: clamp(1.2rem, 0.316vw + 0.957rem, 1.4rem);
  }
}
.fs-16 {
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .fs-16 {
    font-size: clamp(1.4rem, 0.316vw + 1.157rem, 1.6rem);
  }
}
.fs-18 {
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .fs-18 {
    font-size: clamp(1.4rem, 0.633vw + 0.914rem, 1.8rem);
  }
}
.fs-21 {
  font-size: 1.6rem;
}

@media (min-width: 768px) {
  .fs-21 {
    font-size: clamp(1.6rem, 0.791vw + 0.992rem, 2.1rem);
  }
}
.fs-24 {
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  .fs-24 {
    font-size: clamp(1.8rem, 0.949vw + 1.071rem, 2.4rem);
  }
}
.fs-28 {
  font-size: 2rem;
}

@media (min-width: 768px) {
  .fs-28 {
    font-size: clamp(2rem, 1.266vw + 1.028rem, 2.8rem);
  }
}
.fs-30 {
  font-size: 2rem;
}

@media (min-width: 768px) {
  .fs-30 {
    font-size: clamp(2rem, 1.582vw + 0.785rem, 3rem);
  }
}
.fs-34 {
  font-size: 2.1rem;
}

@media (min-width: 768px) {
  .fs-34 {
    font-size: clamp(2.1rem, 2.057vw + 0.52rem, 3.4rem);
  }
}
.fs-36 {
  font-size: 2.3rem;
}

@media (min-width: 768px) {
  .fs-36 {
    font-size: clamp(2.3rem, 2.057vw + 0.72rem, 3.6rem);
  }
}
.fs-40 {
  font-size: 3rem;
}

@media (min-width: 768px) {
  .fs-40 {
    font-size: clamp(3rem, 1.582vw + 1.785rem, 4rem);
  }
}
.fs-50 {
  font-size: 3rem;
}

@media (min-width: 768px) {
  .fs-50 {
    font-size: clamp(3rem, 3.3vw + 0.228rem, 5.2rem);
  }
}
.fs-60 {
  font-size: 3.5rem;
}

@media (min-width: 768px) {
  .fs-60 {
    font-size: clamp(3rem, 4.743vw - 0.638rem, 6rem);
  }
}
.fs-80 {
  font-size: 4rem;
}

@media (min-width: 768px) {
  .fs-80 {
    font-size: clamp(4rem, 6.329vw - 0.861rem, 8rem);
  }
}
body.loading {
  overflow: hidden;
  height: 100vh;
}

.swiper.interview.swiper-initializing,
.swiper.member.swiper-initializing,
.swiper.voice.swiper-initializing {
  visibility: hidden;
}/*# sourceMappingURL=style.css.map */