@charset "UTF-8";

body {
  font-family: 'Noto Sans', sans-serif;
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  background: linear-gradient(93deg, rgb(219, 238, 246), rgb(255, 255, 255));
  z-index: 3;
}

.header::after {
  background: #fff;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 96%;
  height: 45px;
  margin: 0 auto;
}

.site a {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.site img {
  width: 30px;
  margin-right: 10px;
}

.site .corp {
  color: #5b5b5b;
  font-size: 10px;
}

.header .pc-nav {
  display: none;
}

/* Header：Navigation Button */
.nav-button {
  box-sizing: content-box;
  padding: 10px;
  outline: none;
  border: none;
  background: none;
  width: 20px;
  height: 14px;
  cursor: pointer;
  color: #5b5b5b;
}

.nav-button::before,
.nav-button::after {
  content: '';
  display: block;
  height: 3px;
  background: currentColor;
  transform: translateY(4px);
  transition: .3s ease-in-out;
}

.nav-button::before {
  transform: translateY(-5px);
  box-shadow: 0 6px currentColor;
}

/* Header：Navigation Button (close button) */
.open .nav-button {
  z-index: 1000;
  width: 35px;
  color: #ffffff;
}

.open .nav-button::before {
  transform: translateY(2px) rotate(45deg);
  box-shadow: none;
}

.open .nav-button::after {
  transform: translateY(-1px) rotate(-45deg);
}


/* Header：Navigation：mobile */
.open .form {
  display: none;
}

.open nav {
  left: 0;
}

.nav {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background: rgba(52, 134, 160, 0.8);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: left .5s;
  z-index: 100;
}

html, body {
  overflow-x: hidden;
}

.nav h3 {
  margin-top: 0;
  font-size: 50px;
}

.nav ul {
  padding: 0;
  list-style: none;
}

.nav  li {
  font-size: 30px;
}

.nav  li:hover {
  opacity: 0.7;
}

.nav li:not(:last-child) {
  margin-bottom: 25px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  background-image: url(../images/etienne-beauregard-riverin-B0aCvAVSX8E-unsplash.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(36, 36, 36, 0.5);
}

.hero .container {
  position: absolute;
  display: flex;
  flex-direction: column-reverse;
  width: 85%;
  margin: 0 auto;
  text-align: start;
}

.hero .catch {
  vertical-align: bottom;
  text-align: start;
}

.hero h1 {
  margin: 0;
  color: #e5e5e5;
  font-size: 52px;
  font-weight: 600;
}

.hero p {
  margin: 10px 0 15px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

.hero .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  border-radius: 30px;
  width: 180px;
  height: 34px;
  transition: 0.3s;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.56);
  background: #3486A0;
}

.hero .btn:hover {
  opacity: 0.9;
}

.hero .service-icons {
  position: relative;
  top: -25px;
  left: -25px;
  width: 260px;
}

/* About Section */
.about {
  padding: 50px 0 0 0;
  background: linear-gradient(90deg, rgba(52, 134, 160, 0.33), rgba(219, 238, 246, 0.5) 100%, rgba(255, 255, 255, 1) 90%);
  overflow: hidden;
}

.about h2 {
  font-size: 20px;
  color: #5b5b5b;
  text-align: center;
}

.about .about-card {
  display: flex;
  justify-content: center;
  width: 104%;
  margin: 60px 0;
  padding: 35px 0;
  background: #fff;
  border-radius: 50px;
  box-shadow: 2px 5px 5px -2px rgba(0, 0, 0, 0.3);
  transform: rotate(12deg);
}


.about .container {
  display: flex;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  transform: rotate(-12deg)
}

.about h3 {
  font-size: 16px;
  color: #3486A0;
}

.about p {
  font-size: 10px;
  line-height: 1.5;
}

.about img {
  width: 52px;
}

/* Service Section */
.service {
  padding: 50px 0 10px 0;
  background: linear-gradient(90deg, rgba(52, 134, 160, 0.33), rgba(219, 238, 246, 0.5) 100%, rgba(255, 255, 255, 1) 90%);
}

.service h2 {
  margin: 25px 0;
  font-size: 20px;
  color: #5b5b5b;
  text-align: center;
}

.service .container {
  width: 95%;
  margin: 0 auto;
  text-align: center;
}

.service .icons {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 70px;
}

.service .icon img {
  width: 95px;
}

.service .icon p {
  margin: 0;
  color: #5b5b5b;
  font-size: 18px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 1px;
}

.service .cards {
  text-align: center;
}

.service .card {
  margin-bottom: 70px;
  padding: 50px 0;
  background: #fff;
  border-radius: 15%;
}

.service .scrivener-card {
  margin-bottom: 0;
  padding: 50px 0;
  background: #fff;
  border-radius: 15%;
}

.service .detail {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 260px;
  height: 30px;
  margin-bottom: 20px;
  box-shadow: 0 8px 6px -8px rgba(0, 0, 0, 0.4);
}

.service h3 {
  position: absolute;
  margin: 0;
  font-size: 14px;
  color: #fff;
  border: none;
}

.service .cards p {
  position: relative;
  margin: 0;
  font-size: 10px;
  transform: scale(0.8);
}

.service img {
  width: 80%;
}

.service .bottom-text {
  margin: 40px 0;
  text-align: center;
  line-height: 1.5;
  font-size: 12px;
  color: #5b5b5b;
  font-weight: 600;
}

.service .bottom-img {
  width: 50%;
}

/* Service：FP */
.service .fp-card .detail {
  background: #71d5eb;
}

.service .fp-card h3 {
  top: 6px;
  left: 20px;
}

.service .fp-card p {
  top: -6px;
  left: 30px;
  padding: 20px 30px 8px 10px;
  background: #fff;
}

.service .fp-card img {
  width: 65%;
}

/* Service：Real Estate */
.service .real-estate-card .detail {
  background: #3486A0;
}

.service .real-estate-card h3 {
  top: 6px;
  left: 11px;
}

.service .real-estate-card p {
  top: -6px;
  left: 36px;
  padding: 20px 15px 8px 10px;
  background: #fff;
}

.service .real-estate-card img {
  width: 90%;
}

/* Service：Scrivener */
.service .scrivener-card .detail {
  background: #88bacf;
}

.service .scrivener-card h3 {
  top: 6px;
  left: 17px;
}

.service .scrivener-card p {
  top: -6px;
  left: 30px;
  padding: 20px 30px 8px 10px;
  background: #fff;
}

.service .scrivener-card img {
  width: 65%;
}


/* Contact Section */
.contact {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(90deg, rgba(52, 134, 160, 0.33), rgba(219, 238, 246, 0.5) 100%, rgba(255, 255, 255, 1) 90%);
  overflow: hidden;
}


.contact h2 {
  position: relative;
  font-size: 20px;
  color: #fff;
  text-align: center;
  z-index: 2;
}

.contact .mail {
  position: absolute;
  width: 58px;
  top: 175px;
  left: 19px;
  z-index: 2;
}

.contact .shift-bg {
  position: absolute;
  right: -50px;
  top: 45px;
  height: 535px;
  width: 90%;
  background: #3486A0;
  border-radius: 60px;
  z-index: 0;
}

.contact .container {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
  text-align: center;
  background: #fff;
  border-radius: 50px;
}

.contact .contact-card {
  position: relative;
  width: 75%;
  margin: 0 auto;
}

.contact h3 {
  font-size: 10px;
  line-height: 1.4;
}

.contact .contact-card p {
  width: 95%;
  margin: 0 auto 10px;
  font-size: 10px;
  transform: scale(0.8);
  line-height: 1.4;
}

/* Contact Section : Form */
.contact .form {
  width: 65%;
  margin: 0 auto;
  text-align: start;
}

.contact .form span {
  margin-left:10px;
  font-size: 12px;
  font-weight: 600;
}

.contact .form input[type="text"],
.contact .form input[type="email"],
.contact .form input[type="tel"],
.contact .form textarea {
  width: 100%;
  margin: 2px 0 15px 0;
  padding: 8px 14px;
  border: 1px solid #CDD6DD;
  background: #e5e5e5;
  box-sizing: border-box;
  border-radius: 0;
  color: #333333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  border-radius: 10px;
  box-shadow: inset 0 5px 7px rgba(0, 0, 0, 0.2);
}

.contact .form ::placeholder {
  padding: 10px 0 0 0;
}

.contact .form input[type="checkbox"] {
  margin: 15px 0;
}

.contact .contact-card .privacy {
  position: absolute;
  bottom: 26px;
  left: 6px;
  text-align: center;
  width: 100%;
  margin: 0 0 10px 10px;
  font-size: 10px;
  transform: scale(0.7);
}

.contact .form ::placeholder {
  color: #5b5b5b;
  opacity: 1;
}

.contact .form textarea {
  resize: none;
  margin-bottom: 0;
  height: 200px;
}

.contact .form .btn {
  display: block;
  width: 110px;
  margin: 0 auto;
  padding: 5px 30px;
  box-sizing: border-box;
  border-radius: 24px;
  border: none;
  color: #fff;
  background: #3486A0;
  font-size: 10px;
  text-align: center;
  cursor: pointer;
}

.contact .form .btn:hover {
  opacity: 0.9;
}

/* Company Section */
.company {
  padding: 50px 0 0 0;
  background: #88bacf;
}

.company h2 {
  font-size: 20px;
  color: #fff;
  text-align: center;
}

.company .container {
  width: 90%;
  margin: 0 auto;
  background: #e5e5e5;
  border-radius: 15px;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
}


.company table {
  border-collapse: collapse;
}

.company td {
  font-size: 10px;
}

.company .t-title {
  vertical-align: middle;
  padding: 0 46px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}

.company .t-content {
  padding: 15px 10px;
  border-bottom: 1px solid #000;
}

.company .t-logo {
  padding: 10px 0;
  text-align: center;
}

.company .t-logo img {
  width: 50px;
}

.company .btm-img {
  margin: 40px 0 20px 20px;
  width: 100px;
}

/* Privacy Policy Section */
.privacy-policy {
  padding: 50px 0 40px 0;
  background: linear-gradient(90deg, rgba(52, 134, 160, 0.33), rgba(219, 238, 246, 0.5) 100%, rgba(255, 255, 255, 1) 90%);
}

.privacy-policy h2 {
  margin: 30px;
  font-size: 20px;
  color: #5b5b5b;
  text-align: center;
}

.privacy-policy .container {
  width: 75%;
  margin: 0 auto;
  padding: 50px 20px;
  background: #fff;
  border-radius: 50px;
}

.privacy-policy div {
  margin-bottom: 30px;
}

.privacy-policy h3 {
  font-size: 12px;
}

.privacy-policy p {
  font-size: 10px;
}

/* Footer */
.footer {
  padding: 0 0 60px 0;
  background: linear-gradient(90deg, rgba(52, 134, 160, 0.33), rgba(219, 238, 246, 0.5) 100%, rgba(255, 255, 255, 1) 90%);
  text-align: center;
}

.footer a {
  padding: 22px 4px;
  font-size: 10px;
  background: #88bacf;
  color: #fff;
  cursor: pointer;
  border-radius: 100%;
  box-shadow: 0px 5px 5px -1px rgba(0, 0, 0, 0.2);
}

.footer a:hover {
  opacity: 0.6;
}

.footer .arrow {
  display: none;
}