@import url("default.css");

:root {
  --btn-color: #0b3779;
  --main-color: #115e9d;
  --main-light-color: #6190b9;
  --text-color: #182633;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: #333;
}

.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-old-mincho-medium {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.zen-old-mincho-semibold {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.zen-old-mincho-bold {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

.zen-old-mincho-black {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-style: normal;
}

.shippori-mincho-b1-regular {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
}

.shippori-mincho-b1-medium {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
}

.shippori-mincho-b1-semibold {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
}

.shippori-mincho-b1-bold {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-style: normal;
}

.shippori-mincho-b1-extrabold {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  font-style: normal;
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 70%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
.fadeIn_left {
  opacity: 0;
  transform: translate(-10%, 0);
  transition: 1.5s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
.fadeIn_right {
  opacity: 0;
  transform: translate(0, 10%);
  transition: 1s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.container {
  width: 96%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  overflow: hidden;
  border-radius: 4px;
  overflow: visible;
}

.text_width {
  width: 80%;
  margin-inline: auto;
  max-inline-size: max-content;
}

.parallax-window {
  min-height: 400px;
  background: transparent;
  z-index: 200;
  position: relative;
}

.btns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.btns .btn {
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-size: 2rem;
  position: relative;
  padding: 3rem 6rem 3rem 7.5rem;
  color: #fff;
  border-radius: 0;
  background-image: -webkit-linear-gradient(
    335deg,
    #19b337 0%,
    #1f9736 25%,
    #11591f 90%,
    #07320f 100%
  );
  background-image: linear-gradient(
    115deg,
    #19b337 0%,
    #1f9736 25%,
    #11591f 90%,
    #07320f 100%
  );
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

.btns .btn span {
  position: relative;
}

.btns .btn:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-image: -webkit-linear-gradient(
    335deg,
    #07320f 0%,
    #11591f 15%,
    #1f9736 70%,
    #19b337 100%
  );
  background-image: linear-gradient(
    115deg,
    #07320f 0%,
    #11591f 15%,
    #1f9736 70%,
    #19b337 100%
  );
}

.btns .btn:after {
  font-family: "Font Awesome 5 Free";
  font-size: 1.6rem;
  line-height: 1;
  position: absolute;
  top: calc(50% - 0.8rem);
  right: 1rem;
  margin: 0;
  padding: 0;
  content: "\f30b";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btns .btn:hover {
  color: #fff;
}

.btns .btn:hover:before {
  opacity: 0;
}

.btns .btn:hover:after {
  right: 0.5rem;
}

#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    #bbb 0%,
    #ddd 45%,
    #fff 70%,
    #ddd 85%,
    #bbb 90% 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loading img {
  width: 30%;
  animation: fadeInOut 1.5s infinite;
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

#loading.done {
  animation: done 0.8s forwards;
}

@keyframes done {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 1.9rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.4);
}

header .inner {
  justify-content: space-between;
}

header .site-logo {
  width: 23rem;
  margin: 0 2% 0 0;
  color: var(--text-color);
  line-height: 0;
}

header .site-logo img {
  width: 100%;
}

header nav {
  width: calc(100% - 23rem - 2%);
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
}

header nav .menu-toggle {
  display: none;
}

header nav ul.flex {
  justify-content: flex-end;
}

header nav ul li {
  color: #fff;
  margin: 0 0 0 1.5vw;
}

header nav ul li:first-child {
  margin: 0;
}

header nav ul li a {
  width: auto;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  position: relative;
}

header nav ul li a:hover {
  transition: opacity 0.3s ease-in-out;
}

header nav ul li a:after {
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  border-bottom: 1px #999 solid;
  transition: 0.5s;
}

header nav ul li a:hover:after {
  width: 100%;
}

#about header nav ul li.about a:after,
#support-lease header nav ul li.support-lease a:after,
#restructuring-lease header nav ul li.restructuring-lease a:after,
#leaseback header nav ul li.leaseback a:after,
#faq header nav ul li.faq a:after,
#apply header nav ul li.apply a:after {
  width: 100%;
}

header.wh {
  position: absolute;
  background: none;
  box-shadow: none;
}

header.wh a {
  color: #fff;
}

header.wh nav ul li a:after {
  border-bottom: 1px #fff solid;
}

header.on {
  animation: header_in 0.3s ease-out 0s 1;
}

@keyframes header_in {
  0% {
    transform: translateY(-110%);
  }
  100% {
    transform: translateY(0%);
  }
}

body.common #showcase {
  color: #fff;
  position: relative;
  background-position: top center;
  background-size: 100%;
  background-repeat: no-repeat;
  color: #333333;
  border-radius: 0;
  animation-duration: 0.5s;
  transform: none;
  background-attachment: fixed;
  margin: 7rem 0 0;
}

body.common #showcase::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url(../images/pattern.png) rgba(0, 0, 0, 0.4);
  z-index: 1;
}

body.common #showcase .container {
  position: relative;
  min-height: 32vw;
}

body.common #showcase #breadcrumbs {
  font-size: 80%;
  padding: 1.6rem 0 0;
  position: relative;
  z-index: 99;
}

body.common #showcase #breadcrumbs ol {
  color: #fff;
  justify-content: flex-start;
}

body.common #showcase #breadcrumbs ol li:after {
  content: "＞";
  margin: 0 1rem;
  font-size: 70%;
}

body.common #showcase #breadcrumbs ol li:last-child:after {
  content: "";
  margin: 0;
}

body.common #showcase #breadcrumbs ol li a {
  color: #fff;
  display: inline-block;
  text-decoration: underline;
}

body.common #showcase .container h1 {
  width: 100%;
  color: #fff;
  position: absolute;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.8vw;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-shadow: 0px 0px 10px #000;
}

main {
  padding: 0 0 6rem;
  background: url(../images/noise.gif) repeat center center #fff;
}

main section {
  padding: 12rem 0;
  position: relative;
}

.common main section {
  padding: 12rem 0 0;
}

main section .titles {
  text-align: center;
}

main section .titles .inner {
  display: inline-block;
  position: relative;
  margin: 0 auto;
  padding: 0 0 3rem;
}

main section .titles .title {
  color: var(--btn-color);
  font-size: 6.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

main section .titles .title::first-letter {
  color: var(--main-light-color);
}

main section .titles .english-title {
  position: absolute;
  right: 0;
  bottom: -12px;
  padding-left: 20px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #d3d5d8;
}

main section.white .titles .title {
  color: #fff;
}

main section.white .titles .title::first-letter {
  color: #fff;
  opacity: 0.8;
}

main section.white .titles .english-title {
  color: #fff;
  opacity: 0.3;
}

main section.white .titles .english-title::before {
  background-color: #fff;
}

main section .sub-title {
  text-align: center;
  background-color: #d1d1d7;
  padding: 4rem 0;
}

main section .sub-title .inner {
  display: inline-block;
  position: relative;
  margin: 0 auto;
}

main section .sub-title .title {
  font-size: 3.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

main section .content {
  text-align: left;
  margin: 10rem 0 0;
}

.common main section .content {
  margin: 6rem 0 0;
}

main section.white .content {
  color: #fff;
}

main section .content .flex {
  justify-content: space-between;
}

main section .content h3.main-title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 600;
  margin: 0 0 4rem;
  position: relative;
  z-index: 1;
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

main section .content h4.sub-title {
  font-size: 2.6rem;
  margin: 0 0 3rem;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

main section .content .form .text {
  text-align: center;
}

main section .content .form form {
  width: 80%;
  margin: 6rem auto 0;
  padding: 8rem 10rem;
  background-color: #fff;
  border-radius: 8px;
  border: solid 12px #efefef;
}

main section .content .form form dl {
  margin: 0 0 4rem;
}

main section .content .form form dl dt {
  border-bottom: solid 1px #efefef;
  margin: 0 0 0.8rem;
}

main section .content .form form dl dt .required {
  margin: 0 0 0 0.8rem;
  color: rgb(247, 51, 51);
  font-size: 1.4rem;
}

main section .content .form form dl dt .caution {
  margin: 0 0 0 0.8rem;
  color: #888;
  font-size: 1.4rem;
}

main section .content .form form dl dd .error {
  margin: 0.4rem 0 0;
  color: rgb(247, 51, 51);
  font-size: 1.4rem;
}

main section .content .form form dl dd.radio label {
  margin: 0 1rem 0 0;
}

main section .content .form form dl dd.checkbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

main section .content .form form dl.postal dd [type="text"] {
  width: 4em;
}

main section .content .form form .btns .btn {
  width: 50%;
  border: none;
}

main section .content .form form .btns .btn {
  width: 50%;
  border: none;
}

.confirm main section .content .form form dl dd {
  border: solid 1px #eee;
  margin: 0.4rem 0 0;
  padding: 0.8rem 1.4rem;
  background-color: #fcfcfc;
}

main section .content .form #return_form {
  text-align: center;
  width: auto;
  margin: 6rem auto 0;
  padding: 0;
  background: none;
  border: none;
}

main section .content .form #return_form [type="submit"] {
  font-size: 1.5rem;
  color: #555;
  background: none;
  border: none;
  margin: 2rem 0 0;
  text-decoration: underline;
}

.send main section .content .form {
  text-align: center;
}

.send main section .content .form .back {
  margin: 6rem;
  text-decoration: underline;
}

main section.video .content .text {
  width: 80%;
  margin: 0 auto;
}

main section.video .content .text iframe {
  width: 100%;
  height: 50rem;
}

/** footer **/

#greenbell-group {
  background: url(../images/noise.gif) repeat center center #fff;
  padding: 10rem 0 6rem;
}

#greenbell-group .title {
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  text-align: center;
  border-bottom: solid 1px #aaa;
}

#greenbell-group .grid {
  margin: 4rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

#greenbell-group .grid .logo {
  display: grid;
  place-content: center;
  place-items: center;
  text-align: center;
  background-color: #fff;
  padding: 3rem 2rem;
  position: relative;
  border: solid 1px #ccc;
}

#greenbell-group .grid .logo img {
  width: 65%;
  margin: 0 auto;
}

#greenbell-group .grid .logo h3 {
  margin: 1.6rem 0 0;
  line-height: 1.4;
  font-size: 1.6rem;
  font-weight: 600;
}

#greenbell-group .grid .logo:after {
  font-size: 2.6rem;
  color: var(--main-color);
  font-family: "Material Symbols Outlined";
  content: "\e5e1";
  transition: 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.4rem;
}

#greenbell-group .grid .logo:hover::after {
  right: 0.8rem;
}

footer {
  width: 100%;
  padding: 30rem 0 8rem;
  position: relative;
  color: #fff;
}

footer .container {
  position: relative;
  z-index: 20;
}

footer::before,
footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

footer::before {
  background-color: var(--main-color);
  clip-path: polygon(0 0, 100% clamp(20px, 23.44vw, 450px), 100% 100%, 0% 100%);
}

footer::after {
  background-color: var(--btn-color);
  clip-path: polygon(0 clamp(20px, 23.44vw, 450px), 100% 0, 100% 100%, 0% 100%);
}

footer .access {
  justify-content: space-between;
  align-items: flex-start;
}

footer .access .info {
  width: 30rem;
  margin: 0 5% 0 0;
}

footer .access .info img {
  width: 90%;
}

footer .access .info .address {
  margin: 2rem 0 1.2rem;
}

footer .access .info .tel {
  font-size: 1.8rem;
}

footer .access .info .tel a {
  text-decoration: underline;
  color: #fff;
}

footer .access .map {
  width: calc(100% - 30rem - 5%);
}

footer .access .map iframe {
  width: 100%;
  height: 26rem;
}

footer nav {
  margin: 3rem 0 0;
}

footer nav ul li {
  margin: 0 0.8rem;
}

footer nav ul li a {
  color: #fff;
  font-size: 1.5rem;
}

footer nav ul li a:before {
  content: ">";
  font-size: 1.2rem;
  color: #b9b9b9;
  font-weight: 800;
  margin: 0 0.1rem;
}

footer .copyright {
  position: relative;
  z-index: 20;
  font-size: 1.3rem;
  margin: 4rem 0 0;
  text-align: center;
}

footer .copyright a {
  color: #fff;
  text-decoration: underline;
}

/**
 * home
 */
#home #showcase {
  color: #fff;
  position: relative;
  transform: none;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0;
  animation-duration: 0.5s;
  transform: none;
  background-attachment: fixed;
  background-image: url(../images/home/kv.png);
}

#home #showcase::before {
  content: "";
  position: absolute;
  left: -80%;
  bottom: 100%;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: #005fad;
  clip-path: polygon(0 -42%, 100% 138%, 100% 100%, 0% 100%);
  opacity: 0.6;
  animation-duration: 2s;
}

#home #showcase.start::before {
  animation: left 1.2s forwards;
}

@keyframes left {
  0% {
    left: -80%;
    bottom: 100%;
  }
  100% {
    left: 0;
    bottom: 0;
  }
}

#home #showcase::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../images/pattern.png) rgba(0, 0, 0, 0.2);
  z-index: 1;
}

#home #showcase .container {
  height: 100%;
  position: relative;
}

#home #showcase .container h1 {
  width: 100%;
  position: absolute;
  z-index: 9990;
  top: 50%;
  transform: translateY(-50%);
  left: 5rem;
  /* transform: translate(-50%, 50%); */
  font-size: clamp(4rem, 3.2vw, 6rem);
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-shadow: 0px 0px 10px #000;
  opacity: 0;
  animation-duration: 2s;
}

#home #showcase.start .container h1 {
  animation: start 2.2s forwards;
}

@keyframes start {
  0% {
    left: -20%;
    opacity: 0;
  }
  100% {
    left: 5rem;
    opacity: 1;
  }
}

#home #showcase .container h1 p {
  color: #fff;
  margin: 3rem 0;
  font-size: 76%;
}

#home #showcase .container h1 small {
  font-size: 60%;
}

#home #showcase .container h1 span {
  font-size: 134%;
  display: block;
}

#home #showcase .container h1 img {
  width: 30%;
  -webkit-filter: drop-shadow(0px 3px 5px rgba(255, 255, 255, 0.8));
  filter: drop-shadow(0px 3px 5px rgba(255, 255, 255, 0.8));
}

#home main section .content .text .list ul {
  padding: 4rem 8rem 4rem 10rem;
  background-color: #f9f9f9;
  color: #444;
}

#home main section .content .text .list ul li {
  margin: 0 0 3rem;
}

#home main section .content .text .list ul li:last-child {
  margin: 0;
}

#home main section .content .text .list ul li h4 {
  font-size: 2.2rem;
  margin: 0 0 0.8rem;
  position: relative;
}

#home main section .content .text .list ul li p {
  padding: 0 0 0 0.2rem;
}

#home main section .content .text .list ul li h4:before {
  width: 22px;
  aspect-ratio: 1;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  background: var(--main-light-color);
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: -26px;
}

#home main section.support .content .text {
  margin: 6rem 0 0;
}

#home main section.monetize {
  background-color: var(--main-color);
}

#home main section.monetize::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url(../images/pattern.png) rgba(0, 0, 0, 0.05);
  z-index: 0;
}

#home main section.monetize .content .text {
  color: #fff;
  margin: 6rem 0 0;
  position: relative;
  z-index: 10;
}

#home main section.leaseback .content .text {
  margin: 6rem 0 0;
}

#home main section.service .content .text {
  position: relative;
}

#home main section.service .content .text img {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: auto;
  z-index: 1;
  opacity: 0.1;
}

#home main section.service .content .text .list {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}

#home main section.service .content .text ul {
  counter-reset: number;
  font-size: 2rem;
  background-color: rgba(249, 249, 249, 0.6);
}

#home main section.service .content .text ul li {
  position: relative;
  padding-left: 2.2em;
  margin: 0 0 2.4rem;
}

#home main section.service .content .text ul li:last-child {
  margin: 0;
}

#home main section.service .content .text ul li::before {
  color: var(--main-color);
  font-size: 3.8rem;
  font-weight: 500;
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  top: -20px;
  left: 0;
}

#home main section.preparation .content .text ul {
  font-size: 2rem;
}

#home main section.preparation .content .text ul li img {
  width: 10%;
  opacity: 0.8;
}

#home main section.preparation .content .text ul li p {
  width: 86%;
}

/**
 * about
 */
#about #showcase {
  background-image: url(../images/about/kv.jpg);
}

#about main section.information .content .list {
  padding: 2rem 3rem;
  background-color: #f9f9f9;
  border: solid 1px #efefef;
  max-inline-size: none;
}

#about main section.information .content .list dl {
  margin: 0 0 1.4rem;
  padding: 0 0 1.4rem;
  border-bottom: solid 1px #efefef;
}

#about main section.information .content .list dl:last-child {
  border-bottom: none;
}

#about main section.information .content .list dl dt {
  width: 20%;
  font-weight: 500;
}

#about main section.information .content .list dl dd {
  width: 75%;
  font-size: 1.6rem;
}

#about main section.philosophy .content .text {
  margin: 4rem 0 0;
  text-align: center;
}

#about main section.philosophy .content .text p {
  font-size: 2.4rem;
}

/**
 * support-lease
 */
#support-lease #showcase {
  background-image: url(../images/support-lease/kv.png);
}

#support-lease main section.preparation .content .text .list ul {
  font-size: 2rem;
  padding: 4rem 8rem 4rem 10rem;
  background-color: #f9f9f9;
  color: #444;
}

#support-lease main section.preparation .content .text .list ul li {
  margin: 0 0 3rem;
}

#support-lease main section.preparation .content .text .list ul li:last-child {
  margin: 0;
}

#support-lease main section.preparation .content .text ul li img {
  width: 10%;
  opacity: 0.8;
}

#support-lease main section.preparation .content .text ul li p {
  width: 86%;
}

#support-lease main section.preparation .content .text ul li a {
  color: var(--main-color);
  text-decoration: underline;
}

#support-lease main section.preparation .content .text .tel {
  font-size: 2.4rem;
  text-align: center;
  margin: 3rem 0 0;
}

#support-lease main section.preparation .content .text .tel a.num {
  font-size: 5.4rem;
  font-weight: 900;
  letter-spacing: 0.4rem;
  color: var(--main-color);
}

#support-lease main section.preparation .content .text .tel a.txt {
  color: var(--main-color);
  text-decoration: underline;
}

#support-lease main section.analysis .content h3 {
  margin: 5rem 0 1rem;
}

#support-lease main section.analysis .content .text .list ul {
  font-size: 2rem;
  margin: 4rem 0;
  padding: 4rem 8rem 4rem 10rem;
  background-color: #f9f9f9;
  color: #444;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

#support-lease main section.analysis .content .text .list ul li {
  margin: 0 0 3rem;
}

#support-lease main section.analysis .content .text .list ul li:last-child {
  margin: 0;
}

#support-lease main section.analysis .content .text ul li img {
  width: 18%;
  opacity: 0.8;
}

#support-lease main section.analysis .content .text ul li p {
  width: 76%;
  text-align: left;
}

/**
 * restructuring-lease
 */
#restructuring-lease #showcase {
  background-image: url(../images/restructuring-lease/kv.png);
}

#restructuring-lease main section.preparation .content .text .list ul {
  font-size: 2rem;
  padding: 4rem 8rem 4rem 10rem;
  background-color: #f9f9f9;
  color: #444;
}

#restructuring-lease main section.description .content .text img {
  margin: 0 0 2rem;
}

#restructuring-lease main section.description .content .text img.sp {
  display: none;
}

#restructuring-lease main section.preparation .content .list ul {
  font-size: 2rem;
  padding: 4rem 8rem 4rem 10rem;
  background-color: #f9f9f9;
  color: #444;
  margin: 4rem 0;
}

#restructuring-lease main section.preparation .content .list ul li {
  margin: 0 0 3rem;
}

#restructuring-lease main section.preparation .content .list ul li:last-child {
  margin: 0;
}

#restructuring-lease main section.preparation .content ul li img {
  width: 10%;
  opacity: 0.8;
}

#restructuring-lease main section.preparation .content ul li p {
  width: 86%;
}

#restructuring-lease main section.preparation .content .text .tel {
  font-size: 2.4rem;
  text-align: center;
  margin: 3rem 0 0;
}

#restructuring-lease main section.preparation .content .text .tel a.num {
  font-size: 5.4rem;
  font-weight: 900;
  letter-spacing: 0.4rem;
  color: var(--main-color);
}

#restructuring-lease main section.preparation .content .text .tel a.txt {
  color: var(--main-color);
  text-decoration: underline;
}

#restructuring-lease main section.analysis .content h3 {
  margin: 5rem 0 1rem;
}

#restructuring-lease main section.analysis .content .text .list ul {
  font-size: 2rem;
  margin: 4rem 0;
  padding: 4rem 8rem 4rem 10rem;
  background-color: #f9f9f9;
  color: #444;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

#restructuring-lease main section.analysis .content .text .list ul li {
  margin: 0 0 3rem;
}

#restructuring-lease
  main
  section.analysis
  .content
  .text
  .list
  ul
  li:last-child {
  margin: 0;
}

#restructuring-lease main section.analysis .content .text ul li img {
  width: 18%;
  opacity: 0.8;
}

#restructuring-lease main section.analysis .content .text ul li p {
  width: 76%;
  text-align: left;
}

/**
 * leaseback
 */
#leaseback #showcase {
  background-image: url(../images/leaseback/kv.png);
}

#leaseback main section.description .content .list ul {
  font-size: 2rem;
  padding: 4rem 8rem 4rem 10rem;
  background-color: #f9f9f9;
  color: #444;
  margin: 4rem 0;
}

#leaseback main section.description .content .list ul li {
  margin: 0 0 3rem;
}

#leaseback main section.description .content .list ul li:last-child {
  margin: 0;
}

#leaseback main section.description .content ul li img {
  width: 10%;
  opacity: 0.8;
}

#leaseback main section.description .content ul li p {
  width: 86%;
}

#leaseback main section.description .content .text .tel {
  font-size: 2.4rem;
  text-align: center;
  margin: 4rem 0 0;
  margin-inline: auto;
  max-inline-size: max-content;
}

#leaseback main section.description .content .text .tel a.num {
  font-size: 5.4rem;
  font-weight: 900;
  letter-spacing: 0.4rem;
  color: var(--main-color);
}

#leaseback main section.description .content .text .tel a.txt {
  color: var(--main-color);
  text-decoration: underline;
}

#leaseback main section.cost .content .list {
  position: relative;
}

#leaseback main section.cost .content .list::before {
  content: "";
  width: 10rem;
  height: 10rem;
  line-height: 10rem;
  border-radius: 50%;
  border: solid 12px var(--main-color);
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: -5rem;
  transform: translateY(-50%);
}

#leaseback main section.cost .content .list.bad::before,
#leaseback main section.cost .content .list.bad::after {
  content: "";
  display: block;
  width: 12rem;
  height: 1.2rem;
  background: #d54016;
  border: none;
  transform-origin: 68% -100%;
  position: absolute;
  border-radius: 0;
  top: 50%;
  left: -5rem;
  transform: translateY(-50%) rotate(45deg);
}

#leaseback main section.cost .content .list.bad::after {
  transform: rotate(-45deg);
  transform-origin: 20% 0%;
}

#leaseback main section.cost .content .list ul {
  font-size: 2rem;
  padding: 4rem 8rem 4rem 10rem;
  background-color: #f9f9f9;
  color: #444;
  margin: 4rem 0;
}

#leaseback main section.cost .content .list ul li {
  border-bottom: solid 1px #eee;
  padding: 2rem 0;
}

#leaseback main section.cost .content .list ul li:last-child {
  margin: 0;
  border-bottom: none;
}

#leaseback main section.cost .content .list ul li div:nth-child(1) {
  width: 8%;
  text-align: center;
}

#leaseback main section.cost .content .list ul li div:nth-child(2) {
  width: 40%;
}

#leaseback main section.cost .content .list ul li div:nth-child(2) .num {
  font-size: 3.4rem;
  font-weight: 600;
  color: var(--btn-color);
}

#leaseback main section.cost .content .list.bad ul li div:nth-child(2) .num {
  color: #d54016;
}

#leaseback main section.cost .content .list ul li div:nth-child(3) {
  width: 36%;
}

#leaseback main section.cost .content .safety {
  text-align: center;
  font-weight: 800;
  font-size: 2.6rem;
  position: relative;
  z-index: 999;
}

#leaseback main section.cost .content .safety span {
  position: relative;
  z-index: 999;
  display: inline-block;
  background-color: #fff;
  padding: 0 4rem;
  color: var(--btn-color);
}

#leaseback main section.cost .content .safety:before {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top: solid 6px var(--main-color);
  content: "";
  z-index: -1;
}

#leaseback main section.cost .content .txt p {
  margin: 0 0 2rem;
}

/**
 * faq
 */
#faq #showcase {
  background-image: url(../images/faq/kv.jpg);
}

#faq main section.question .content .list .anchor-links {
  margin: 0 0 3rem;
  border: solid 1px #efefef;
  border-radius: 6px;
  padding: 1.5rem 3rem;
  background-color: #fff;
}

#faq main section.question .content .list .anchor-links ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}

#faq main section.question .content .list .anchor-links ul a {
  color: var(--main-light-color);
  text-decoration: underline;
}

#faq main section.question .content .list h3 {
  color: var(--btn-color);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 8rem 0 4rem;
  padding: 0 0 1.5rem;
  border-bottom: solid 2px #eee;
}

#faq main section.question .content .list dl {
  font-size: 2rem;
  margin: 0 0 4rem;
}

#faq main section.question .content .list dl dt {
  font-size: 2rem;
  position: relative;
  padding: 0 0 0.6rem 3.4rem;
  margin: 0 0 0.6rem;
  border-bottom: solid 1px #efefef;
}

#faq main section.question .content .list dl dt::before {
  content: "Q";
  font-size: 3rem;
  position: absolute;
  font-weight: bold;
  color: var(--main-color);
  top: 0;
  left: 0;
  line-height: 1;
}

#faq main section.question .content .list dl dd {
  font-size: 1.6rem;
  position: relative;
  padding: 0 0 0 3.4rem;
}

#faq main section.question .content .list dl dd::before {
  content: "A";
  font-size: 3rem;
  position: absolute;
  font-weight: bold;
  color: #d54016;
  top: 0;
  left: 0;
  line-height: 1;
}

#faq main section.question .content .list .tel {
  font-size: 2.4rem;
  text-align: center;
  margin: 3rem 0 0;
}

#faq main section.question .content .list .tel a.num {
  font-size: 5.4rem;
  font-weight: 900;
  letter-spacing: 0.4rem;
  color: var(--main-color);
}

#faq main section.question .content .list .tel a.txt {
  color: var(--main-color);
  text-decoration: underline;
}

#faq main section.feedback .content .list dl {
  font-size: 2rem;
  margin: 0 0 4rem;
}

#faq main section.feedback .content .list dl dt {
  font-size: 2rem;
  margin: 0 0 0.6rem;
  border-bottom: solid 1px #efefef;
}

#faq main section.feedback .content .list dl dd {
  font-size: 1.6rem;
  padding: 0 0.8rem;
}

main section.blog-info {
  background-color: #f4f7fb;
}

main section.blog-info .content {
  padding: 6rem 0 8rem;
}

main section.blog-info .blog-info__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

main section.blog-info .blog-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.6rem;
}

main section.blog-info .blog-info__item {
  background-color: #fff;
  border-radius: 0.8rem;
  border: 1px solid #d9e3f2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

main section.blog-info .blog-info__link {
  display: block;
  padding: 1.6rem 2.4rem;
  color: #0b3779;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.5;
}

main section.blog-info .blog-info__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(11, 55, 121, 0.12);
}

main section.blog-info .blog-info__empty {
  margin: 0;
  font-size: 1.6rem;
  color: #333;
  text-align: center;
}

main section.blog-info .blog-info__action {
  display: flex;
  justify-content: center;
}

main section.blog-info .blog-info__action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3.2rem;
  border-radius: 999px;
  background-color: #0b3779;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  min-width: 24rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

main section.blog-info .blog-info__action-link:hover {
  background-color: #0d4598;
  transform: translateY(-2px);
}

/**
 * apply
 */
#apply #showcase {
  background-image: url(../images/apply/kv.jpg);
}

/**
 * 404
 */
#not-found #showcase {
  background-image: url(../images/404/kv.jpg);
}

#not-found main section .content .text {
  text-align: center;
}

#not-found main section .content .text p {
  margin: 0 0 2rem;
}
