@charset "UTF-8";
/* Scss Document */
/* CSS Document */
/*------------------------------mixin font------------------------------*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2"), url("../font/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2"), url("../font/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../font/NotoSansJP-Black.woff2") format("woff2"), url("../font/NotoSansJP-Black.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/OpenSans-Bold.woff2") format("woff2"), url("../font/OpenSans-Bold.woff") format("woff");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/BarlowCondensed-Bold.woff2") format("woff2"), url("../font/BarlowCondensed-Bold.woff") format("woff");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/BarlowCondensed-Medium.woff2") format("woff2"), url("../font/BarlowCondensed-Medium.woff") format("woff");
}
/*------------------------------mixin bg------------------------------*/
/*------------------------------mixin flex------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 0.694444444vw;
  font-feature-settings: "palt";
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 2.56vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #222;
  line-height: 1.6;
  counter-reset: benefit_number;
}

picture {
  display: block;
}

img, source {
  width: 100%;
  height: auto;
}

.wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

main {
  flex: 1;
  width: 100%;
  padding: 0 !important;
}

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

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

.bold {
  font-weight: 700;
}

.open-sans {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.cormorant-garamond {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.blue {
  color: #0056CC;
}

.d-blue {
  color: #002F6F;
}

.orange {
  color: #FF9B14;
}

.yellow {
  color: #FFF717;
}

.box {
  display: none;
}

.pc_flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .pc_flex {
    flex-direction: column;
  }
}

/* ------------------ ▼ボタン ------------------ */
.cv_wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.cv_wrap .sub {
  display: inline-block;
  font-weight: bold;
  font-size: 2rem;
  position: relative;
}
.cv_wrap .sub .note-mark {
  font-size: 0.8rem;
  font-weight: normal;
}
.cv_wrap .sub::before, .cv_wrap .sub::after {
  content: "";
  display: block;
  background: #222;
  width: 0.1rem;
  height: 2.2rem;
  position: absolute;
  left: -1.2rem;
  top: 50%;
  transform: translateY(-50%) rotate(-25deg);
}
.cv_wrap .sub::after {
  left: auto;
  right: -1.2rem;
  transform: translateY(-50%) scale(-1, 1) rotate(-25deg);
}
.cv_wrap .cv-btn {
  margin: 0 auto;
  display: inline-block;
  width: 42.5rem;
  height: 7rem;
  background: #FFF717;
  border: 0.2rem solid #A8A300;
  border-radius: 999rem;
  position: relative;
  box-shadow: 0 0.4rem 0 #C0B900;
  text-align: center;
  position: relative;
  top: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .cv_wrap .cv-btn {
    width: 33rem;
    height: 5.8rem;
    border: 0.1rem solid #A8A300;
  }
}
.cv_wrap .cv-btn::before {
  content: "";
  width: 94.5%;
  height: 50%;
  border-radius: 999rem;
  background: linear-gradient(to bottom, rgba(255, 254, 219, 0.8) 0%, rgba(255, 254, 219, 0.5) 80%, rgba(255, 254, 219, 0) 100%);
  position: absolute;
  top: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
}
.cv_wrap .cv-btn::after {
  content: "";
  position: absolute;
  top: -20rem;
  left: -20rem;
  width: 10rem;
  height: 10rem;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgb(255, 255, 255) 100%, rgba(255, 255, 255, 0) 0%);
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.cv_wrap .cv-btn p {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: bold;
  color: #222;
  position: relative;
  filter: drop-shadow(0.1rem 0.1rem 0.2rem rgba(218, 210, 0, 0.4));
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .cv_wrap .cv-btn p {
    font-size: 1.8rem;
    white-space: nowrap;
    text-align: center;
  }
}
.cv_wrap .cv-btn p::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-right: 0.25rem solid #222;
  border-bottom: 0.25rem solid #222;
  position: absolute;
  top: 50%;
  right: -8rem;
  transform: rotate(-45deg) translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .cv_wrap .cv-btn p::after {
    width: 0.8rem;
    height: 0.8rem;
    border-right: 0.25rem solid #222;
    border-bottom: 0.25rem solid #222;
    top: 50%;
    right: -5.6rem;
  }
}
.cv_wrap .cv-btn:hover {
  transform: translateY(0.3rem);
  box-shadow: 0 0.1rem 0 #C0B900;
}
@media only screen and (max-width: 768px) {
  .cv_wrap .cv-btn:hover {
    transform: translateY(0.3rem);
    box-shadow: 0 0.1rem 0 #C0B900;
  }
}
@keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}

.to_other_page {
  text-align: center;
}
.to_other_page a {
  margin: 0 auto;
  display: inline-block;
  position: relative;
  background: #002F6F;
  border-radius: 40rem;
  border: solid 1px #fff;
  color: #fff;
  box-shadow: 0 0.4rem 0 #00132D;
  width: 42.5rem;
  height: 7rem;
  font-size: 2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .to_other_page a {
    width: 33rem;
    height: 5.8rem;
    font-size: 1.6rem;
  }
}
.to_other_page a::after {
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  top: 50%;
  right: 1.2em;
  transform: translateY(-50%);
  background: url(../img/right_arrow.svg) no-repeat center/contain;
  transition: all 0.6s;
}
.to_other_page a:hover {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #002F6F;
}
.to_other_page.back a::after {
  right: auto;
  left: 1.2em;
  transform: translateY(-50%) rotate(180deg);
}
.to_other_page.back a:hover::after {
  left: 0.9em;
}

/* ------------------ ▲ボタン ------------------ */
/* ------------------ ▼ヘッダー //.header ------------------ */
header {
  background: #fff;
  box-shadow: 0 0 0.8rem rgba(34, 34, 34, 0.1);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
header #news_wrap {
  overflow: hidden;
  height: 2.5rem;
  background: #ededed;
  line-height: 2.5rem;
}
header #news_wrap .news_inner {
  display: flex;
  animation: none;
  justify-content: center;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  header #news_wrap .news_inner {
    animation: scroll 18s linear infinite;
  }
}
header #news_wrap .news_inner p {
  margin: 0;
  padding-right: 1rem;
  font-size: 1rem;
}
@media only screen and (max-width: 768px) {
  header #news_wrap .news_inner p.sp-only {
    display: inline-block;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
header .header_contents .information {
  padding: 0 5rem;
  height: 4rem;
  font-weight: 400;
  background: #222;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 768px) {
  header .header_contents .information {
    height: 5rem;
    padding: 0 1rem;
    font-size: 1.2rem;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
}
header .header_contents .header_wrap {
  height: 5.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  position: relative;
  padding: 0 0 0 5rem;
}
@media only screen and (max-width: 768px) {
  header .header_contents .header_wrap {
    padding: 0 0 0 1.5rem;
  }
}
header .header_contents .header_wrap .logo {
  width: 18rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  header .header_contents .header_wrap .logo {
    width: 13rem;
  }
}
header .header_contents .header_wrap .logo figure {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header_contents .header_wrap .nav_btn {
  display: none;
}
@media only screen and (max-width: 768px) {
  header .header_contents .header_wrap .nav_btn {
    display: block;
    position: absolute;
    top: 1.8rem;
    right: 1.3rem;
    width: 2.7rem;
    height: 1.8rem;
    transition: all 0.4s;
    z-index: 1000;
  }
}
header .header_contents .header_wrap .nav_btn span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #222;
  transition: all 0.4s;
}
header .header_contents .header_wrap .nav_btn span:first-of-type {
  top: 0;
}
header .header_contents .header_wrap .nav_btn span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
header .header_contents .header_wrap .nav_btn span:last-of-type {
  bottom: 0;
}
header .header_contents .header_wrap .nav_btn.open span:first-of-type {
  top: 1rem;
  transform: rotate(-45deg);
}
header .header_contents .header_wrap .nav_btn.open span:nth-last-of-type(2) {
  display: none;
}
header .header_contents .header_wrap .nav_btn.open span:last-of-type {
  top: 1rem;
  transform: rotate(45deg);
}
header .header_contents .header_wrap .sp_header_btn {
  display: none;
}
@media only screen and (max-width: 768px) {
  header .header_contents .header_wrap .sp_header_btn {
    display: block;
    margin-right: 5.4rem;
  }
  header .header_contents .header_wrap .sp_header_btn ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  header .header_contents .header_wrap .sp_header_btn ul li {
    height: 5.4rem;
    font-size: 1rem;
    font-weight: bold;
  }
  header .header_contents .header_wrap .sp_header_btn ul li #price-simulation-btn {
    cursor: pointer;
    display: block;
    line-height: 1.3;
    background: #222;
    color: #fff;
    width: 8rem;
    height: 100%;
    padding: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .header_contents .header_wrap .sp_header_btn ul li .cv-btn {
    background: #FFF717;
    display: block;
    line-height: 1.3;
    background: #FFF717;
    color: #222;
    width: 8rem;
    height: 100%;
    padding: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  header .header_contents .header_wrap .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    font-size: 1.4rem;
    transition: all 0.4s;
  }
}
header .header_contents .header_wrap .nav.open {
  right: 0;
}
header .header_contents .header_wrap .nav .nav_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  header .header_contents .header_wrap .nav .nav_menu {
    display: block;
    text-align: center;
    font-size: 1.4rem;
    color: #fff;
    margin-top: 6rem;
  }
}
@media only screen and (max-width: 768px) {
  header .header_contents .header_wrap .nav .nav_menu a {
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
  }
}
header .header_contents .header_wrap .nav .nav_menu a:hover {
  opacity: 0.6;
}
header .header_contents .header_wrap .nav .btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  header .header_contents .header_wrap .nav .btn_wrap {
    display: none;
  }
}
header .header_contents .header_wrap .nav .btn_wrap li {
  height: 5.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  header .header_contents .header_wrap .nav .btn_wrap li a {
    height: auto;
    display: block;
    padding: 1em 0;
  }
}
header .header_contents .header_wrap .nav .btn_wrap li #price-simulation-btn {
  cursor: pointer;
  display: block;
  height: 100%;
  text-align: center;
  line-height: 1.3;
  background: #222;
  color: #fff;
  font-size: 1.6rem;
  width: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header_contents .header_wrap .nav .btn_wrap li #price-simulation-btn:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 768px) {
  header .header_contents .header_wrap .nav .btn_wrap li:last-of-type {
    margin-top: 2rem;
  }
}
header .header_contents .header_wrap .nav .btn_wrap .cv-btn {
  background: #FFF717;
  width: 20rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  header .header_contents .header_wrap .nav .btn_wrap .cv-btn {
    width: 75%;
  }
}
header .header_contents .header_wrap .nav .btn_wrap .cv-btn::before {
  display: none;
}
header .header_contents .header_wrap .nav .btn_wrap .cv-btn p {
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  header .header_contents .header_wrap .nav .btn_wrap .cv-btn p {
    font-size: 1.6rem;
  }
}
header .header_contents .header_wrap .nav .btn_wrap .cv-btn p::after {
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  width: 0.5em;
  height: 0.5em;
  top: 1rem;
  right: -1em;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 768px) {
  header .header_contents .header_wrap .nav .btn_wrap .cv-btn p::after {
    top: 50%;
    transform: rotate(-45deg) translateY(-50%);
  }
}
header .header_contents .header_wrap .nav .btn_wrap .cv-btn:hover {
  opacity: 0.6;
}

/* ------------------ ▲ヘッダー //.header ------------------ */
/* ---------------- ▼フッター //.footer---------------- */
.footer {
  padding-top: 3rem;
  background: #212C36;
  color: #fff;
  font-weight: 500;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 3rem 0 0;
  }
}
.footer--ttl {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .footer--ttl {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.footer--ttl .logo img {
  width: 33rem;
}
@media only screen and (max-width: 768px) {
  .footer--ttl .logo img {
    width: 25.6rem;
  }
}
.footer--ttl--message {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .footer--ttl--message {
    margin: 1.2rem 0 0;
    font-size: 1.4rem;
  }
}
.footer--link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: top;
  text-align: left;
  gap: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .footer--link {
    flex-direction: row;
    margin-top: 3rem;
    padding: 0 2.4rem;
    justify-content: space-between;
    gap: 0;
  }
}
.footer--link--list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .footer--link--list {
    display: block;
  }
}
.footer--link--list--item {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .footer--link--list--item {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .footer--link--list--item + li {
    margin-top: 0.8rem;
  }
}
.footer--link--list .gray {
  color: #F4F4F4;
}
.footer .footer_bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 27rem 0;
  padding-top: 2rem;
  border-top: solid 1px #555;
  border-width: 60%;
}
@media only screen and (max-width: 768px) {
  .footer .footer_bottom {
    margin: 2rem 0 0;
    flex-direction: column;
  }
}
.footer .footer_bottom .callcenter_info {
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.4rem;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .footer .footer_bottom .callcenter_info {
    flex-direction: row;
    font-size: 1.2rem;
    gap: 2rem;
  }
}
.footer .footer_bottom .callcenter_info p span {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .footer .footer_bottom .callcenter_info p span {
    font-size: 1rem;
  }
}
.footer .copyright {
  background: #222;
  padding: 1.5rem 0;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  width: 100%;
  margin-top: 3rem;
}

/* ---------------- ▲フッター //.footer ---------------- */
/* ---------------- ▼固定ボタン //.to_directdebit_btn---------------- */
.to_directdebit_btn a {
  position: fixed;
  z-index: 2000000000;
  display: inline-block;
  background: #FF9B14;
  color: #fff;
  bottom: 0;
  right: 400px;
  border-radius: 0.8rem 0.8rem 0 0;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .to_directdebit_btn a {
    bottom: 1rem;
    right: 0;
    border-radius: 0.8rem 0 0 0.8rem;
    font-size: 1.4rem;
    padding: 1rem;
    writing-mode: vertical-rl;
  }
}

/* ---------------- ▲固定ボタン //.to_directdebit_btn---------------- *//*# sourceMappingURL=common.css.map */