@charset "UTF-8";
/* ローカルフォント指定 */
@font-face {
  font-family: "Regular";
  src: url(../font/NotoSansJP-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Medium";
  src: url(../font/NotoSansJP-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "Bold";
  src: url(../font/NotoSansJP-Bold.ttf) format("truetype");
}
/* レスポンシブ設定 */
@media screen and (min-width: 321px) {
  .ssp {
    display: none;
  }
}
@media screen and (min-width: 541px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .tb {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .nb {
    display: none;
  }
}
:root {
  --base-black:#3C3C3C;
  --base-darkgray:#858585;
  --base-gray:#CCCCCC;
  --base-lightgray:#EAEAEA;
  --base-blightgray:#F6F6F6;
  --base-white:#FFFFFF;
  --blue-dark:#6068D5;
  --blue-main:#7980E9;
  --blue-light:#E2E4FF;
  --blue-blight:#F6F7FF;
  --sky-moredark:#199FB4;
  --sky-dark:#1EBED7;
  --sky-main:#79DAE9;
  --sky-light:#E3FCFF;
  --sky-blight:#F2FEFF;
  --green-dark:#2AC854;
  --green-main:#82E36C;
  --green-light:#E3FFDD;
  --green-blight:#F1FFEE;
  --accent-gradation:linear-gradient(135deg,var(--green-main),var(--sky-main),var(--blue-main));
  --accent-light-gradation:linear-gradient(135deg,var(--green-light),var(--sky-light),var(--blue-light));
}

/* デフォルト */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img {
  display: block;
  width: 100%;
}

body {
  color: var(--base-black);
  font-family: "Regular", sans-serif;
}

a {
  display: block;
  text-decoration: none;
  transition: 0.4s;
}
a:hover {
  opacity: 0.8;
}
a.top-logo {
  z-index: 999;
}
a.btn-outline {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border: 1.5px solid var(--base-black);
  border-radius: 6px;
  background-color: var(--base-white);
  padding: 14px 24px;
  font-family: "Noto Sans JP", Helvetica, sans-serif;
  font-size: 14px;
  font-family: "Bold";
  line-height: 20px;
  letter-spacing: 0;
  color: var(--base-black);
  cursor: pointer;
  text-align: center;
  transition: background-color 0.15s ease;
}
a.btn-outline:hover {
  background-color: var(--base-blightgray);
}
a.btn-cta {
  display: block;
  width: 100%;
  padding: 18px 24px;
  border: 1px solid var(--base-white);
  border-radius: 8px;
  font-family: "Noto Sans JP", Helvetica, sans-serif;
  font-size: 15px;
  font-family: "Bold";
  line-height: normal;
  color: var(--base-white);
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s;
}
a.btn-cta.btn-blue {
  background: var(--blue-dark);
}
a.btn-cta.btn-sky {
  background: var(--sky-dark);
}
a.btn-cta.btn-green {
  background: var(--green-dark);
}
a.btn-cta.btn-black {
  background: var(--base-black);
}
a.btn-cta:hover {
  opacity: 0.88;
}

.container {
  max-width: 365px;
  width: 98%;
  margin: 0 auto;
}
@media screen and (max-width:320px) {
  .container {
    width: 90%;
  }
}

.sub-container {
  max-width: 340px;
  width: 91%;
  margin: 0 auto;
}
@media screen and (max-width:320px) {
  .sub-container {
    width: 90%;
  }
}

p {
  font-size: 14px;
}
@media screen and (max-width:320px) {
  p {
    font-size: 12px;
  }
}
p.header-subtitle {
  font-size: 14px;
  font-family: "Bold";
  color: var(--base-white);
  text-align: center;
  line-height: 14px;
  letter-spacing: 0;
  width: 100%;
  margin-bottom: 30px;
}
p.header-subtitle.gr {
  color: var(--base-gray);
}

h1 {
  font-family: "Bold";
}

h2 {
  font-size: 23px;
  text-align: center;
  font-family: "Bold";
}
@media screen and (max-width:320px) {
  h2 {
    font-size: 20px;
  }
}
h2.header-title {
  font-size: 25px;
  font-family: "Bold";
  color: var(--baseblack);
  text-align: center;
  letter-spacing: 0;
  width: 100%;
}
@media screen and (max-width:320px) {
  h2.header-title {
    font-size: 23px;
  }
}
h2.wh {
  color: var(--base-white);
}

section {
  padding: 70px 0;
}
section.green-bg {
  background: url(../img/common/green-bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
}
section.sky-bg {
  background: url(../img/common/sky-bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
}
section.blue-bg {
  background: url(../img/common/blue-bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
}

.pc-bg {
  background: url(../img/common/pc-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px 100px;
  height: 100vh;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width:1024px) {
  .pc-bg {
    padding: 20px 50px;
    justify-content: center;
  }
}
@media screen and (max-width:540px) {
  .pc-bg {
    display: block;
    background: none;
    padding: 0;
  }
}
.pc-bg .left-content {
  max-width: 514px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.pc-bg .left-content img {
  width: 234px;
  margin-bottom: 33px;
}
.pc-bg .left-content p.title {
  font-size: 42px;
  font-family: "Bold";
  margin-bottom: 170px;
}
@media screen and (max-width:1024px) {
  .pc-bg .left-content p.title {
    font-size: 28px;
  }
}
.pc-bg .left-content .status p {
  font-size: 16px;
  margin-bottom: 15px;
}
.pc-bg .left-content .status p.point {
  color: var(--base-white);
  font-size: 12px;
  line-height: 1;
  margin-bottom: 10px;
}
.pc-bg .left-content .status p.point span {
  background-color: var(--green-dark);
  border-radius: 100px;
  padding: 3px 10px;
}
.pc-bg .left-content .status p.point02 {
  color: var(--green-dark);
  font-size: 12px;
  line-height: 1;
  margin-bottom: 0;
}
.pc-bg .left-content .status p.point02 span {
  border: 1px solid var(--green-dark);
  border-radius: 100px;
  padding: 3px 10px;
}
.pc-bg .left-content .status .flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
@media screen and (max-width:1024px) {
  .pc-bg .left-content .status .flex {
    flex-wrap: wrap;
  }
}
.pc-bg .right-content {
  max-width: 514px;
  margin-top: 85px;
}
.pc-bg .right-content p {
  font-size: 26px;
  font-family: "Bold";
  margin-bottom: 40px;
}
@media screen and (max-width:1024px) {
  .pc-bg .right-content p {
    font-size: 20px;
    text-align: right;
  }
}
.pc-bg .right-content .btn-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width:1024px) {
  .pc-bg .right-content .btn-flex {
    flex-wrap: wrap;
  }
}
.pc-bg .right-content .btn-flex a.btn {
  width: 162px;
  height: 162px;
  border: 3px solid var(--base-white);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  font-family: "Bold";
  text-align: center;
  background-color: var(--blue-dark);
  padding-top: 55px;
  border-radius: 87px 80px 5px 80px;
  position: relative;
  color: var(--base-white);
  line-height: 1.3;
  transition: 0.4s;
}
.pc-bg .right-content .btn-flex a.btn::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 16px solid rgba(0, 0, 0, 0.2);
  border-right: 0;
  bottom: -6px;
  right: 2px;
  transform: rotate(45deg);
}
.pc-bg .right-content .btn-flex a.btn.online {
  background-color: var(--sky-dark);
  padding-top: 45px;
}
.pc-bg .right-content .btn-flex a.btn:hover {
  transform: scale(1.04);
}
.pc-bg .main-content {
  width: 413px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:540px) {
  .pc-bg .main-content {
    display: block;
    width: 100%;
  }
}
.pc-bg .main-content .window {
  width: 100%;
  border: 1px solid var(--sky-main);
  border-radius: 35px;
  max-height: 792px;
  height: 90%;
  overflow-y: scroll;
  padding: 10px;
  background-color: var(--base-white);
}
@media screen and (max-width:540px) {
  .pc-bg .main-content .window {
    width: 100%;
    height: auto;
    border: none;
    border-radius: 0px;
    padding: 0;
  }
}
.pc-bg .main-content .window .inner-content {
  border-radius: 28px;
  overflow-y: scroll;
  height: 100%;
  position: relative;
}
@media screen and (max-width:540px) {
  .pc-bg .main-content .window .inner-content {
    border-radius: 0px;
  }
}
.pc-bg .main-content ::-webkit-scrollbar {
  display: none;
}
.pc-bg .main-content p.copylight {
  font-size: 12px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

header {
  display: flex;
  position: fixed;
  align-items: center;
  padding: 15px 19px;
  justify-content: space-between;
  background-color: rgba(var(--base-white), 0.7);
  border-bottom: 3px solid var(--base-white);
  width: 100%;
  backdrop-filter: blur(10px);
  max-width: 390px;
  border-radius: 28px 28px 0 0;
  z-index: 999;
}
@media screen and (max-width:540px) {
  header {
    max-width: none;
    border-radius: 0px;
  }
}
header img.logo {
  width: 191px;
}
header .top-bar-open {
  background: #fff;
  padding: 16px 16px 12px;
  box-shadow: 0px -6px 15px rgba(0, 0, 0, 0.2);
}
header .top-bar-open__click {
  border-radius: 100%;
}
header .top-bar-open__click span {
  z-index: 999;
  position: relative;
  display: block;
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 10px;
  background: var(--base-black);
  margin: 5px auto;
  transition: 0.3s;
}
header .top-bar-open__click.open span {
  background: var(--base-black);
  transition: 0.3s;
}
header .top-bar-open__click.open span:first-child {
  transform: rotate(45deg) translateY(6px);
  margin: 5px auto;
}
header .top-bar-open__click.open span:nth-child(2) {
  display: none;
}
header .top-bar-open__click.open span:nth-child(3) {
  margin: 5px auto;
  transform: rotate(-45deg) translate(-1px, -5px);
}
header .top-bar {
  height: 100vh;
  max-height: 721px;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  border-radius: 0 0 28px 28px;
  background: var(--base-white);
}
@media screen and (max-width:540px) {
  header .top-bar {
    border-radius: 0px;
  }
}
header .top-bar__menu p.title {
  font-size: 12px;
  color: var(--base-darkgray);
  margin-bottom: 10px;
}
header .top-bar__menu ul li {
  list-style: none;
  position: relative;
}
header .top-bar__menu ul li a {
  color: var(--base-black);
}
header .top-bar__menu .top-menu {
  padding: 30px 30px 32px;
  background: var(--base-white);
}
header .top-bar__menu .top-menu li {
  padding: 12px 0;
  border-bottom: 1px solid var(--base-gray);
  font-size: 16px;
  font-family: "Bold";
}
header .top-bar__menu .top-menu li.aco-block {
  padding: 0;
  border-bottom: none;
}
header .top-bar__menu .top-menu li.aco-block .aco-content {
  display: flex;
  align-items: center;
}
header .top-bar__menu .top-menu li.aco-block .aco-content.content-q {
  color: #ffffff;
}
header .top-bar__menu .top-menu li.aco-block .aco-content.content-q.q {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid var(--base-gray);
}
header .top-bar__menu .top-menu li.aco-block .aco-content.content-q.q::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background: var(--base-darkgray);
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: all 0.5s;
}
header .top-bar__menu .top-menu li.aco-block .aco-content.content-q.q::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background: var(--base-darkgray);
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(90deg);
  transition: all 0.5s;
}
header .top-bar__menu .top-menu li.aco-block .aco-content.content-q.q:hover {
  cursor: pointer;
}
header .top-bar__menu .top-menu li.aco-block .aco-content.content-q.q.close::after {
  transform: rotate(0deg);
  transition: all 0.7s;
}
header .top-bar__menu .top-menu li.aco-block .aco-content.content-a {
  display: block;
}
header .top-bar__menu .top-menu li.aco-block .aco-content.content-a li {
  background-color: var(--base-blightgray);
  border-bottom: 2px solid var(--base-white);
  padding-left: 30px;
}
header .top-bar__menu .top-menu li.aco-block .aco-content.content-a li::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid var(--base-black);
  border-right: 0;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}
header .top-bar__menu .middle-menu {
  padding: 30px 30px 32px;
  background: var(--base-blightgray);
}
header .top-bar__menu .middle-menu li {
  font-size: 14px;
  padding: 12px 0;
  line-height: 1;
}
header .top-bar__menu .bottom-menu {
  padding: 30px 30px 32px;
  background: var(--base-black);
}
header .top-bar__menu .bottom-menu a.tel {
  color: var(--base-white);
  text-align: center;
  font-size: 30px;
  margin-bottom: 12px;
  font-family: "Bold";
}
header .top-bar__menu .bottom-menu p {
  text-align: center;
  font-size: 12px;
  color: var(--base-white);
  margin-bottom: 20px;
}
header .top-bar__menu .bottom-menu .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
header .close-menu {
  position: fixed;
  width: 100%;
  height: auto;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
header .close-menu .top-bar {
  opacity: 0;
  transition: 0.4s;
  height: 0px;
}
header .close-menu.open {
  transform: translateY(0);
}
header .close-menu.open .top-bar {
  transition: 0.4s;
  height: 100%;
  opacity: 1;
  margin-top: 49px;
}

.breadcrumb {
  background: white;
  margin-top: 53px;
  padding: 10px 10px 5px;
  position: fixed;
  width: 100%;
  max-width: 390px;
  z-index: 997;
}
@media screen and (max-width:540px) {
  .breadcrumb {
    max-width: none;
  }
}
.breadcrumb ul {
  display: flex;
  overflow: hidden;
}
.breadcrumb ul li {
  list-style: none;
  font-size: 14px;
  margin-right: 18px;
  white-space: nowrap;
}
.breadcrumb ul li a {
  font-size: 14px;
  position: relative;
  display: inline;
  color: var(--base-black);
}
.breadcrumb ul li a::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--base-black);
  border-right: 1px solid var(--base-black);
  top: 50%;
  right: -10px;
  transform: translateY(-50%) rotate(45deg);
}

/* ── CTA Section ── */
.cta-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: url(../img/common/cta-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 48px 24px;
}
.cta-section .cta-inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 340px;
  width: 100%;
}
.cta-section .cta-inner h2.cta-title {
  font-size: 25px;
  font-family: "Bold";
  line-height: 1.4;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width:320px) {
  .cta-section .cta-inner h2.cta-title {
    font-size: 20px;
  }
}
.cta-section .cta-inner h2.cta-title.mini {
  font-size: 23px;
}
.cta-section .cta-inner p.cta-sub {
  font-size: 15px;
  font-family: "Bold";
  line-height: 1.47;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  color: var(--base-white);
  text-align: center;
}
@media screen and (max-width:320px) {
  .cta-section .cta-inner p.cta-sub {
    font-size: 13px;
  }
}
.cta-section .cta-inner .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.faq {
  background: var(--base-blightgray);
  padding: 60px 0;
}
.faq h2 {
  margin-bottom: 30px;
}
.faq .qa-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq .qa-boxes .qa-box {
  background: var(--base-white);
  border: 1px solid var(--base-gray);
  padding: 20px;
  border-radius: 8px;
}
.faq .qa-boxes .qa-box p {
  padding-left: 35px;
  position: relative;
}
.faq .qa-boxes .qa-box p::before {
  position: absolute;
  width: 25px;
  height: 25px;
  font-family: "Bold";
  top: -3px;
  left: 0px;
  border-radius: 5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.faq .qa-boxes .qa-box p.question {
  border-bottom: 1px solid var(--base-gray);
  padding-bottom: 12px;
  margin-bottom: 12px;
  font-family: "Bold";
  font-size: 14px;
}
.faq .qa-boxes .qa-box p.question::before {
  content: "Q";
  background-color: var(--base-black);
  color: var(--base-white);
}
.faq .qa-boxes .qa-box p.answer {
  font-size: 13px;
}
.faq .qa-boxes .qa-box p.answer::before {
  content: "A";
  background-color: var(--base-white);
  color: var(--base-black);
  border: 1px solid var(--base-black);
}

/* ── Footer ── */
footer {
  position: relative;
  width: 100%;
  background: var(--base-black);
  padding: 40px 24px 32px;
  color: var(--base-white);
}
@media screen and (max-width:768px) {
  footer {
    padding-bottom: 120px;
  }
}
footer .footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
footer .footer-inner .footer-logo {
  height: auto;
  max-width: 212px;
  width: 100%;
}
footer .footer-inner .footer-contact {
  background: #1E1E1E;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .footer-inner .footer-contact .footer-tel-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
footer .footer-inner .footer-contact .footer-tel-row .footer-tel-label {
  font-family: "Noto Sans JP", Helvetica, sans-serif;
  font-size: 10px;
  font-family: "Medium";
  letter-spacing: 1px;
  color: var(--basegray);
  white-space: nowrap;
}
footer .footer-inner .footer-contact .footer-tel-row .footer-tel-number {
  font-family: "Inter", Helvetica, sans-serif;
  font-size: 16px;
  font-family: "Medium";
  color: var(--basewhite);
  white-space: nowrap;
}
footer .footer-inner .footer-contact .footer-schedule {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
footer .footer-inner .footer-contact .footer-schedule p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--basegray);
  white-space: nowrap;
}
footer .footer-inner .footer-contact .footer-addr {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--basegray);
  max-width: 302px;
  font-style: normal;
}
footer .footer-inner .footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
footer .footer-inner .footer-nav .footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
footer .footer-inner .footer-nav .footer-nav-col h2 {
  font-size: 12px;
  font-family: "Medium";
  letter-spacing: 1.5px;
  color: var(--base-gray);
  white-space: nowrap;
  text-align: left;
}
footer .footer-inner .footer-nav .footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
footer .footer-inner .footer-nav .footer-nav-col ul li a {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--base-white);
  white-space: nowrap;
}
footer .footer-inner .footer-separator {
  width: 100%;
  height: 1px;
  background: var(--base-gray);
}
footer .footer-inner .footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .footer-inner .footer-bottom .footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
footer .footer-inner .footer-bottom .footer-policy a {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--basewhite);
  text-decoration: none;
}
footer .footer-inner .footer-bottom .footer-policy a:hover {
  text-decoration: underline;
}
footer .footer-inner .footer-bottom .footer-copy {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--basewhite);
  white-space: nowrap;
}

.floating-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
  background: var(--base-white);
  width: 100%;
  max-width: 390px;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 5px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width:1024px) {
  .floating-button {
    transform: translateX(50%);
    right: 50%;
    border-radius: 0 0 28px 28px;
    box-shadow: none;
    bottom: 70px;
  }
}
@media screen and (max-width:540px) {
  .floating-button {
    bottom: 0;
    border-radius: 0px;
  }
}
.floating-button a.floating-button__link {
  gap: 2px;
  padding: 10px 0;
  color: var(--base-white);
  border-radius: 5px;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.floating-button a.floating-button__link:hover {
  transform: translateY(-2px);
}
.floating-button a.floating-button__link img.floating-button__icon {
  width: 20px;
}
.floating-button a.floating-button__link.blue {
  background-color: var(--blue-dark);
}
.floating-button a.floating-button__link.green {
  background-color: var(--green-dark);
}
.floating-button a.floating-button__link.sky {
  background-color: var(--sky-dark);
}
.floating-button a.floating-button__link.white {
  background-color: var(--base-white);
  border: 1px solid var(--base-black);
  color: var(--base-black);
}/*# sourceMappingURL=style.css.map */