@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;
  overflow: hidden;
}
.hero-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: url("../../assets/img/main-bg-grid.webp") repeat;
  z-index: -1;
}

.mv {
  margin-top: -6.7%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: 0px;
  }
}
.mv .mv__img {
  text-align: center;
}
.mv .mv__img img {
  width: 100%;
  display: block;
}
.mv::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .mv::after {
    content: "";
    display: inline-block;
    background: linear-gradient(to bottom, #025fbc, rgba(97, 140, 175, 0.4), rgba(97, 140, 175, 0));
    width: 100%;
    height: 140px;
  }
}

.intro {
  margin-top: -50px;
}
.intro .section-heading-img {
  background: url("../../assets/img/intro-title-pc@2x.webp") no-repeat center/100%;
  max-width: 908px;
  height: 191px;
}
@media screen and (max-width: 1160px) {
  .intro .section-heading-img {
    max-width: 758px;
    height: 159px;
  }
}
@media screen and (max-width: 890px) {
  .intro .section-heading-img {
    background: url("../../assets/img/intro-title-tab@2x.webp") no-repeat center/100%;
    max-width: 555px;
    height: 191px;
  }
}
@media screen and (max-width:490px) {
  .intro .section-heading-img {
    background: url("../../assets/img/intro-title-sp@2x.webp") no-repeat center/100%;
    max-width: 349px;
    height: 120px;
  }
}
.intro .intro__anxiety-list-wrapper {
  background: url("../../assets/img/intro-check-bg.webp") repeat;
  border-radius: 20px;
  padding: var(--space-m) 56px;
  text-align: left;
  gap: 32px 20px;
  box-shadow: var(--intro-shadow);
  position: relative;
  display: flex;
}
@media screen and (max-width: 1160px) {
  .intro .intro__anxiety-list-wrapper {
    padding: var(--space-m) var(--space-s);
  }
}
@media screen and (max-width: 890px) {
  .intro .intro__anxiety-list-wrapper {
    flex-direction: column;
    padding: var(--space-m) var(--space-s) 0px var(--space-s);
  }
}
@media screen and (max-width: 768px) {
  .intro .intro__anxiety-list-wrapper {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
.intro .intro__anxiety-list-wrapper .anxiety__list-img {
  width: 275px;
  height: auto;
  position: absolute;
  right: 40px;
  bottom: 0;
}
@media screen and (max-width: 1160px) {
  .intro .intro__anxiety-list-wrapper .anxiety__list-img {
    right: 24px;
    width: 240px;
  }
}
@media screen and (max-width: 890px) {
  .intro .intro__anxiety-list-wrapper .anxiety__list-img {
    position: static;
    margin: 0 auto;
  }
}
.intro .intro__anxiety-list-wrapper .anxiety__list {
  position: relative;
  z-index: 1;
}
.intro .intro__anxiety-list-wrapper .anxiety__list .list-item {
  font-weight: 700;
  font-size: 1.8rem;
  padding-left: 1em;
  text-indent: -1em;
}
.intro .intro__anxiety-list-wrapper .anxiety__list .list-item:not(:last-child) {
  margin-bottom: 8px;
}
.intro .intro__anxiety-list-wrapper .anxiety__list .list-item::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/intro-check-icon.svg") no-repeat;
  width: 17px;
  height: 28px;
  margin: 0px 4px -1px 0px;
}
.intro .solution {
  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: 32px 32px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .intro .solution {
    flex-direction: column;
    text-align: center;
  }
}
.intro .solution img {
  max-width: 270px;
  height: auto;
}
.intro .solution .solution__text-box .solution_title {
  font-weight: 700;
  font-size: 2.8rem;
  color: #ff9810;
}
@media screen and (max-width: 890px) {
  .intro .solution .solution__text-box .solution_title {
    font-size: 2.4rem;
  }
}
.intro .solution .solution__text-box .solution_text {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: var(--space-s);
}
@media screen and (max-width: 890px) {
  .intro .solution .solution__text-box .solution_text {
    font-size: 1.8rem;
  }
}
.intro .solution .solution__text-box .price-link {
  color: #1675d3;
  font-weight: 700;
  border: 2px solid #1675d3;
  background: #fff;
  border-radius: 30px;
  padding: 12px 20px 14px;
}
.intro .solution .solution__text-box .price-link::after {
  content: "";
  display: inline-block;
  background: #1675d3;
  clip-path: polygon(0% 100%, 100% 50%, 0% 0%);
  width: 4px;
  height: 8px;
  margin: 0px 0px 2px 4px;
}
.intro .solution .solution__text-box .price-link:hover {
  background: #1675d3;
  color: #fff;
}
.intro .solution .solution__text-box .price-link:hover::after {
  content: "";
  background: #fff;
}

.reason {
  background: #f0faff;
  padding: var(--space-l) 0px;
  margin-top: var(--space-l);
}
.reason .section-heading-img {
  background: url("../../assets/img/reason-title@2x.webp") no-repeat center/100%;
  max-width: 577px;
  height: 180px;
}
.reason .reason__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;
}
@media screen and (max-width: 890px) {
  .reason .reason__box {
    flex-direction: column;
  }
}
.reason .reason__box {
  gap: var(--space-xs) var(--space-m);
}
.reason .reason__box:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 890px) {
  .reason .reason__box:nth-child(even) {
    flex-direction: column;
  }
}
.reason .reason__box:not(:last-child) {
  margin-bottom: 48px;
}
@media screen and (max-width: 890px) {
  .reason .reason__box:not(:last-child) {
    margin-bottom: 56px;
  }
}
.reason .reason__box img {
  width: min(480px, 80vw);
}
.reason .reason__box .text__box {
  position: relative;
}
@media screen and (max-width: 890px) {
  .reason .reason__box .text__box {
    width: min(600px, 80vw);
  }
}
.reason .reason__box .text__box .reason__title {
  font-weight: 700;
  font-size: 2.6rem;
  color: #1675d3;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-s);
}
@media screen and (max-width: 890px) {
  .reason .reason__box .text__box .reason__title {
    margin-bottom: 16px;
    font-size: 2.4rem;
  }
}
.reason .reason__box .text__box .reason__text {
  position: relative;
  z-index: 1;
}
.reason .reason__box .text__box .reason__text span {
  font-weight: 700;
}

.price {
  background: url("../../assets/img/price-bg.webp") repeat;
  padding: var(--space-l) 0px;
}
.price .section-heading-img {
  background: url("../../assets/img/price-title-pc@2x.webp") no-repeat center/100%;
  max-width: 602px;
  height: 89px;
}
@media screen and (max-width: 890px) {
  .price .section-heading-img {
    background: url("../../assets/img/price-title-tab@2x.webp") no-repeat center/100%;
    max-width: 654px;
    height: 199px;
  }
}
@media screen and (max-width:490px) {
  .price .section-heading-img {
    background: url("../../assets/img/price-title-sp@2x.webp") no-repeat center/100%;
    max-width: 349px;
    height: 114px;
  }
}
.price .price_description__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: 14px 14px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .price .price_description__box {
    flex-direction: column-reverse;
  }
}
.price .price_description__box .description__text {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width:490px) {
  .price .price_description__box .description__text {
    text-align: left;
  }
}
.price .price_description__box img {
  max-width: 120px;
  height: auto;
}

.price__box {
  background: #fff;
  box-shadow: var(--price-shadow);
  border-radius: 20px;
  padding: var(--space-s) var(--space-m);
  position: relative;
}
.price__box:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 1020px) {
  .price__box {
    padding: var(--space-s);
  }
}
@media screen and (max-width: 768px) {
  .price__box {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.price__box .price__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: var(--space-xxs);
  color: #0a203a;
}
.price__box .price__title::before {
  content: "";
  display: inline-block;
  background: #1675d3;
  width: 10px;
  height: 24px;
  margin: 0px 8px -3px 0px;
}
.price__box .price-link {
  text-align: right;
  display: block;
  margin-top: var(--space-xxs);
}
.price__box .price-link::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;
}
.price__box .price-link:hover {
  opacity: var(--opacity-hover);
}

.price__accordion {
  cursor: pointer;
}
.price__accordion summary {
  list-style: none;
}
.price__accordion summary::-webkit-details-marker {
  display: none;
}
.price__accordion .price__title {
  position: relative;
}
.price__accordion .price__title::after {
  content: "";
  display: inline-block;
  background: url("../../assets/img/accordion-blue.svg") no-repeat;
  width: 20px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: scale(1, -1);
  transition: transform 0.3s;
}
.price__accordion[open] .price__title::after {
  transform: none;
}

.reward_explain {
  display: flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  gap: 16px 16px;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: var(--space-xs);
  margin-bottom: var(--space-xs);
}
@media screen and (max-width:490px) {
  .reward_explain {
    flex-direction: column;
  }
}
.reward_explain .reward_type {
  background: #ffdc48;
  color: #1675d3;
  font-weight: 700;
  font-size: 2.4rem;
  padding: 16px 8px;
}
@media screen and (max-width:490px) {
  .reward_explain .reward_type {
    width: 100%;
    text-align: center;
    padding: 8px 8px 9px;
  }
}
.reward_explain .explain_text {
  font-weight: 700;
  font-size: 2.4rem;
  color: #d8230b;
  line-height: 1.4;
}
.reward_explain .explain_text .attention {
  font-size: 1.6rem;
  font-weight: 400;
  color: #1A1A1A;
}

.loan-img__box {
  margin-left: 88px;
}
@media screen and (max-width: 768px) {
  .loan-img__box {
    margin-left: auto;
    text-align: center;
  }
}
.loan-img__box::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/loan-img01.svg") no-repeat;
  width: 125px;
  height: 135px;
  position: absolute;
  bottom: 0;
  left: 40px;
}
@media screen and (max-width: 768px) {
  .loan-img__box::before {
    content: none;
  }
}
.loan-img__box img {
  max-width: 586px;
}
@media screen and (max-width: 768px) {
  .loan-img__box img {
    width: 45vw;
  }
}
@media screen and (max-width:490px) {
  .loan-img__box img {
    width: 70vw;
  }
}

.plan_box .plan__title {
  background: #ffefae;
  padding: 4px 8px;
  font-weight: 700;
  margin-bottom: var(--space-micro);
}
.plan_box .plan__text {
  margin-bottom: var(--space-xxs);
}
.plan_box .plan__text .emphasis {
  font-weight: 700;
}
.plan_box .plan__text .text_link {
  text-decoration: underline;
}
.plan_box .support_plan__list {
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  align-items: stretch;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  gap: 16px 16px;
  margin-bottom: 5px;
}
.plan_box .support_plan__wrapper {
  background: #e9f0f4;
  border-radius: 8px;
  width: min(240px, 80vw);
  padding: var(--space-xxs) var(--space-micro);
}
.plan_box .support_plan__wrapper .type,
.plan_box .support_plan__wrapper .support_plan {
  font-weight: 700;
  text-align: center;
}
.plan_box .support_plan__wrapper .type {
  font-size: 1.4rem;
  line-height: 1.4;
  border-bottom: 1px solid #d1dfe5;
  padding-bottom: var(--space-xxs);
  margin-bottom: 16px;
}
.plan_box .support_plan__wrapper .support_plan {
  font-size: 1.8rem;
  color: #1675d3;
}
@media screen and (max-width: 768px) {
  .plan_box .support_plan__wrapper .support_plan {
    font-size: 1.6rem;
  }
}
.plan_box .attention {
  font-size: 1.4rem;
  margin-bottom: var(--space-m);
}

.table__wrapper {
  margin-bottom: var(--space-s);
}
@media screen and (max-width: 1160px) {
  .table__wrapper {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    table-layout: auto;
  }
}

.table__auxiliary {
  font-weight: 700;
  color: #1675d3;
  margin-bottom: 16px;
  display: none;
}
@media screen and (max-width: 1020px) {
  .table__auxiliary {
    display: block;
  }
}

.support__table {
  border-top: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  width: 752px;
  table-layout: fixed;
  border-collapse: collapse;
  margin-bottom: 4px;
}
.support__table th, .support__table td {
  border-bottom: 1px solid #eaeaea;
  border-left: 1px solid #eaeaea;
  padding: var(--space-xxs) 10px;
  text-align: center;
  line-height: 1.4;
}
.support__table th:nth-child(1) {
  width: 240px;
}
.support__table th:nth-child(2) {
  width: 170px;
}
.support__table th:nth-child(3) {
  width: 170px;
}
.support__table th:nth-child(4) {
  width: 170px;
}
.support__table th.support_table__title {
  background: #f4f4f4;
  font-weight: 700;
}
.support__table td {
  background: #fff;
}
.support__table td.support_table__title {
  background: #f4f4f4;
  font-weight: 700;
}

.table__attention {
  font-size: 1.4rem;
  padding-left: 1em;
  text-indent: -1em;
}

.taxation__table th:nth-child(1) {
  width: 110px;
}
.taxation__table th:nth-child(2) {
  width: 108px;
}
.taxation__table th:nth-child(3) {
  width: 108px;
}
.taxation__table th:nth-child(4) {
  width: 108px;
}
.taxation__table th:nth-child(5) {
  width: 108px;
}
.taxation__table th:nth-child(6) {
  width: 108px;
}
.taxation__table th:nth-child(7) {
  width: 108px;
}
.taxation__table th, .taxation__table td {
  padding: var(--space-xxs) 4px;
  line-height: 1.2;
}

.sample__box .section-heading-img {
  background: url("../../assets/img/consulting_fee-title@2x.webp") no-repeat center/100%;
  max-width: 400px;
  height: 134px;
}
.sample__box .sample_fee {
  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-xs) var(--space-xxs);
  margin-bottom: var(--space-xxs);
}
@media screen and (max-width: 768px) {
  .sample__box .sample_fee {
    flex-direction: column;
  }
}
.sample__box .sample_fee img {
  width: 120px;
  height: auto;
}
.sample__box .sample_fee .text__box .text_box__premise {
  text-align: center;
}
.sample__box .sample_fee .text__box .text_box__premise .request {
  font-size: 2rem;
  font-weight: 700;
}
.sample__box .sample_fee .text__box .text_box__premise .request::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/slash.svg") no-repeat center/contain;
  width: 10px;
  height: 21px;
  margin: 0px 4px -1px 0px;
}
.sample__box .sample_fee .text__box .text_box__premise .request::after {
  content: "";
  display: inline-block;
  background: url("../../assets/img/slash.svg") no-repeat center/contain;
  width: 10px;
  height: 21px;
  margin: 0px 0px -1px 4px;
  transform: scale(-1, 1);
}
.sample__box .sample_fee .text__box .text_box__premise .current {
  font-weight: 700;
  background: #f2f2f2;
  padding: 2px var(--space-micro);
  color: #1675d3;
  position: relative;
}
.sample__box .sample_fee .text__box .text_box__premise .current::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background: #f2f2f2;
  width: 60px;
  height: 10px;
  clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
}
.sample__box .sample_fee .text__box .sample_price {
  font-weight: 700;
  line-height: 1.4;
}
.sample__box .sample_fee .text__box .sample_price .large {
  font-size: 2rem;
}
.sample__box .sample__box-cta {
  display: block;
  background: #ff9810;
  color: #fff;
  text-align: center;
  border-radius: 12px;
  width: min(500px, 80vw);
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 auto;
  padding: var(--space-xxs) var(--space-xxs);
  line-height: 1.4;
}
.sample__box .sample__box-cta:hover {
  opacity: var(--opacity-hover);
}
.sample__box .sample__box-cta .small {
  display: block;
  font-size: 2rem;
}

.merit_demerit {
  padding-top: var(--space-l);
}
.merit_demerit .section-heading-img {
  background: url("../../assets/img/merit_demerit-title-pc@2x.webp") no-repeat center/100%;
  max-width: 920px;
  height: 135px;
}
@media screen and (max-width: 890px) {
  .merit_demerit .section-heading-img {
    background: url("../../assets/img/merit_demerit-titile-tab@2x.webp") no-repeat center/100%;
    max-width: 549px;
    height: 278px;
  }
}
@media screen and (max-width:490px) {
  .merit_demerit .section-heading-img {
    background: url("../../assets/img/merit_demerit-title-sp@2x.webp") no-repeat center/100%;
    max-width: 293px;
    height: 148px;
  }
}
.merit_demerit .content__wrapper {
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  align-items: stretch;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
}
@media screen and (max-width: 768px) {
  .merit_demerit .content__wrapper {
    flex-direction: column;
  }
}
.merit_demerit .content__wrapper .content__box {
  padding: var(--space-m) var(--space-m);
  width: 50%;
}
@media screen and (max-width: 768px) {
  .merit_demerit .content__wrapper .content__box {
    width: 100%;
  }
}
.merit_demerit .content__wrapper .content__box.merit {
  background: #ffdc48;
  position: relative;
}
.merit_demerit .content__wrapper .content__box.merit::before {
  content: "";
  display: block;
  background: url("../../assets/img/attention-wave.svg") repeat-y left top/12px auto;
  width: 12px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -12px;
}
@media screen and (max-width: 768px) {
  .merit_demerit .content__wrapper .content__box.merit::before {
    background: url("../../assets/img/attention-wave-horizon.svg") repeat-x left top/auto 12px;
    width: 100%;
    height: 12px;
    top: auto;
    bottom: -12px;
    left: 0;
    right: 0;
  }
}
.merit_demerit .content__wrapper .content__box.merit .content__title::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/merit-icon.svg") no-repeat;
  width: 26px;
  height: 26px;
  margin-right: var(--space-micro);
}
.merit_demerit .content__wrapper .content__box.demerit {
  background: #f2f2f2;
}
.merit_demerit .content__wrapper .content__box.demerit .content__title::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/attention-icon.svg") no-repeat;
  width: 26px;
  height: 26px;
  margin-right: var(--space-micro);
}
.merit_demerit .content__wrapper .content__box .content__title {
  color: #1675d3;
  font-size: 2.4rem;
  font-weight: 700;
}
.merit_demerit .content__wrapper .content__box .content__text .emphasis {
  font-weight: 700;
}
.merit_demerit .content__wrapper .content__box .content__text .forte {
  background: #1675d3;
  color: #fff;
  padding: 1px 2px 2px;
}

.support {
  padding-top: var(--space-l);
}
.support .section-heading-img {
  background: url("../../assets/img/support-title@2x.webp") no-repeat center/100%;
  max-width: 374px;
  height: 109px;
}
.support .support__list {
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  gap: var(--space-m) var(--space-m);
}
@media screen and (max-width: 768px) {
  .support .support__list {
    flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
  }
}
.support .support__list .support__box {
  width: 300px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .support .support__list .support__box {
    max-width: 500px;
    width: 100%;
  }
}
.support .support__list .support__box img {
  max-width: 155px;
  height: auto;
}
.support .support__list .support__box .support_title {
  font-weight: 700;
  font-size: 2rem;
  margin: var(--space-xs) 0px var(--space-xxs);
}
.support .support__list .support__box .support_text {
  text-align: left;
}

.voice {
  padding: var(--space-l) 0px;
}
.voice .section-heading-img {
  background: url("../../assets/img/voice-title@2x.webp") no-repeat center/100%;
  max-width: 568px;
  height: 108px;
}
.voice .voice__accordion {
  cursor: pointer;
  background: #e9f0f4;
  border-radius: 20px;
  padding: var(--space-s) var(--space-s);
}
.voice .voice__accordion:not(:last-child) {
  margin-bottom: var(--space-m);
}
.voice .voice__accordion summary {
  list-style: none;
}
.voice .voice__accordion summary::-webkit-details-marker {
  display: none;
}
.voice .voice__accordion summary {
  list-style: none;
  font-size: 2rem;
  font-weight: 700;
}
.voice .voice__accordion summary::-webkit-details-marker {
  display: none;
}
.voice .voice__accordion summary {
  position: relative;
}
.voice .voice__accordion summary::after {
  content: "";
  display: inline-block;
  background: url("../../assets/img/accordion-blue.svg") no-repeat;
  width: 20px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: scale(1, -1);
  transition: transform 0.3s;
}
.voice .voice__accordion summary .voice-type {
  font-size: 1.6rem;
  color: #fff;
  background: #1675d3;
  padding: 1px 2px 2px;
}
.voice .voice__accordion summary .place {
  font-size: 1.6rem;
}
.voice .voice__accordion summary .place::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/place-icon.svg") no-repeat;
  width: 15px;
  height: 19px;
  margin: 0px 2px -1px 0px;
}
.voice .voice__accordion[open] summary::after {
  transform: none;
}
.voice .voice__accordion .details .voice_q {
  font-weight: 700;
  background: #fff;
  padding: 5px var(--space-xxs);
  position: relative;
  margin-top: var(--space-xs);
}
.voice .voice__accordion .details .voice_q::before {
  content: "";
  display: inline-block;
  background: #e9f0f4;
  width: 7px;
  height: 13px;
  clip-path: polygon(0% 100%, 100% 50%, 0% 0%);
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.flow {
  padding-top: var(--space-l);
}
.flow .section-heading-img {
  background: url("../../assets/img/flow-title-pc@2x.webp") no-repeat center/100%;
  max-width: 635px;
  height: 51px;
}
@media screen and (max-width: 890px) {
  .flow .section-heading-img {
    background: url("../../assets/img/flow-title-tab@2x.webp") no-repeat center/100%;
    max-width: 550px;
    height: 140px;
  }
}
@media screen and (max-width:490px) {
  .flow .section-heading-img {
    background: url("../../assets/img/flow-title-sp@2x.webp") no-repeat center/100%;
    max-width: 293px;
    height: 74px;
  }
}
.flow .flow__list {
  display: flex;
  flex-direction: column;
  row-gap: 64px;
}
.flow .flow__list .list-item {
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  gap: var(--space-m) var(--space-xs);
}
@media screen and (max-width: 768px) {
  .flow .flow__list .list-item {
    flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
  }
}
.flow .flow__list .list-item img {
  max-width: 150px;
  height: auto;
}
.flow .flow__list .list-item .flow__text-box .flow__title {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: var(--space-xxs);
}
.flow .flow__list .list-item .flow__text-box .flow__text a {
  text-decoration: underline;
}

.faq {
  padding-top: var(--space-l);
  margin-bottom: var(--space-l);
}
.faq .section-heading-img {
  background: url("../../assets/img/faq@2x.webp") no-repeat center/100%;
  max-width: 437px;
  height: 46px;
}
.faq .faq__accordion:not(:last-child) {
  margin-bottom: var(--space-s);
}
.faq .faq__accordion summary {
  list-style: none;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  background: #1675d3;
  border-radius: 8px;
  padding: 10px 50px 14px 24px;
  position: relative;
  padding-left: 2.4em;
  text-indent: -1.6em;
}
.faq .faq__accordion summary::-webkit-details-marker {
  display: none;
}
.faq .faq__accordion summary::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/q-icon.svg") no-repeat;
  width: 22px;
  height: 28px;
  margin: 0px 8px -6px 0px;
}
.faq .faq__accordion summary::after {
  content: "";
  display: inline-block;
  background: url("../../assets/img/accordion-white.svg") no-repeat;
  width: 20px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: scale(1, -1);
  transition: transform 0.3s;
}
.faq .faq__accordion[open] summary::after {
  transform: none;
}
.faq .faq__accordion .faq_a {
  margin-top: 16px;
  padding: 0px 24px;
}

.contact {
  padding: var(--space-l) 0px;
  background: #d1e3f5 url("../../assets/img/contact-bg.png") no-repeat left bottom/cover;
}

.contact__form .section-heading-img {
  background: url("../../assets/img/contact-title-pc@2x.webp") no-repeat center/100%;
  max-width: 644px;
  height: 133px;
}
@media screen and (max-width: 890px) {
  .contact__form .section-heading-img {
    background: url("../../assets/img/contact-title-tab@2x.webp") no-repeat center/100%;
    max-width: 639px;
    height: 223px;
  }
}
@media screen and (max-width:490px) {
  .contact__form .section-heading-img {
    background: url("../../assets/img/contact-title-sp@2x.webp") no-repeat center/100%;
    max-width: 340px;
    height: 119px;
  }
}
@media screen and (max-width: 768px) {
  .contact__form .l-inner__s {
    width: 95vw;
  }
}
.contact__form .tel__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: 16px 24px;
  border-bottom: 1px solid #c7d8dd;
  padding-bottom: var(--space-xs);
  margin-bottom: var(--space-s);
}
@media screen and (max-width: 890px) {
  .contact__form .tel__box {
    flex-direction: column;
  }
}
.contact__form .tel__box .tel-num {
  line-height: 0.4;
}
@media screen and (max-width:490px) {
  .contact__form .tel__box .tel-num {
    font-size: 4rem;
  }
}
@media screen and (max-width: 890px) {
  .contact__form .tel__box .time__wrapper {
    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: 8px 4px;
  }
}
@media screen and (max-width:490px) {
  .contact__form .tel__box .time__wrapper {
    flex-direction: column;
  }
}
.contact__form .tel__box .time__wrapper .time__fix {
  background: #1675d3;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0px 6px 2px;
  border-radius: var(--radius-m);
  margin-bottom: 8px;
  display: inline-block;
}
.contact__form .tel__box .time__wrapper .time {
  color: #0a203a;
  margin-top: -12px;
  font-size: 1.8rem;
}
.contact__form .tel__box .time__wrapper .time .time__title {
  font-weight: 700;
  margin-right: 4px;
}
.contact__form .contact_text {
  font-weight: 700;
  margin-bottom: var(--space-s);
  padding: 0px 16px;
}
.contact__form .contact__form-table {
  margin-inline: auto;
  border-collapse: separate;
  border-spacing: 0px 32px;
}
.contact__form .contact__form-table th {
  font-weight: 700;
  text-align: right;
  width: 30%;
  padding-right: 32px;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .contact__form .contact__form-table th {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0px 0px 15px 0px;
  }
}
@media screen and (max-width: 768px) {
  .contact__form .contact__form-table td {
    display: block;
    width: 100%;
  }
}
.contact__form .required {
  font-size: 1.2rem;
  color: #fff;
  background: #d8230b;
  padding: 1px 3px 2px;
  margin-left: 10px;
  border-radius: var(--radius-xs);
}
.contact__form .any {
  font-size: 1.2rem;
  color: #808080;
  background: #fff;
  border: 1px solid #999999;
  padding: 1px 3px 2px;
  margin-left: 10px;
  border-radius: var(--radius-xs);
}
.contact__form .contact__form-table input {
  background: #fff;
  padding: var(--space-micro) var(--space-xxs);
  border: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact__form .contact__form-table input {
    padding: var(--space-xxs);
  }
}
.contact__form .contact__form-table input.p-postal-code {
  max-width: 250px;
  margin: 0px 0px 5px 5px;
}
.contact__form .contact__form-table textarea {
  border: none;
  max-width: 500px;
  width: 100%;
  min-height: 160px;
  height: 100%;
  background: #fff;
  padding: var(--space-micro) var(--space-xxs);
}
@media screen and (max-width: 768px) {
  .contact__form .contact__form-table textarea {
    max-width: 100%;
    padding: var(--space-xxs);
  }
}
.contact__form .contact__form-table .input--lg {
  max-width: 560px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact__form .contact__form-table .input--lg {
    max-width: 100%;
  }
}
.contact__form .form__button {
  text-align: center;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
.contact__form .form__button .form__button-submit {
  border: none;
  cursor: pointer;
  padding: 13px 30px 15px;
  font-size: 2.4rem;
  max-width: 320px;
  width: 100%;
  transition: 0.3s all;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  background: #ff9810;
}
.contact__form .form__button .form__button-submit, .contact__form .form__button .form__button-submit:visited, .contact__form .form__button .form__button-submit:link {
  color: #fff;
}
.contact__form .form__button .form__button-submit:hover {
  opacity: var(--opacity-hover);
}
.contact__form .policy__wrapper {
  text-align: center;
  margin-bottom: 24px;
}
.contact__form .policy__wrapper .external_link {
  text-decoration: underline;
}
.contact__form .policy__wrapper .external_link::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;
}
.contact__form .policy__wrapper .external_link:hover {
  opacity: var(--opacity-hover);
}

.info {
  padding: var(--space-l) 0px;
}
.info .section-heading-img {
  background: url("../../assets/img/about-title-pc@2x.webp") no-repeat center/100%;
  max-width: 573px;
  height: 41px;
}
@media screen and (max-width: 890px) {
  .info .section-heading-img {
    background: url("../../assets/img/about-title-tab@2x.webp") no-repeat center/100%;
    max-width: 513px;
    height: 105px;
  }
}
@media screen and (max-width:490px) {
  .info .section-heading-img {
    background: url("../../assets/img/about-title-sp@2x.webp") no-repeat center/100%;
    max-width: 314px;
    height: 65px;
  }
}
.info .info__box {
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  gap: var(--space-s) var(--space-m);
}
@media screen and (max-width: 890px) {
  .info .info__box {
    flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
  }
}
.info .info__box .googlemaps {
  max-width: 500px;
  width: 100%;
  aspect-ratio: 500/300;
}
.info .info__box .googlemaps iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.info .info__box .info__table {
  width: 100%;
  max-width: 512px;
  margin-bottom: 63px;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.info .info__box .info__table .info__title {
  width: 30%;
  padding: 0px 0px var(--space-micro) var(--space-xxs);
  border-bottom: 1px solid #f2f2f2;
  font-weight: 700;
  margin-bottom: var(--space-xxs);
}
.info .info__box .info__table .info__detail {
  width: 70%;
  padding: 0px var(--space-xxs) var(--space-micro) 0px;
  border-bottom: 1px solid #f2f2f2;
  margin-bottom: var(--space-xxs);
}
.info .info__box .info__table .info__detail a {
  text-decoration: underline;
}
.info .info__box .info__table .info__detail 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;
}
.info .info__box .info__table .info__detail a:hover {
  opacity: var(--opacity-hover);
}
.info .bio__box {
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  gap: 24px 40px;
}
@media screen and (max-width: 768px) {
  .info .bio__box {
    flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
  }
}
.info .bio__box img {
  max-width: 200px;
}
.info .bio__box .text__box .bio__title {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: var(--space-s);
  line-height: 1.5;
}/*# sourceMappingURL=style.css.map */