@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
.icon-home:before {
	display: none;
}
#main_visual {
  display: none;
}

#post_slider {
  display: none;
}

/* #sidebar {
  display: none;
} */

.p-fixBtnWrap {
  display: none;
}

/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
:root {
  --primary-color: #073567;
  --secondary-color: #C58009;
  --white: #ffffff;
  --header-height: 80px;
  --header-height-sp: 60px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: var(--primary-color);
  background-color: #F8F8F8;
}

img {
  max-width: 100%;
  height: auto;
}

.oswald_font {
  font-family: "Oswald", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* Common Components */
/* ----------------------------------- */
/* コンテナ
/* ----------------------------------- */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  transition: ease-in 0.1s;
}
@media screen and (min-width: 1025px) {
  .container {
    max-width: 1170px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    max-width: 970px;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 750px;
  }
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--white);
  color: var(--secondary-color);
}

.sub_page .main-content-wrapper {
  margin-top: 100px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100%;
  background-color: var(--white);
  z-index: 1000;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.header.container {
  margin-top: 20px;
  padding: 0 20px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .header {
    width: calc(100% - 30px);
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  padding: 8px 0;
}

.header__logo {
  width: 260px;
  display: block;
}

.header__logo img {
  width: 100%;
  height: auto;
}

.header__buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header__buttons .txt {
  text-decoration: none;
  font-size: 14px;
}

.nav__buttons .btn,
.header__buttons .btn {
  min-width: 158px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  padding: 10px;
  border-radius: 25px;
}
.nav__buttons .btn-login,
.header__buttons .btn-login {
  background-color: var(--primary-color);
  color: var(--white);
}
.nav__buttons .btn-login.btn-login:hover,
.header__buttons .btn-login.btn-login:hover {
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.nav__buttons .btn-register,
.header__buttons .btn-register {
  background-color: var(--secondary-color);
  color: var(--white);
}
.nav__buttons .btn-register.btn-register:hover,
.header__buttons .btn-register.btn-register:hover {
  background-color: var(--white);
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

/* Hamburger Menu */
.spmenu-is-active .main-content-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden !important;
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 12px;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
  left: 12px;
}

.hamburger span:nth-child(1) {
  top: 12px;
}

.hamburger span:nth-child(2) {
  top: 19px;
}

.hamburger span:nth-child(3) {
  bottom: 12px;
}

@media screen and (max-width: 767px) {
  .hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
.nav {
  display: none;
  position: fixed;
  top: 87px;
  right: -100vw;
  bottom: 15px;
  background: #F8F8F8;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 999;
  width: 100%;
  height: 100vh;
  border-radius: 8px;
  padding: 30px 30px 147px;
}
.nav #copyright {
  text-align: center;
  color: #121212;
}

.nav.is-active {
  right: 0;
}

.nav__list {
  list-style: none;
  margin: 0 0 50px;
}

.nav__item {
  margin-bottom: 20px;
}

.nav__link {
  color: #121212;
  text-decoration: none;
  font-size: 16px;
}

.nav__buttons {
  margin-bottom: 30px;
}
.nav__buttons .btn-login {
  margin-bottom: 10px;
}
.nav__buttons .btn {
  width: 100%;
  height: 50px;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
  .header__inner {
    height: var(--header-height-sp);
    padding: 10px 0;
  }
  .header__logo {
    width: 180px;
  }
  .header__buttons {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .nav {
    display: block;
  }
  .hamburger.is-active span:nth-child(1),
  .hamburger.is-active span:nth-child(3) {
    top: 50%;
  }
  .hamburger.is-active span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-50%) rotate(-45deg);
  }
}
/* Main content wrapper for blur effect */
.main-content-wrapper {
  transition: filter 0.3s ease;
}

.main-content-wrapper.is-blurred {
  filter: blur(5px);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 0;
}

.overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* common parts */
.bg_white {
  background-color: #fff;
}

.bg_blue {
  background-color: #073566;
}

.textCenter {
  text-align: center;
}

br.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  br.sp {
    display: block;
  }
}
/* fv Section */
.fv__features_wrap {
  max-width: 60%;
  width: 100%;
}

.fv__features {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.fv__feature-card {
  background: var(--white);
  padding: 10px;
  min-height: 128px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  flex: 1;
  font-weight: bold;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.fs12 {
  font-size: 12px !important;
}
.fv__feature-card .fs16 {
  font-size: 16px !important;
}
.fv__feature-card .fs18 {
  font-size: 18px !important;
}
.fv__feature-card .fs24 {
  font-size: 24px !important;
}
.fv__feature-card .text_blue {
  color: #073567;
}
.fv__feature-card.card1 {
  font-size: 20px;
}
.fv__feature-card.card1 .oswald_font {
  font-size: 48px;
  font-weight: normal;
  color: #073567;
}
.fv__feature-card.card2 {
  font-size: 22px;
}
.fv__feature-card.card2 .f_normal {
  font-weight: normal;
}
.fv__feature-card.card3 {
  font-size: 20px;
  color: #222;
}
.fv__feature-card.card3 .oswald_font {
  font-size: 48px;
  color: #073567;
  font-weight: normal;
}

.fv__feature-text {
  line-height: 1.3;
  text-align: center;
}

.fv__feature-text-wrap {
  margin-block: auto;
}

.fv__card-brands-inner {
  display: flex;
  justify-content: start;
  align-items: center;
  width: auto;
  margin: 0 auto;
  gap: 24px;
}

.fv__card-brands {
  padding: 10px;
  background: transparent;
  color: #888;
  border-radius: 8px;
  box-shadow: none;
}

.fv__card-brands-text {
  font-size: 14px;
	font-weight: normal;
	line-height: 2.2;
}

.fv__card-brands-logos {
  display: flex;
  align-items: center;
  gap: 24px;
}

.fv__card-brands-logos img {
  height: 24px;
  width: auto;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__features {
    display: block;
    gap: 12px;
  }
  .fv__feature-card {
    min-height: 62px;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
  }
  .fv__feature-card.fv__feature-card {
    margin-top: 20px;
  }
  .fv__feature-card br.pc {
    display: none;
  }
  .fv__feature-card br.tab {
    display: none;
  }
  .fv__feature-card.card1 {
    font-size: 18px;
  }
  .fv__feature-card.card1 .oswald_font {
    font-size: 32px;
  }
  .fv__feature-card.card1 .fs16 {
    font-size: 14px !important;
  }
  .fv__feature-card.card1 .fs24 {
    font-size: 18px !important;
  }
  .fv__feature-card.card2 {
    font-size: 18px;
  }
  .fv__feature-card.card2 .fs16 {
    font-size: 14px !important;
  }
  .fv__feature-card.card2 .text_blue .fs16 {
    font-size: 18px !important;
  }
  .fv__feature-card.card3 {
    font-size: 18px;
  }
  .fv__feature-card.card3 .oswald_font {
    font-size: 32px;
  }
  .fv__feature-card.card3 .fs14 {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
	.fv__card-brands-text {
    font-size: 8px;
}
  .fv__features_wrap {
    max-width: 100%;
  }
  .fv__features {
    display: block;
    gap: 12px;
  }
  .fv__feature-card {
    min-height: 62px;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
  }
  .fv__feature-card.fv__feature-card {
    margin-top: 20px;
  }
  .fv__feature-card br.pc {
    display: none;
  }
  .fv__feature-card.card1 {
    font-size: 18px;
  }
  .fv__feature-card.card1 .oswald_font {
    font-size: 32px;
  }
  .fv__feature-card.card1 .fs16 {
    font-size: 14px !important;
  }
  .fv__feature-card.card1 .fs24 {
    font-size: 18px !important;
  }
  .fv__feature-card.card2 {
    font-size: 18px;
  }
  .fv__feature-card.card2 .fs16 {
    font-size: 14px !important;
  }
  .fv__feature-card.card2 .text_blue .fs16 {
    font-size: 18px !important;
  }
  .fv__feature-card.card3 {
    font-size: 18px;
  }
  .fv__feature-card.card3 .oswald_font {
    font-size: 32px;
  }
  .fv__feature-card.card3 .fs14 {
    font-size: 16px;
  }
}
.fvArea {
  position: relative;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 200px;
  overflow: hidden;
}

.fv__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url("images/text_bg.png") repeat-x center bottom;
  opacity: 0.1;
}

.fvArea .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
	margin-top: 50px;
}

.fv__content {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  max-width: 100%;
  position: relative;
}
.fv__content:after {
  content: "";
  display: block;
  width: 100%;
  height: 150%;
  background: url("images/home/fv_card_ilust.png") no-repeat bottom right;
  background-size: 34% auto;
  position: absolute;
  bottom: -20px;
  right: 15px;
	z-index: -9999;
}

.fv__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary-color);
  margin-bottom: 24px;
  position: relative;
}
.fv__title span {
  font-size: 48px;
}

.fv__subtitle {
  margin-bottom: 40px;
  color: #222;
  font-weight: bold;
  display: flex;
  align-items: center;
	display: none;
}
.fv__subtitle img {
  flex-basis: auto;
  width: auto;
}
.fv__subtitle span {
  font-size: 24px;
  flex-basis: auto;
  width: auto;
  white-space: pre-wrap;
  word-break: keep-all;
}
.fv__subtitle span br {
  display: none;
}
.fv__subtitle span span {
  font-size: 28px;
}

.fv__logo {
  max-width: 300px;
  width: 70%;
  height: auto;
  margin-right: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__title {
    text-align: left;
  }
  .fv__title br.sp {
    display: none;
  }
  .fv__subtitle {
    margin-bottom: 24px;
    width: 100%;
  }
  .fv__content {
    width: 100%;
  }
  .fv__content:after {
    background: url("images/home/fv_card_ilust.png") no-repeat bottom right;
    background-size: 32% auto;
    bottom: -80px;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .fvArea {
    padding-top: calc(var(--header-height-sp) + 24px);
    padding-bottom: 140px;
  }
  .fv__subtitle {
    display: block;
    width: 80%;
    margin-bottom: 24px;
  }
  .fv__subtitle span {
    font-size: 20px;
  }
  .fv__subtitle span br {
    display: block;
  }
  .fv__subtitle span span {
    font-size: 24px;
  }
  .fv__features_wrap {
    position: relative;
  }
  .fv__features_wrap:before {
    content: "";
    display: block;
    min-width: 130px;
    width: 20%;
    height: 100%;
    background: url(images/home/fv_hans_sp.svg) no-repeat top right;
    background-size: 100% auto;
    position: absolute;
    top: -48%;
    right: 0;
  }
  .fvArea .container {
    flex-direction: column;
  }
  .fv__logo {
    max-width: 234px;
  }
  .fv__content {
    min-width: 345px;
    width: 80%;
  }
  .fv__content:after {
    display: none;
  }
  .fv__title {
    font-size: 36px;
    text-align: left;
    margin-bottom: 16px;
  }
  .fv__title br.sp {
    display: block;
  }
  .fv__title span {
    font-size: 32px;
  }
}
/* ------------------------------------------ /
/ topメインコピーアニメーション /
/ ------------------------------------------ */
.active_text,
.active_text::after {
  animation-delay: 0.8s;
  animation-iteration-count: 1;
  animation-duration: 800ms;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.active_text {
  position: relative;
  animation-name: clip-text;
  white-space: nowrap;
  cursor: default;
  margin: 0 0 10px;
  padding: 0;
  display: block;
}

.active_text::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}

@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
/* 最短翌日振込 */
.fv__badge {
  transform: translateY(-50%);
  background: var(--secondary-color);
  color: var(--white);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  padding: 16px;
  border-radius: 50%;
  text-align: center;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 170px 30px;
}
@media print, screen and (max-width: 767px) {
  .fv__badge {
    display: none;
  }
}

.loopWrap {
  display: flex;
  width: 100vw;
  height: 140px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background: url(./images/home/fv_loopback.svg) no-repeat center top/cover;
}
.loopWrap img {
  width: auto;
  height: 100%;
}
.loopWrap img:first-child {
  animation: loop 50s -25s linear infinite;
}
.loopWrap img:last-child {
  margin-left: 45px;
  animation: loop2 50s linear infinite;
}
@media screen and (max-width: 767px) {
  .loopWrap {
    height: 94px;
  }
  .loopWrap img {
    width: 1600px;
    max-width: none;
  }
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* ------------------------------------------ /
/scroll_up 下から上へ/
/ ------------------------------------------ */
.home .scroll_up,
.home .scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
}

.home .scroll_up {
  transform: translateY(30px);
  opacity: 0;
}

.home .scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

.home .scroll_left {
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.home .scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

.home .timing02 {
  transition-delay: 0.2s;
}

.home .timing03 {
  transition-delay: 0.4s;
}

.home .timing04 {
  transition-delay: 0.6s;
}

.home .timing05 {
  transition-delay: 0.8s;
}

.home .reveal-textup.on {
  animation-name: clip-text;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

.home .text_up {
  animation: text-up 0.8s ease-in-out 0s 1 normal;
}

@keyframes text-up {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* SA請求書カード払いの仕組み */
.shikumiArea {
  padding: 0 0 120px;
}
.shikumiArea .shikumi__title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}
.shikumiArea .shikumi__img {
  text-align: center;
/*   border: 1px solid #C6C6C6; */
/*   border-radius: 32px; */
  max-width: 940px;
  margin: 0 auto;
  overflow: hidden;
}
.shikumiArea .shikumi__img img {
  vertical-align: bottom;
}
.shikumiArea .att_text {
  text-align: left;
  font-size: 12px;
  color: #222;
  margin-top: 10px;
  padding-left: 10%;
}
.shikumiArea p {
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}
.shikumiArea .cta__button {
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .shikumiArea {
    padding-top: 40px;
  }
  .shikumiArea .att_text {
    text-align: left;
    padding-right: 0;
  }
}

/* Concerns Section */
.concernsArea {
  background-color: #073567;
  border-radius: 32px;
  color: var(--white);
  padding: 120px 0 70px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.concernsArea::after {
  content: "";
  position: absolute;
  bottom: -49px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-right: 46vw solid transparent;
  border-left: 46vw solid transparent;
  border-top: 51px solid #073566;
}

.concernsArea::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  z-index: 1;
  background-color: #fff;
}

.concerns__title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 48px;
}

.concerns__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.concerns__card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
}

.concerns__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--primary-color);
  margin-bottom: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #E2E2E2;
}

.concerns__card-icon {
  width: 48px;
  height: 48px;
  background: #F5F7FA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.concerns__card-icon img {
  width: 40px;
  height: auto;
}

.concerns__card-title {
  font-size: 20px;
  font-weight: 700;
}

.concerns__card-list {
  list-style: none;
}

.concerns__card-item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--primary-color);
  line-height: 1.6;
}

.concerns__card-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 12px;
  background: url("images/home/icon_check.svg") no-repeat center;
  background-size: contain;
}

@media screen and (max-width: 1024px) {
  .concernsArea {
    padding: 60px 0;
  }
  .concerns__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .concernsArea {
    padding: 40px 0;
  }
  .concerns__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .concerns__card {
    padding: 24px;
  }
  .concerns__card-header {
    margin-bottom: 16px;
  }
  .concerns__card-title {
    font-size: 18px;
  }
}
/* CTA Section */
.ctaArea {
  background: #fff;
  padding: 150px 0;
  margin: -91px 0 0;
  position: relative;
}

.cta__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
}
.cta__inner::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background-color: #073567;
}
.cta__inner::after {
  content: "";
  position: absolute;
  bottom: -50px;
  background: url(images/home/cta_bg.svg) no-repeat center/cover;
  width: 100vw;
  min-height: 500px;
  left: calc(50% - 50vw);
  z-index: -1;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.1));
}

.cta__logo {
  margin-bottom: 8px;
}

.cta__logo img {
  height: auto;
  width: 100%;
  max-width: 600px;
}

.cta__text {
  font-size: 40px;
  font-weight: 700;
  color: #073567;
  margin-bottom: 24px;
}
.cta__text span {
  font-size: 32px;
}

.cta__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  padding: 10px;
  max-width: 300px;
  width: 100%;
  min-height: 80px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  border: 3px solid transparent;
}

@media (min-width: 768px) {
	.fv__button_box {
	display: flex;
    align-items: center;
    justify-content: space-between;
	}
	.fv__button_box .fv__button {
	width: 260px;
	}
}

.fv__button {
	margin: 10px 0;
}

.cta__button:hover {
  border: 3px solid #C58009;
  background-color: #fff;
  color: var(--secondary-color);
}

.cta__button::after {
  content: "";
  width: 13px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  background: url(images/common/btn_arrow_white.svg) no-repeat center center;
  background-size: 12px auto;
  z-index: 2;
  transition: all ease 0.3s;
}

.cta__button:hover::after {
  background: url(images/common/btn_arrow_golde.svg) no-repeat center center;
  background-size: 12px auto;
}

@media screen and (max-width: 767px) {
  .cta__text {
    font-size: 32px;
  }
  .cta__text span {
    font-size: 26px;
  }
}
/* Reasons Section */
.reasonsArea {
  background-color: #fff;
  padding: 0 0 0;
}

.reasons__title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 48px;
}

.reasons__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 0;
  background-color: #EEE8D3;
  border-radius: 32px;
  padding: 70px;
}

.reasons__card {
  border-radius: 16px;
  padding: 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "number number" "icon heading" "icon text";
  gap: 8px 16px;
  background: #fff;
  width: calc((100% - 20px) / 2);
}
.reasons__card:nth-of-type(n+3) {
  margin-top: 20px;
}

.reasons__number {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 700;
  grid-area: number;
  width: auto;
}
.reasons__number span {
  font-size: 40px;
  margin-left: 5px;
}

.reasons__icon {
  grid-area: icon;
}

.reasons__icon img {
  width: 100%;
  object-fit: contain;
}

.reasons__heading {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  grid-area: heading;
}

.reasons__text {
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  top: -16px;
  grid-area: text;
  line-height: 1.5;
  color: #222;
}
.reasons__text.mt10 {
  margin-top: 10px;
}

.reasons__note {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .reasons__wrap {
    padding: 30px;
  }
  .reasons__card {
    padding: 20px;
    width: calc((100% - 20px) / 2);
    grid-template-areas: "number number" "icon heading" "text text";
  }
  .reasons__heading {
    margin-bottom: 0;
    margin-block: auto;
  }
}
@media screen and (max-width: 767px) {
  .reasonsArea {
    padding: 100px 0 0;
  }
  .reasons__wrap {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 60px calc(50vw - 50% + 0px);
  }
  .reasons__card {
    width: 100%;
    padding: 24px;
    grid-template-areas: "number number" "icon heading" "text text";
  }
  .reasons__number {
    color: var(--secondary-color);
  }
  .reasons__number span {
    font-size: 32px;
  }
  .reasons__heading {
    margin-bottom: 0;
    margin-block: auto;
  }
  .reasons__icon {
    height: 65px;
  }
  .reasons__text {
    top: 0;
  }
  .reasons__text.mt10 {
    margin-top: 0;
  }
}
/* Comparison Table Section */
.comparisonArea {
  padding: 290px 0 0;
  background-color: #fff;
  color: var(--white);
}
.comparisonArea .bg_blue {
  position: relative;
  border-radius: 32px;
  padding: 270px 0 240px;
}

#comparisonPoint {
  padding-top: 100px;
  margin-top: -100px;
}

.comparison__title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 48px;
}

.scroll-hint-shadow-wrap::before {
  left: -15px !important;
}

.scroll-hint-shadow-wrap::after {
  right: -15px !important;
}

.comparison__wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -20px;
  padding: 0 20px;
}
.comparison__wrapper .scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  right: 0;
  left: auto;
  box-sizing: border-box;
  width: 66px;
  height: 59px;
  border-radius: 16px 0 0 16px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 10px;
}

.comparison__table {
  width: 100%;
  min-width: 800px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #C6C6C6;
  border-collapse: collapse;
}

.comparison__table th,
.comparison__table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #C6C6C6;
  text-align: center;
}

.comparison__table th {
  background: #F8F8F8;
  white-space: nowrap;
  font-size: 18px;
  color: #9b9b9b;
  font-weight: normal;
}

.comparison__table th + td {
  color: #073567;
}

.comparison__table td {
  color: #9b9b9b;
  border-left: 1px solid #C6C6C6;
  font-weight: 700;
  font-size: 16px;
}

.comparison__table tr:last-child th,
.comparison__table tr:last-child td {
  border-bottom: none;
}

.comparison__table-logo {
  height: auto;
  width: 174px;
}

.comparison__table-note {
  font-size: 14px;
  color: #666;
}

.cta2 {
  background-color: #f8f8f8;
  padding: 40px;
  text-align: center;
  margin: 32px 0;
  max-width: 940px;
  width: 100%;
  border-radius: 32px;
  position: absolute;
  top: -170px;
  left: 50%;
  transform: translateX(-50%);
}

.cta2__logo {
  width: 545px;
  margin: 0 auto;
}

.cta2__text {
  font-size: 40px;
  font-weight: 700;
  color: #073567;
  margin: 10px 0 30px;
}
.cta2__text span {
  font-size: 32px;
}

@media screen and (max-width: 1024px) {
  .cta2 {
    margin: 32px 0;
    top: -220px;
  }
  .cta2__text br.sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .comparisonArea {
    padding: 290px 0 0;
  }
  .comparisonArea .bg_blue {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 270px calc(50vw - 50% + 0px) 240px;
  }
  .comparison__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .cta2 {
    padding: 40px 15px;
    margin: 24px 0;
    width: calc(100% - 30px);
  }
  .cta2__text {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .cta2__text span {
    font-size: 22px;
  }
  .cta2__logo {
    width: 292px;
    margin: 0 auto;
  }
  .cta2__button {
    font-size: 16px;
    padding: 14px 32px;
  }
}
/* Flow Section */
.flowArea {
  background-color: #F5F2E8;
  padding: 120px 0;
  border-radius: 32px;
  margin-top: -120px;
  position: relative;
}

.flow__title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 48px;
}

.flow__steps {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  position: relative;
}

.flow__step {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  flex: 1;
  max-width: 360px;
  position: relative;
}

.flow__step-number {
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-align: center;
  font-size: 16px;
}
.flow__step-number span {
  font-size: 28px;
  margin-left: 5px;
}

.flow__step-icon {
  width: 65px;
  height: auto;
  margin: 0 auto 24px;
}

.flow__step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flow__step-title {
  text-align: center;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.flow__step-text {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: #222;
}

.flow__arrow {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 24px;
}

.flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -38px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  background: url("images/home/step_arrow.svg") no-repeat center center;
  background-size: 50px auto;
  width: 50px;
  height: 50px;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .flowArea {
    padding: 60px 0;
  }
  .flow__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .flow__step {
    padding: 24px;
  }
}
@media screen and (max-width: 767px) {
  .flowArea {
    padding: 100px 0;
  }
  .flow__steps {
    flex-direction: column;
    gap: 40px;
  }
  .flow__step {
    max-width: 100%;
  }
  .flow__step:not(:last-child)::after {
    top: auto;
    bottom: -45px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}
/* FAQ Section */
.faqArea {
  padding: 170px 0 120px;
  background: #F8F8F8;
  margin-top: -50px;
}

.faq__title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 48px;
}

.faq__contact {
  text-align: center;
  margin-top: 40px;
}

.faq__contact-text {
  margin-bottom: 24px;
  color: var(--primary-color);
}

.faq__contact-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #C6C6C6;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  padding: 10px;
  max-width: 300px;
  width: 100%;
  min-height: 80px;
  border-radius: 40px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  position: relative;
  border: 3px solid transparent;
}

.faq__contact-button:hover {
  border: 3px solid #C6C6C6;
  background-color: #fff;
  color: #C6C6C6;
}

.faq__contact-button::after {
  content: "";
  width: 13px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  background: url(images/common/btn_arrow_white.svg) no-repeat center center;
  background-size: 12px auto;
  z-index: 2;
  transition: all ease 0.3s;
}

.faq__contact-button:hover::after {
  background: url(images/common/btn_arrow_gray.svg) no-repeat center center;
  background-size: 12px auto;
}

@media screen and (max-width: 767px) {
  .faqArea {
    padding: 100px 0;
  }
  .faq__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
/* ---------------------------------------------------------------- */
/* accordion */
/* ---------------------------------------------------------------- */
.accordion-container {
  margin: 0 auto;
  width: 100%;
  max-width: 940px;
}

.accordion-container .accordion-list {
  background: #fff;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-container .accordion-list:first-child {
  margin-top: 10px;
}

.accordion-container .accordion-list .accordion-title {
  cursor: pointer;
  padding: 20px 40px 20px;
  position: relative;
  font-weight: 500;
  margin-bottom: 0;
  color: #222;
  font-size: 16px;
}

.accordion-container .accordion-list .accordion-title h3 {
  padding-left: 25px;
  position: relative;
}

.accordion-container .accordion-list .accordion-title h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  height: 100%;
  background: url("images/home/q.svg") no-repeat center center;
  background-size: 13px auto;
}

.accordion-container .accordion-list .accordion-title::after {
  content: "＋";
  position: absolute;
  top: 7px;
  right: 40px;
  font-size: 30px;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.accordion-container .accordion-list .accordion-title.open::after {
  content: "－";
}

.accordion-container .accordion-list .accordion-text {
  display: none;
  padding: 0 40px 20px;
  position: relative;
  font-size: 16px;
  color: #222;
}

.accordion-container .accordion-list .accordion-text p {
  padding-left: 25px;
}

.accordion-container .accordion-list .accordion-text p:first-child {
  position: relative;
  padding-top: 15px;
}

.accordion-container .accordion-list .accordion-text p:first-child::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  display: inline-block;
  width: 13px;
  height: 36px;
  background: url("images/home/a.svg") no-repeat center center;
  background-size: 13px auto;
}

.accordion-container .accordion-list .accordion-text::after {
  position: absolute;
  top: 0;
  left: 40px;
  content: "";
  width: calc(100% - 80px);
  height: 1px;
  background: #EFEFEF;
}

.accordion-container .accordion-list .accordion-text .a_text {
/*   margin: 0 !important; */
  font-size: 16px;
}

.accordion-container .accordion-list .accordion-text .a_text.notice {
    color: gray;
    font-weight: normal;
    font-size: 14px;
}

.accordion-container .accordion-list .accordion-text ul {
  padding-left: 25px;
  margin: 25px 0 25px 25px;
  list-style: disc;
width: 100%;
}

.accordion-container .accordion-list .accordion-text table {
    border-collapse: inherit;
    border-spacing: 0;
    margin: 25px;
}

.accordion-container .accordion-list .accordion-text table th,
.accordion-container .accordion-list .accordion-text table td{
    padding: 8px;
}

@media screen and (max-width: 767px) {
  .accordion-container .accordion-list .accordion-title {
    padding: 20px 50px 20px 20px;
  }
  .accordion-container .accordion-list .accordion-title::before {
    left: 17px;
    top: 21px;
  }
  .accordion-container .accordion-list .accordion-title::after {
    top: 7px;
    right: 20px;
  }
  .accordion-container .accordion-list .accordion-text {
    padding: 10px 20px 20px;
  }
  .accordion-container .accordion-list .accordion-text::before {
    left: 20px;
  }
  .accordion-container .accordion-list .accordion-text::after {
    left: 20px;
    width: calc(100% - 40px);
  }
}
/* Comparison Table Section */
.formArea {
  padding: 0;
  background-color: #f8f8f8;
  color: var(--white);
}
.formArea .bg_blue {
  position: relative;
  border-radius: 32px;
  padding: 120px 0;
}
.formArea iframe {
  width: 100%;
  height: 1200px;
  border-radius: 16px;
  background-color: #fff;
  border: 0;
  padding: 30px;
  margin-top: 40px;
}

.form__title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 48px;
}

.form__wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -20px;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .formArea {
    padding: 0;
  }
  .formArea .bg_blue {
    padding: 100px 0;
  }
  .form__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
/* Company Info Section */
.companyArea {
  padding: 120px 0;
  background: #F8F8F8;
}

.company__title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 48px;
}

.company__info {
  max-width: 780px;
  margin: 0 auto;
}

.company__list {
  margin: 0;
  border-collapse: collapse;
  width: 100%;
}

.company__item:first-child {
  padding-top: 0;
}

.company__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.company__term {
  font-weight: 700;
  vertical-align: top;
  width: 220px;
  color: #073567;
  position: relative;
  padding: 30px 0;
  text-align: left;
}
.company__term:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #C58009;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.company__description {
  padding: 30px 15px 30px 60px;
  margin: 0;
  border-bottom: 1px solid #E0E0E0;
}

.company__description p {
  margin: 0;
  line-height: 1.6;
}

.company__description p + p {
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .companyArea {
    padding: 100px 0;
  }
  .company__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .company__list {
    display: block;
  }
  .company__item {
    padding: 16px 0;
    position: relative;
  }
  .company__item:after {
    content: "";
    width: 80px;
    height: 2px;
    background-color: #C58009;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .company__term {
    display: block;
    padding: 30px 0 15px;
  }
  .company__term:after {
    display: none;
  }
  .company__description {
    padding: 0 0 30px;
    display: block;
    margin: 0;
  }
}
/* ---------------------------------------------------------------- */
/* フッターエリア */
/* ---------------------------------------------------------------- */
#footer {
  clear: both;
  background: #fff;
  border-radius: 32px 32px 0 0;
  text-align: center;
}

#footer p {
  font-size: 14px;
}

#footer .container {
  position: relative;
}

#footer #footerCnt {
  margin-bottom: 58px;
}

#footer #footerCnt .company-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 14px;
}

@media screen and (max-width: 768px) {
  #footer #footerCnt .company-name {
    text-align: left;
  }
  #footer #footerCnt .company-name img {
    max-width: 252px;
  }
}
#footer #footerCnt .footer_navi {
  width: 235px;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  #footer #footerCnt .footer_navi {
    width: 100%;
    max-width: 235px;
    margin-top: 30px;
  }
}
#footer #footerCnt .footer_navi ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#footer #footerCnt .footer_navi ul li {
  width: 50%;
  margin-bottom: 8px;
}

#footer #footerCnt .footer_navi ul li a {
  font-size: 14px;
}

#footer .footer_navi_bottom ul {
  gap: 24px;
  display: flex;
  justify-content: center;
}

#footer .footer_navi_bottom ul li {
  display: inline-block;
}

#footer .footer_navi_bottom ul li a {
  font-size: 14px;
  color: #222;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  #footer .footer_navi_bottom ul {
    margin-left: 0;
    display: block;
    text-align: left;
  }
  #footer .footer_navi_bottom ul li {
    display: inline-block;
    margin-right: 60px;
    margin-bottom: 15px;
  }
}
#footer #copyright {
max-width:1170px;
	margin: 0 auto;
  text-align: left;
/*   margin-top: 25px; */
/*   border-top: 1px solid #C6C6C6; */
  padding: 20px 15px;
  font-size: 12px;
  color: #222;
}

#footer #copyright p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
}

@media screen and (min-width: 1025px) {
  #footer {
    padding: 40px 0 0;
  }
  #footer #footerCnt {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #footer {
    padding: 75px 0 0;
  }
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 30px 0 60px;
  }
}
/* ---------------------------------------------------------------- */
/* ページトップ ボタン */
/* ---------------------------------------------------------------- */
#pagetopArea {
  position: absolute;
  right: 15px;
  top: 0;
}

@media screen and (min-width: 1025px) {
  #pagetopArea {
    top: 0;
  }
}/*# sourceMappingURL=style.css.map */

