@charset "UTF-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, figure, figcaption {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

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

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

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

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

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

input, textarea, select {
  *font-size: 100%;
}

legend {
  color: #000;
}

* {
  box-sizing: border-box;
}

img {
  margin: 0;
  padding: 0;
  height: auto;
  border-style: none;
  vertical-align: bottom;
  border: none;
}

p {
  word-break: break-all;
  word-wrap: break-word;
}

strong {
  font-weight: bold;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

:root {
  --space-micro: 8px;
  --space-xxs: 16px;
  --space-xs: 24px;
  --space-s: 32px;
  --space-m: 40px;
  --space-l: 80px;
  --space-xl: 120px;
  --inner-width: 1120px;
  --inner-padding: 2%;
  --inner-small: calc(100% * (1000px / var(--inner-width)));
  --font-size-body: 1.6rem;
  --font-size-heading: 2.4rem;
  --font-size-h3: 1.8rem;
  --font-size-cta: 3.2rem;
  --font-size-emphasis: 2.0rem;
  --opacity-hover: 0.7;
  --opacity-overlay: 0.45;
  --radius-xs: 4px;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-xl: 32px;
  --radius-xxl: 40px;
  --radius-full: 50%;
  --cta-shadow: 2px 2px 10px -3px rgba(167, 176, 193, 0.63);
  --intro-shadow: 0px 0px 12px -3px rgba(185, 188, 193, 0.43);
  --price-shadow: 0px 0px 12px -3px rgba(185, 188, 193, 0.43);
}
@media screen and (max-width: 1020px) {
  :root {
    --space-micro: 8px;
    --space-xxs: 16px;
    --space-xs: 24px;
    --space-s: 32px;
    --space-m: 40px;
    --space-l: 80px;
    --space-xl: 120px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --space-micro: 4px;
    --space-xxs: 8px;
    --space-xs: 16px;
    --space-s: 24px;
    --space-m: 32px;
    --space-l: 56px;
    --space-xl: 64px;
    --font-size-heading: 3.2rem;
    --font-size-cta: 2.6rem;
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HiraKakuPro-W3", "Meiryo", "Helvetica Neue", Arial, "MS Pゴシック", sans-serif;
  color: #1A1A1A;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  -webkit-text-size-adjust: 100%;
  background: #fff;
}

a:link {
  color: inherit;
  transition: 0.3s all;
}
a:visited {
  color: inherit;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 890px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

img {
  width: 100%;
}

.l-inner {
  width: 100%;
  max-width: var(--inner-width);
  margin-inline: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 1160px) {
  .l-inner {
    padding-inline: var(--inner-padding);
  }
}
@media screen and (max-width:490px) {
  .l-inner {
    padding-inline: 3%;
  }
}

.l-inner__s {
  width: min(832px, var(--inner-small));
  margin-inline: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .l-inner__s {
    width: 85vw;
  }
}

.section-heading-img {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  margin-bottom: var(--space-m);
}

.pagetop {
  position: fixed;
  bottom: 100px;
  right: 50px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .pagetop {
    display: none;
  }
}
.pagetop a {
  background: #1675d3;
  border: 2px solid #fff;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
}
.pagetop a::before {
  content: "";
  border-bottom: 10px solid #fff;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.pagetop a:hover {
  background: #fff;
  border: 2px solid #1675d3;
}
.pagetop a:hover::before {
  content: "";
  border-bottom: 10px solid #1675d3;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.highlight {
  background: #ffe888;
  padding: 0px 2px 1px 3px;
}

.underline {
  text-decoration: underline;
  text-decoration-thickness: 0.4em;
  text-decoration-color: #ffdc48;
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.spacer {
  margin-left: var(--space-micro);
}

@media screen and (max-width: 768px) {
  .sp_br::before {
    content: "\a";
    white-space: pre;
  }
}

.pc_br::before {
  content: "\a";
  white-space: pre;
}
@media screen and (max-width: 768px) {
  .pc_br::before {
    content: none;
  }
}

.big {
  font-size: 1.3em;
  font-weight: 700;
}

.small {
  font-size: 0.8em;
}

.accent {
  color: #d8230b;
}

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

.tab {
  display: none;
}
@media screen and (max-width: 890px) {
  .tab {
    display: block;
  }
}

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

header {
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 890px) {
  header {
    padding: 24px;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 16px 3% 24px;
  }
}
header .header__logo-box .location__text {
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (max-width: 1160px) {
  header .header__logo-box .location__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  header .header__logo-box .location__text {
    font-size: 1.2rem;
  }
}
header .header__logo-box .location__text::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/slash.svg") no-repeat;
  width: 6px;
  height: 12px;
  margin: 0px 2px -1px 0px;
}
header .header__logo-box .location__text::after {
  content: "";
  display: inline-block;
  background: url("../../assets/img/slash.svg") no-repeat;
  width: 6px;
  height: 12px;
  margin: 0px 0px -1px 0px;
  transform: scale(-1, 1);
}
header .header__logo-box .header__logo img {
  width: 386px;
  height: auto;
}
@media screen and (max-width: 1160px) {
  header .header__logo-box .header__logo img {
    width: clamp(240px, 65vw, 360px);
  }
}
header .header__logo-box .header__logo:hover {
  opacity: var(--opacity-hover);
}
header .header__cta {
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 1160px) {
  header .header__cta {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
@media screen and (max-width: 1020px) {
  header .header__cta .tel__box {
    display: none;
  }
}
header .header__cta .tel__box .tel-num {
  font-size: 3.9rem;
}
header .header__cta .tel__box .time {
  font-size: 1.4rem;
}
header .header__cta .tel__box .time__fix {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  header .header__cta .button__wrapper {
    display: none;
  }
}
header .header__cta .button__wrapper .-button {
  font-size: 2.4rem;
  padding: 14px 25px 16px 30px;
}
header .header__cta .button__wrapper .-button::before {
  width: 64px;
  height: 64px;
}
header .header__cta .sp-mail_button {
  background: #ff9810;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 999;
}
header .header__cta .sp-mail_button img {
  width: 23px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

footer {
  background: #e9f0f4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer {
    padding-bottom: 18vw;
  }
}
@media screen and (max-width:490px) {
  footer {
    padding-bottom: 25vw;
  }
}
footer.-fixed {
  position: fixed;
  bottom: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer.-fixed {
    position: static;
  }
}

.f__wrapper {
  position: relative;
  padding: var(--space-m) 0px;
}
.f__wrapper::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/sakura-bg@2x.webp") no-repeat center right/cover;
  max-width: 870px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.footer__box {
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  gap: var(--space-xxs) var(--space-m);
  margin-bottom: var(--space-xs);
  position: relative;
  z-index: 1;
}
@media screen and (max-width:490px) {
  .footer__box {
    flex-direction: column;
  }
}
.footer__box a {
  text-decoration: underline;
}
.footer__box a::before {
  content: "";
  display: inline-block;
  background: #1A1A1A;
  width: 4px;
  height: 7px;
  clip-path: polygon(0% 100%, 100% 50%, 0% 0%);
  margin: 0px 4px 2px 0px;
}
.footer__box a::after {
  content: "";
  display: inline-block;
  background: url("../../assets/img/link-icon.svg") no-repeat;
  width: 9.5px;
  height: 9.5px;
  margin: 0px 0px 2px 4px;
}
.footer__box a:hover {
  opacity: var(--opacity-hover);
}

.footer-copy {
  color: #1A1A1A;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.button__wrapper {
  position: relative;
  margin-left: 40px;
}

.-button {
  display: block;
  padding: 14px 25px 16px 56px;
  border-radius: 12px;
  font-size: 3.2rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  background: #ff9810;
  box-shadow: var(--cta-shadow);
}
.-button::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/counseling-icon.svg") no-repeat;
  width: 83px;
  height: 83px;
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.-button:hover {
  opacity: var(--opacity-hover);
}
.-button, .-button:visited, .-button:link {
  color: #fff;
}
.-button .small {
  display: block;
}

.tel__box .tel-num {
  font-family: "Roboto", sans-serif;
  font-size: 5rem;
  color: #0a203a;
}
@media screen and (max-width:490px) {
  .tel__box .tel-num {
    font-size: 4rem;
  }
}
.tel__box .tel-num::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/tel-icon.svg") no-repeat;
  width: 55px;
  height: 31px;
  margin: 0px 4px -2px 0px;
}
.tel__box .time {
  color: #0a203a;
  margin-top: -12px;
  font-size: 1.8rem;
}
@media screen and (max-width:490px) {
  .tel__box .time {
    text-align: center;
  }
}
.tel__box .time .time__title {
  font-weight: 700;
  margin-right: 4px;
}
.tel__box .time .time__fix {
  background: #1675d3;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0px 6px 2px;
  border-radius: var(--radius-m);
  margin-bottom: 1px;
}
@media screen and (max-width:490px) {
  .tel__box .time .time__fix {
    display: block;
  }
}

.cta {
  position: relative;
  background: #d1e3f5 url("../../assets/img/cta-bg.png") no-repeat center left/cover;
  overflow: hidden;
  padding: var(--space-m) 0px 50px;
}
.cta::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/sakura-bg@2x.webp") no-repeat center right/cover;
  max-width: 870px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.cta .l-inner {
  position: relative;
  z-index: 1;
}
.cta .cta__heading {
  font-size: var(--font-size-cta);
  font-weight: 700;
  text-align: center;
  color: #0a203a;
  margin-bottom: var(--space-xs);
}
@media screen and (max-width:490px) {
  .cta .cta__heading {
    font-size: 2.2rem;
  }
}
.cta .cta__wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  gap: var(--space-s) var(--space-m);
}
@media screen and (max-width: 1020px) {
  .cta .cta__wrapper {
    flex-direction: column;
  }
}
@media screen and (max-width:490px) {
  .cta .-button {
    font-size: 2rem;
  }
}

.fix {
  position: fixed;
  width: 30%;
  right: 0;
  z-index: 999;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s;
}

.fix.is-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.floating {
  display: none;
  padding: var(--space-xxs) 2% 36px;
  text-align: center;
  background: #d1e3f5 url("../../assets/img/cta-bg.png") no-repeat center left/cover;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}
.floating .tel__box .tel-num {
  font-size: 3.2rem;
}
.floating .tel__box .time {
  font-size: 1.6rem;
}
@media screen and (max-width:490px) {
  .floating .tel__box .time {
    font-size: 1.4rem;
  }
}
.floating .tel__box .time .time__fix {
  font-size: 1.2rem;
}
@media screen and (max-width:490px) {
  .floating .tel__box .time .time__fix {
    display: inline-block;
  }
}
.floating .attention__wrapper {
  position: relative;
}
.floating .attention {
  background: #1675d3;
  color: #fff;
  text-align: center;
  width: 100vw;
  font-weight: 700;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width:490px) {
  .floating .attention {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .floating {
    display: block;
  }
}

.hero-wrapper {
  position: relative;
}
.hero-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("../../assets/img/main-bg-grid.webp") repeat;
  z-index: -1;
}

.contents__heading {
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  overflow: hidden;
  background: url("../../assets/img/main-bg-city@2x.webp") no-repeat center/cover;
  height: 300px;
  position: relative;
  z-index: 5;
  top: 0;
  margin-top: -130px;
}
.contents__heading h1 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #0a203a;
  text-align: center;
  padding-top: 140px;
}
@media screen and (max-width: 768px) {
  .contents__heading h1 {
    font-size: 3.2rem;
    padding: 160px 3% 0px;
  }
}

footer {
  padding-bottom: 0px;
}

.policy {
  padding: var(--space-m) 0px;
}
.policy .policy__title {
  margin: 40px 0px 16px;
  font-weight: 700;
  font-size: 2rem;
}
.policy .policy__list-num {
  counter-reset: number;
  list-style: none;
  padding-left: 0;
}
.policy .policy__list-num > .list-item {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 0.5em;
}
.policy .policy__list-num > .list-item::before {
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}
.policy .policy__list {
  list-style: none;
}
.policy .policy__list .list-item {
  padding-left: 1.2em;
}
.policy .policy__list .list-item::before {
  content: "・";
}

.policy__table {
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  max-width: 600px;
  line-height: 1.5;
  margin-bottom: var(--space-m);
}
.policy__table .info__title {
  width: 25%;
  font-weight: 700;
  padding-right: 16px;
  margin-bottom: 8px;
}
.policy__table .info__detail {
  width: 75%;
  margin-bottom: 8px;
}

.date {
  text-align: right;
}

.thanks {
  padding: 80px 0px;
  text-align: center;
}

.thanks__title {
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 2.6rem;
}

.thanks__text {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .thanks__text {
    text-align: left;
  }
}

.thanks__text-link {
  text-decoration: underline;
}

.thanks__button {
  background: #1675d3;
  color: #fff;
  border-radius: 50px;
  max-width: 280px;
  margin: 0 auto;
  transition: 0.3s all;
}
.thanks__button:hover {
  opacity: 0.7;
}

.thanks__button-link {
  display: block;
  width: 100%;
  color: #fff;
  font-weight: 700;
  padding: 8px;
}/*# sourceMappingURL=contents.css.map */