@charset "utf-8";

* {
margin: 0;
padding: 0;
font-family: "Noto Sans JP", sans-serif;
}
a {
text-decoration:none;
}
*,
*::before,
*::after {
box-sizing: border-box;
} body {
padding-top: 80px;
}
body.admin-bar .header {
top: 32px;
}
html {
scroll-padding-top: 80px;
scroll-behavior: smooth;
}
.breadcrumb {
display: flex;
flex-wrap: wrap;
margin: 20px auto;
padding: 0 40px;
font-size: 12px;
color: #707070;
}
.breadcrumb a{
color: inherit;
text-decoration: none;
}
.breadcrumb a:hover {
color: #363636;
text-decoration: underline;
}
.separator{
width: 100%;
height: 100px;
background: linear-gradient(0deg,#f2f2f2 1%,#fff);
display: block !important;
}
@media screen and (max-width: 782px) {
body.admin-bar .header {
top: 46px;
}
}
@media screen and (max-width: 768px) {
body {
padding-top: 50px;
}
.breadcrumb {
padding: 0 5% 10px;
font-size: 10px;
margin: 10px auto;
}
.separator{
height: 50px;
}
} .header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 80px;
z-index: 100;
background: #fff;
}
.header__inner {
margin: 0 auto;
height: 100%;
padding: 0 40px;
display: flex;
align-items: center;
justify-content: space-between;
} .header__right {
display: flex;
align-items: center;
gap: 50px;
}
.header__logo img {
height: 60px;
}
.header__menu {
display: flex;
gap: 50px;
list-style: none;
margin: 0;
padding: 0;
}
.header__menu li {
position: relative;
} .header__menu li:not(:last-child)::after {
content: "|";
position: absolute;
right: -18px;
top: 50%;
transform: translateY(-50%);
color: #999;
font-size: 18px;
}
.header__menu a {
text-decoration: none;
color: #000;
font-size: 18px;
font-weight: bold;
letter-spacing: 0.1em;
}
.header__menu a:hover {
opacity: 0.7;
text-decoration: underline;
}
.header__cta {
position: relative;
display: inline-block;
background: #006FB9;
color: #fff;
padding: 12px 26px;
border-radius: 999px;
font-size: 18px;
font-weight: bold;
text-decoration: none;
overflow: hidden;
z-index: 1;
transition: color 0.3s;
}
.header__cta::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 0%;
height: 100%;
background: #155a96;
z-index: -1;
transition: width 0.4s ease;
}
.header__cta:hover::before {
width: 100%;
} .hamburger {
display: none;
width: 30px;
height: 22px;
position: relative;
border: none;
background: none;
cursor: pointer;
z-index: 1001;
}
.hamburger span {
position: absolute;
left: 0;
width: 100%;
height: 2px;
background: #333;
transition: 0.3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) {
transform: rotate(45deg);
top: 10px;
}
.hamburger.active span:nth-child(2) {
opacity: 0;
}
.hamburger.active span:nth-child(3) {
transform: rotate(-45deg);
bottom: 10px;
} .sp-nav {
position: fixed;
top: 0;
right: -100%;
width: 100%;
height: 100vh;
background: rgba(255, 255, 255, 0.95);
transition: 0.4s;
z-index: 1000;
display: flex;
align-items: center;
justify-content: flex-start;
}
.sp-nav.active {
right: 0;
}
.sp-nav__menu {
list-style: none;
padding: 0 30px;
width: 100%;
}
.sp-nav__menu li {
margin-bottom: 25px;
border-bottom: 1px solid #a7a7a7;
padding-bottom: 30px;
}
.sp-nav__menu a {
font-size: 18px;
color: #333;
text-decoration: none;
display: block;
} @media screen and (max-width: 768px) {
.header {
height: 50px;
}
.header__logo img {
height: 30px;
}
.header__nav {
display: none;
}
.hamburger {
display: block;
}
.header__cta {
display: none;
}
body.no-scroll {
overflow: hidden;
}
} .footer {
position: relative;
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/footer.webp) center/cover no-repeat;
color: #fff;
padding: 30px 50px;
margin-top: 0;
}
.footer::before {
content: "";
position: absolute;
inset: 0;
background: rgba(0,0,0,0.65);
}
.footer__inner {
position: relative;
z-index: 1;
margin: 0 auto;
}
.footer__nav {
margin-bottom: 30px; 
}
.footer__menu {
display: flex;
justify-content: center;
gap: 50px;
list-style: none;
padding: 0;
margin: 0;
font-size: 14px;
letter-spacing: 0.05em;
}
.footer__menu li {
display: inline-block;
list-style: none;
}
.footer__menu a {
color: #fff;
text-decoration: none;
font-size: 14px;
opacity: 0.9;
}
.footer__line {
height: 1px;
background: rgba(255,255,255,0.4);
margin: 30px 0 40px;
}
.footer__bottom {
display: flex;
justify-content: space-between;
align-items: flex-end;
}
.footer__company {
font-size: 20px;
font-weight: bold;
margin-bottom: 20px;
}
.footer__address,
.footer__tel {
font-size: 14px;
margin-bottom: 10px;
line-height: 1.8;
}
.footer__tel a{
pointer-events: none;
color: #fff;
}
.footer__right {
text-align: right;
}
.footer__right img {
width: 100px;
margin-bottom: 10px;
}
.footer__copy {
font-size: 12px;
opacity: 0.8;
}
.footer__menu a:hover {
opacity: 0.7;
text-decoration: underline;
}
.grecaptcha-badge{
visibility:hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
.footer {
padding: 10%;
}
.footer__menu {
flex-wrap: wrap;
justify-content: flex-start;
gap: 16px 24px;
}
.footer__bottom {
flex-direction: column;
align-items: flex-start;
gap: 24px;
}
.footer__right {
text-align: left;
}
}
@media screen and (max-width: 768px) {
.footer {
padding: 5%;
}
.footer__nav {
margin-bottom: 0px; 
}
.footer__menu {
display: grid;
grid-template-columns: repeat(2, 1fr); 
gap: 10px 20px;
}
.footer__line {
margin: 15px 0 20px;
}
.footer__bottom {
flex-direction: column;
gap: 5px;
align-items: flex-start;
}
.footer__right {
text-align: left;
}
.footer__menu a {
font-size: 12px;
}
.footer__company {
font-size: 14px;
margin-bottom: 10px;
}
.footer__address,
.footer__tel {
font-size: 10px;
margin-bottom: 3px;
line-height: 1.3;
}
.footer__copy {
font-size: 10px;
}
.footer__right img {
margin-bottom: 0;
}
} .fv {
height: 220vh;
min-height: 1100px;
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/fv.webp) center/cover no-repeat;
position: relative;
display: flex;
padding: 0 40px;
}
.fv__overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.45);
}
.fv__inner {
position: relative;
transform: translateY(25vh); z-index: 2;
color: #fff;
}
.fv__title {
font-size: 70px;
font-weight: 700;
line-height: 1.4;
letter-spacing: 0.05em;
color: #fff;
margin-bottom: 50px;
}
.fv__lead {
font-size: 35px;
line-height: 2;
letter-spacing: 0.18em;
color: #fff;
text-align: left;
font-weight: 900;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
.fv__title {
font-size: 60px;
line-height: 1.8;
margin-bottom: 60px;
}
.fv__lead {
font-size: 30px;
}
}
@media screen and (max-width: 768px) {
.fv {
padding: 0 20px;
}
.fv__inner {
transform: translateY(20vh); 
}
.fv__title {
font-size: 35px;
line-height: 1.5;
margin-bottom: 50px;
}
.fv__lead {
font-size: 14px;
line-height: 2.5;
letter-spacing: 0.1em;
}
} .about {
position: static;
}
.about__card {
background: rgba(255,255,255,0.9);
border-radius: 20px;
padding: 50px 10%;
box-shadow: 0 30px 60px rgba(0,0,0,0.1);
position: absolute;
left: 50%;
transform: translateX(-50%);
top: 100vh;
width: calc(100% - 80px);
z-index: 2;
height: 100vh;
}
.about__top {
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
margin-bottom: 40px;
height: 45vh;
}
.about__content {
width: 60%;
flex-shrink: 0;
}
.section-title{
font-size: 40px;
letter-spacing: 0.05em;
}
.about__text {
font-size: 18px;
font-weight: 500;
text-shadow: 0 0 0.5px;
letter-spacing: 0.05em;
line-height: 2.5;
margin: 30px 0;
}
.about__logo {
width: 40%;
transform: scale(0.6);
display: flex;
align-items: center;
justify-content: center;
margin-top: 40px;
}
.about__logo img {
width: 100%;
height: auto;
display: block;
}
.about__image img {
width: 100%;
height: 40vh;
border-radius: 5px;
object-fit: cover;
}
.btn {
font-size: 25px;
font-weight: bold;
text-shadow: 0 0 1px;
letter-spacing: 0.05em;
display: inline-flex;
align-items: center;
gap: 30px;
color: #006FB9;
font-weight: 500;
text-decoration: none;
position: relative;
z-index: 10;
transition: 0.3s;
}
.btn::after {
content: "→";
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
border-radius: 50%;
background: #006FB9;
color: #fff;
font-size: 30px;
font-weight: bold;
transition: 0.3s;
}
.btn:hover {
transform: translateX(5px);
color: #155a96;
}
.btn:hover::after {
transform: translateX(10px);
background: #155a96;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
.about__top {
gap: 20px;
margin-bottom: 40px;
height: 60vh;
}
.section-title{
font-size: 30px;
}
.about__text {
margin: 50px 0;
line-height: 3;
}
.about__logo {
width: 40%;
transform: scale(0.8);
}
.about__image img {
height: 25vh;
}
}
@media screen and (max-width: 768px) {
.about {
margin-top: -60px;
padding: 5%;
}
.about__top {
display: block;
gap: 20px;
margin-bottom: 40px;
height: 60vh;
}
.about__content {
width: 100%;
}
.about__card {
padding: 40px 5%;
width: calc(100% - 30px);
}
.about__logo {
width: 40%;
transform: scale(0.9);
margin-top: auto;
margin-left: auto;
}
.about__image img {
height: 25vh;
}
.section-title{
font-size: 20px;
margin-bottom: 30px;
}
.about__text {
font-size: 14px;
line-height: 2;
}
.btn {
font-size: 20px;
}
.btn::after {
width: 50px;
height: 50px;
font-size: 20px;
}
} .property {
position: relative;
overflow: hidden;
padding: 200px 150px;
background: #fff;
height: 90vh;
}
.property::before {
content: "";
position: absolute;
inset: 0;
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/drawing.webp) center/cover no-repeat;
opacity: 0.1; z-index: 0;
transform: rotate(45deg);
overflow: hidden;
}
.property::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
180deg,
rgba(255,255,255,0) 0%,
rgba(255,255,255,0) 60%,
rgba(0, 0, 0, 0.096) 100%
);
}
.property__inner {
position: relative;
z-index: 2;
display: flex;
align-items: center;
justify-content: space-between;
gap: 80px;
}
.property__content {
width: 46%;
z-index: 4;
}
.property__text {
margin: 40px 0px 100px;
line-height: 3;
font-size: 18px;
color: #222;
font-weight: 500;
text-shadow: 0 0 0.5px;
}
.property__text a {
text-decoration: underline;
}
.property__text ul,
.property__text ol {
margin: 1em 0;
padding-left: 1.5em;
}
.property__images {
position: absolute;
right: 0;
top: 0;
width: 720px;
height: 560px;
z-index: 2;
}
.property__image {
position: absolute;
border-radius: 50%;
overflow: hidden;
}
.property__image img {
width: 100%;
height: 100%;
object-fit: cover;
} .property__image--1 {
width: 500px;
height: 500px;
right: 180px;
bottom: 0;
z-index: 2;
} .property__image--2 {
width: 350px;
height: 350px;
right: 0;
top: -130px;
z-index: 3;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
.property {
padding: 200px 80px;
}
.property__image--1 {
width: 420px;
height: 420px;
right: 80px;
}
.property__image--2 {
width: 300px;
height: 300px;
top: -100px;
}
}
@media screen and (max-width: 767px) {
.property {
padding: 20% 5%;
}
.property::before {
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/drawing.webp) left/cover no-repeat;
}
.property__inner {
flex-direction: column;
gap: 40px;
}
.property__text {
margin: 40px 0px 100px;
line-height: 2;
font-size: 14px;
}
.property__content,
.property__images {
width: 100%;
}
.property__images {
bottom: 0;
}
.property__image--1 {
width: 200px;
height: 200px;
right: 200px;
}
.property__image--2 {
width: 250px;
height: 250px;
top: 250px;
}
} .news {
position: relative;
padding: 200px 40px;
overflow: hidden;
}
.news::before {
content: "";
position: absolute;
inset: 0;
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/news.webp) center/cover no-repeat;
opacity: 0.1; z-index: 0;
}
.news__inner{
text-align: center;
position: relative;
z-index: 1;
}
.news__list {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
margin: 60px 0px;
list-style: none;
padding: 0;
}
.news__item {
list-style: none;
margin: 0;
padding: 0;
transition: 0.3s;
}
.news__item a {
display: block;
color: #333;
text-decoration: none;
}
.news__item::marker {
content: none;
}
.news__img {
width: 100%;
aspect-ratio: 16 / 9;
overflow: hidden;
background: #f3f3f3;
}
.news__img img {
width: 100%;
height: 100%;
display: block;
}
.news__img--logo {
object-fit: contain;
padding: 20px;
box-sizing: border-box;
}
.news__date {
font-size: 12px;
color: #888;
margin-top: 10px;
}
.news__title {
margin-top: 5px;
font-size: 18px;
font-weight: bold;
}
@media screen and (max-width: 768px) {
.news {
padding: 20% 10%;
}
.news__list {
grid-template-columns: 1fr;
}
.news__title {
margin-top: 5px;
font-size: 14px;
}
.news__date {
font-size: 10px;
}
} .recruit-top {
position: relative;
display: flex;
height: 600px; }
.recruit__item {
width: 50%;
position: relative;
display: flex;
justify-content: center;
color: #fff;
}
.recruit__item--left {
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/recruit_f.webp) center/cover no-repeat;
}
.recruit__item--right {
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/recruit_m.webp) center/cover no-repeat;
}
.recruit__item::before {
content: "";
position: absolute;
inset: 0;
background: rgba(0,0,0,0.5);
}
.recruit__inner {
position: absolute;
z-index: 2;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
text-align: center;
color: #fff;
padding: 0 150px;
}
.recruit-title{
text-align: left;
}
.recruit__text{
font-size: 30px;
text-shadow: 0 0 0.5px;
letter-spacing: 0.05em;
margin: 100px 0;
text-align: left;
}
.recruit__btn {
margin-top: 40px;
text-align: right;
}
.btn2 {
font-size: 25px;
font-weight: bold;
text-shadow: 0 0 1px;
letter-spacing: 0.05em;
display: inline-flex;
align-items: center;
gap: 30px;
color: #fff;
font-weight: 500;
text-decoration: none;
position: relative;
z-index: 10;
transition: 0.3s;
}
.btn2::after {
content: "→";
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
border-radius: 50%;
background: #fff;
color: #006FB9;
font-size: 30px;
font-weight: bold;
transition: 0.3s;
}
.btn2:hover {
transform: translateX(5px);
color: #b8b5b5;
}
.btn2:hover::after {
transform: translateX(10px);
background: #b8b5b5;
}
@media screen and (max-width: 768px) {
.recruit-top {
height: 400px;
}
.recruit__inner {
padding: 20% 5%;
}
.recruit__text{
font-size: 16px;
margin: 50px 0;
}
.btn2 {
font-size: 20px;
}
.btn2::after {
width: 50px;
height: 50px;
font-size: 20px;
}
} .contact {
position: relative;
margin-bottom: 0;
}
.contact__inner {
margin: 0 auto;
display: flex;
align-items: center;
position: relative;
z-index: 1;
min-height: 300px;
}
.contact__item {
position: relative;
width: 50%;
padding: 60px 40px;
display: flex;
flex-direction: column;
justify-content: center; align-items: center; }
.contact__item--tel {
position: relative;
overflow: hidden;
border: 0.5px solid #eeeeee;
height: 350px;
}
.contact__item--tel::before {
content: "";
position: absolute;
inset: 0;
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/tel.webp) center/cover no-repeat;
background-position: 180%;
opacity: 0.1; z-index: 0;
}
.contact__item--form {
position: relative;
overflow: hidden;
border: 0.5px solid #eeeeee;
height: 350px;
}
.contact__item--form::before {
content: "";
position: absolute;
inset: 0;
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/form.webp) center/cover no-repeat;
opacity: 0.1; z-index: 0;
}
.contact__label {
font-size: 30px;
font-weight: bold;
margin-bottom: 50px;
color: #000;
}
.contact__tel {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 20px;
background: #9fb3c5;
border-radius: 999px;
padding: 30px 20px;
font-weight: bold;
line-height: 1.2;
color: #000;
width: 80%;
height: 120px;
text-decoration: none;
position: relative;
overflow: hidden;
z-index: 10;
transition: color 0.3s;
}
.contact__tel::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 0%;
height: 100%;
background: #8a9dad;
z-index: -1;
transition: width 0.4s ease;
}
.contact__tel:hover::before {
width: 100%;
}
.telnum{
font-size: 32px;
font-weight: bold;
color: #000;
letter-spacing: 2px;
}
.contact__time {
font-size: 20px;
color: #000;
}
.tel-icon {
width: 30px;
height: 30px;
vertical-align: middle;
}
.contact__btn {
display: flex;
align-items: center;
justify-content: center;
padding: 30px 20px;
background: #006FB9;
color: #fff;
border-radius: 999px;
width: 80%;
height: 120px;
line-height: 1.2;
text-decoration: none;
font-size: 28px;
font-weight: bold;
position: relative;
overflow: hidden;
z-index: 10;
transition: color 0.3s;
}
.contact__btn::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 0%;
height: 100%;
background: #155a96;
z-index: -1;
transition: width 0.4s ease;
}
.contact__btn:hover::before {
width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
.contact__inner {
flex-direction: column;
}
.contact__item {
width: 100%;
padding: 0 5%;
}
.contact__item--tel,
.contact__item--form {
height: 250px;
}
.contact__label {
font-size: 26px;
margin-bottom: 28px;
}
.contact__tel,
.contact__btn {
width: 80%;
height: 100px;
}
.telnum {
font-size: 30px;
}
.contact__time {
font-size: 18px;
}
}
@media screen and (max-width: 768px) {
.contact__inner {
flex-direction: column;
}
.contact__item--tel,
.contact__item--form {
height: 180px;
}
.contact__item {
width: 100%;
padding: 0 5%;
}
.contact__label {
font-size: 15px;
margin-bottom: 15px;
}
.contact__tel {
width: 100%;
height: 80px;
margin: 0;
}
.tel-icon {
width: 20px;
height: 20px;
}
.telnum{
font-size: 20px;
letter-spacing: 2px;
}
.contact__time {
font-size: 14px;
}
.contact__btn {
font-size: 20px;
height: 80px;
width: 100%;
margin: 0 auto 10px;
padding: 0;
}
.recaptcha-notice{
margin-top: 30px;
font-size: 11px;
line-height: 1.5;
}
} .page {
position: relative;
z-index: 1;
}
.page-fv {
height: 300px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.page-fv::after {
content: "";
position: absolute;
inset: 0;
background: rgba(0,0,0,0.35);
z-index: 1;
}
.page-fv__title {
position: relative;
z-index: 2;
color: #fff;
font-size: 40px;
font-weight: 700;
letter-spacing: 0.08em;
}
.page-content {
padding: 100px 0;
}
.page-content__inner {
width: min(100%, 1000px);
margin: 0 auto;
padding: 0 20px;
}
.page-content__title {
font-size: 28px;
font-weight: bold;
text-align: center;
margin-bottom: 70px;
letter-spacing: 0.05em;
}
.page-content__body {
font-size: 16px;
line-height: 2.4;
color: #444;
letter-spacing: 0.04em;
}
.page-content__body h2 {
font-size: 24px;
margin: 70px 0 25px;
font-weight: bold;
color: #222;
}
.page-content__body h3 {
font-size: 20px;
margin: 70px 0 25px;
font-weight: bold;
color: #222;
}
.page-content__body p {
margin-bottom: 24px;
}
.page-content__body ul,
.page-content__body ol {
padding-left: 1.5em;
margin: 20px 0 30px;
}
.page-content__body li {
margin-bottom: 12px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
.page-fv {
height: 200px;
}
.page-fv__title {
font-size: 30px;
}
.page-section h2 {
font-size: 30px;
}
}
@media screen and (max-width: 768px) {
.page-fv {
height: 100px;
}
.page-fv__title {
font-size: 20px;
}
.page-content {
padding: 30px 5% 80px;
}
.page-content__inner {
width: 100%;
padding: 0;
}
.page-content__title {
font-size: 20px;
margin-bottom: 20px;
}
.page-content__body {
font-size: 13px;
line-height: 2;
}
.page-content__body h2 {
font-size: 20px;
margin: 20px 0;
}
.page-content__body h3 {
font-size: 18px;
margin: 40px 0 20px;
}
} .privacy-policy-fv {
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/privacypolicy.webp) center/cover no-repeat;
}
.pm_features-fv {
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/pm_features.webp) center/cover no-repeat;
}
.pm_specification-fv {
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/pm_specification.webp) center/cover no-repeat;
} .company {
position: relative;
z-index: 1;
}
.company::after {
content: "";
position: absolute;
top: 800px;
right: 0;
width: 1200px;
height: 1200px;
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/company.webp) no-repeat;
background-size: contain;
opacity: 0.1;
z-index: 0;
pointer-events: none;
}
.company-fv {
height: 300px;
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/about.webp) center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.company-fv::after {
content: "";
position: absolute;
inset: 0;
background: rgba(0,0,0,0.3);
z-index: 1;
}
.company-fv__title {
position: relative;
color: #fff;
font-size: 40px;
font-weight: 700;
letter-spacing: 0.1em;
z-index: 2;
}
.company-nav {
display: flex;
justify-content: center;
gap: 150px;
margin: 40px 100px;
padding-bottom: 15px;
}
.company-nav a {
position: relative;
font-size: 25px;
letter-spacing: 0.05em;
font-weight: bold;
color: #333;
text-decoration: none;
padding-right: 100px;
padding-bottom: 10px;
border-bottom: 1px solid #ddd;
}
.company-nav a::before {
content: "↓";
position: absolute;
right: 0;
top: 50%;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
font-size: 20px;
font-weight: bold;
background: #2b6cb0;
color: #fff;
border-radius: 50%;
transform: translateY(-50%);
}
.company-nav a::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 0;
height: 2px;
background: #2b6cb0;
transition: 0.3s;
}
.company-nav a:hover::after {
width: 100%;
}
.company-section {
margin: 100px 100px 200px;
padding: 0 20px;
}
.company-section h2 {
font-size: 40px;
letter-spacing: 0.1em;
font-weight: bold;
margin-bottom: 50px;
padding-left: 15px;
border-left: 15px solid #006FB9;
}
.company-section p {
font-size: 18px;
font-weight: 500;
text-shadow: 0 0 0.5px;
letter-spacing: 0.05em;
line-height: 3;
color: #444;
}
.company-table {
width: 100%;
border-collapse: collapse;
table-layout: fixed;
margin-top: 40px;
}
.company-table th {
font-size: 18px;
font-weight: 700;
text-shadow: 0 0 0.5px;
letter-spacing: 0.05em;
line-height: 2;
width: 30%;
color: #333;
padding: 18px 0;
border-bottom: 1px solid #cfd8e3;
white-space: nowrap;
text-align: left;
vertical-align: top;
}
.company-table td {
font-size: 18px;
font-weight: 500;
text-shadow: 0 0 0.5px;
letter-spacing: 0.05em;
line-height: 2;
width: 70%;
color: #555;
padding: 18px 0;
border-bottom: 1px solid #cfd8e3;
text-align: left;
vertical-align: top;
}
.company-mail-image {
display: inline-block;
vertical-align: middle;
}
.company-mail-image img {
display: block;
margin: 0;
padding: 0;
max-width: 100%;
height: auto;
}
.company-table td picture {
margin: 0;
padding: 0;
}
.company-map {
margin-top: 40px;
}
.company-map iframe {
width: 100%;
height: 250px;
border: none;
}
.partner {
display: flex;
align-items: center;
gap: 40px;
margin-top: 30px;
}
.partner img {
width: 240px;
flex-shrink: 0;
}
.partner p {
font-size: 18px;
font-weight: 500;
text-shadow: 0 0 0.5px;
line-height: 2;
color: #444;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
.company-fv {
height: 200px;
}
.company-fv__title {
font-size: 30px;
}
.company-section h2 {
font-size: 30px;
}
.company-nav {
flex-direction: column;
align-items: stretch;
gap: 30px 100px;
justify-content: center;
}
}
@media screen and (max-width: 768px) {
.company::after {
top: 600px;
right: 0;
width: 800px;
height: 800px;
}
.company-fv {
height: 100px;
}
.company-fv__title {
font-size: 20px;
}
.company-nav {
flex-direction: column;
grid-template-columns: repeat(1, 1fr); 
align-items: stretch;
gap: 8px;
margin: 0 5%;
}
.company-nav a {
font-size: 14px;
padding-bottom: 8px;
}
.company-nav a::before {
width: 20px;
height: 20px;
font-size: 15px;
}
.company-section {
margin: 30px 5% 80px;
padding: 0;
}
.company-section h2 {
font-size: 20px;
margin-bottom: 20px;
}
.company-section p {
font-size: 13px;
line-height: 2;
text-shadow: none;
}
.company-table {
margin-top: 0;
}
.company-table div {
flex-direction: column;
gap: 5px;
}
.company-table th {
font-size: 11px;
padding: 8px 0;
text-shadow: none;
}
.company-table td {
font-size: 13px;
padding: 8px 0;
text-shadow: none;
}
.partner {
flex-direction: column;
text-align: left;
gap: 10px;
margin-top: 10px;
}
.partner img {
width: 100px;
}
.partner p {
font-size: 13px;
text-shadow: none;
}
} .recruit {
position: relative;
z-index: 1;
}
.recruit::after {
content: "";
position: absolute;
bottom: 0;
right: 0;
width: 1200px;
height: 1200px;
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/news.webp) no-repeat;
background-size: contain;
transform: scaleX(-1);
opacity: 0.1;
z-index: 0;
pointer-events: none;
}
.recruit-fv {
height: 300px;
width: 100%;
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/recruit_f.webp) center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.recruit-fv::after {
content: "";
position: absolute;
inset: 0;
background: rgba(0,0,0,0.3);
z-index: 1;
}
.recruit-fv__title {
position: relative;
color: #fff;
font-size: 40px;
font-weight: 700;
letter-spacing: 0.1em;
z-index: 2;
}
.recruit-nav {
display: grid;
grid-template-columns: repeat(2, 1fr); 
gap: 30px 100px;
justify-content: center;
margin: 40px 100px;
padding-bottom: 15px;
}
.recruit-nav a {
position: relative;
font-size: 25px;
letter-spacing: 0.05em;
font-weight: bold;
color: #333;
text-decoration: none;
padding-right: 100px;
padding-bottom: 10px;
border-bottom: 1px solid #ddd;
}
.recruit-nav a::before {
content: "↓";
position: absolute;
right: 0;
top: 50%;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
font-size: 20px;
font-weight: bold;
background: #2b6cb0;
color: #fff;
border-radius: 50%;
transform: translateY(-50%);
}
.recruit-nav a::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 0;
height: 2px;
background: #2b6cb0;
transition: 0.3s;
}
.recruit-nav a:hover::after {
width: 100%;
}
.recruit-section {
margin: 100px 100px 200px;
padding: 0 20px;
}
.recruit-section h2 {
font-size: 40px;
letter-spacing: 0.1em;
font-weight: bold;
margin-bottom: 50px;
padding-left: 15px;
border-left: 15px solid #006FB9;
}
.recruit-table {
width: 100%;
border-collapse: collapse;
table-layout: fixed;
margin-top: 40px;
}
.recruit-table th {
font-size: 18px;
font-weight: 700;
text-shadow: 0 0 0.5px;
letter-spacing: 0.05em;
line-height: 2;
width: 30%;
color: #333;
padding: 18px 0;
border-bottom: 1px solid #cfd8e3;
white-space: nowrap;
text-align: left;
vertical-align: top;
}
.recruit-table td {
flex: 1;
font-size: 18px;
font-weight: 500;
text-shadow: 0 0 0.5px;
letter-spacing: 0.05em;
line-height: 2;
width: 70%;
color: #555;
padding: 18px 0;
border-bottom: 1px solid #cfd8e3;
text-align: left;
vertical-align: top;
} .entry-btn {
position: relative;
display: flex;
background: #006FB9;
color: #fff;
padding: 20px 40px;
border-radius: 999px;
align-items: center; justify-content: center; height: 80px;
font-size: 30px;
font-weight: bold;
text-decoration: none;
overflow: hidden;
transition: color 0.3s;
z-index: 10;
max-width: 400px;
width: 100%;
margin: 50px auto;
}
.entry-btn::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 0%;
height: 100%;
background: #155a96;
z-index: -1;
transition: width 0.4s ease;
}
.entry-btn:hover::before {
width: 100%;
} .recruit-message__text {
display: flex;
gap: 40px;
}
.recruit-message__text P{
font-size: 18px;
letter-spacing: 0.05em;
line-height: 2;
}
.recruit-message__img {
width: 300px;
height: 300px;
background: #ccc;
border-radius: 8px;
}
.recruit-message__img {
box-shadow: 5px 5px 5px #b2b2b2;
border-radius: 8px;
} .schedule {
padding: 80px 40px;
}
.schedule__list {
margin: 0 auto;
}
.schedule__item {
display: grid;
grid-template-columns: 120px 1fr 300px;
gap: 40px;
position: relative;
margin-bottom: 60px;
}
.schedule__time {
width: 80px;
height: 80px;
border: 1px solid #ccc;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
background: #fff;
font-size: 14px;
position: relative;
z-index: 2;
}
.schedule__item::before {
content: "";
position: absolute;
left: 60px;
top: 0;
bottom: -60px;
width: 1px;
background: #ccc;
z-index: 1;
}
.schedule__item:last-child::before {
display: none;
}
.schedule__content h3 {
font-size: 18px;
margin-bottom: 10px;
}
.schedule__content p {
font-size: 15px;
border-top: 1px solid #ccc;
padding-top: 10px;
line-height: 1.8;
}
.schedule__image {
height: 160px;
background: #ddd;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.schedule__image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
} .recruit-interview {
display: flex;
gap: 40px;
}
.recruit-card {
position: relative;
width: 100%;
min-height: 500px;
}
.recruit-card__bg {
position: absolute;
height: 100%;
inset: 0;
background: #006FB9;
border-radius: 20px;
transform: translate(12px, 12px);
z-index: 0;
}
.recruit-card__inner {
position: relative;
min-height: 500px;
z-index: 1;
background: #fff;
border-radius: 20px;
padding: 40px;
border: 1px solid #ccc;
}
.recruit-card__image{
height: 200px;
margin-bottom: 20px;
}
.recruit-card h3 {
font-size: 20px;
margin-bottom: 20px;
}
.recruit-card p {
font-size: 15px;
line-height: 2;
} .recruit-person__text {
display: flex;
gap: 40px;
}
.recruit-person__text P{
font-size: 18px;
letter-spacing: 0.05em;
line-height: 2;
}
.recruit-person__img {
width: 300px;
height: 300px;
background: #ccc;
}
.recruit-person__img {
box-shadow: 5px 5px 5px #b2b2b2;
} .recruit-policy {
font-size: 18px;
letter-spacing: 0.05em;
padding-left: 20px;
line-height: 4;
counter-reset: number; list-style: none; 
padding-left: 0;
}
.recruit-policy li {
position: relative;
padding-left: 30px; margin-bottom: 10px;
}
.recruit-policy li::before {
counter-increment: number; content: counter(number) ". "; font-weight: bold;
}
.recruit-message__img img,
.recruit-person__img img,
.recruit-card__image img,
.schedule__image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.schedule__image--sp {
display: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
.recruit-fv {
height: 200px;
}
.recruit-fv__title {
font-size: 30px;
}
.recruit-section h2 {
font-size: 20px;
}
}
@media screen and (max-width: 768px) {
.recruit::after {
width: 800px;
height: 800px;
}
.recruit-fv {
height: 100px;
}
.recruit-fv__title {
font-size: 20px;
}
.recruit-nav {
flex-direction: column;
grid-template-columns: repeat(1, 1fr); 
align-items: stretch;
gap: 8px;
margin: 0 5%;
}
.recruit-nav a {
font-size: 14px;
padding-bottom: 8px;
}
.recruit-nav a::before {
width: 20px;
height: 20px;
font-size: 15px;
}
.recruit-message,
.recruit-interview,
.recruit-person {
flex-direction: column;
}
.recruit-schedule {
grid-template-columns: 1fr;
}
.recruit-table {
grid-template-columns: 1fr;
}
.recruit-section {
margin: 30px 5% 80px;
padding: 0;
}
.recruit-section h2 {
font-size: 20px;
margin-bottom: 20px;
}
.recruit-section p {
font-size: 13px;
line-height: 2;
text-shadow: none;
}
.recruit-table div {
flex-direction: column;
gap: 5px;
}
.recruit-table th {
font-size: 11px;
padding: 8px 0;
text-shadow: none;
}
.recruit-table td {
font-size: 13px;
padding: 8px 0;
text-shadow: none;
}
.entry-btn {
height: 30px;
font-size: 18px;
width: 80%;
margin: 20px auto;
}
.recruit-message__text {
display: block;
}
.recruit-message__img {
width: 100%;
height: 150px;
margin-bottom: 15px;
}
.schedule__item {
grid-template-columns: 80px 1fr; gap: 20px;
}
.schedule__image {
grid-column: 2 / 3; margin-top: 15px;
width: 100%;
height: 160px;
}
.schedule__item::before {
left: 40px;
}
.schedule__time {
width: 60px;
height: 60px;
font-size: 11px;
}
.schedule__content h3 {
font-size: 13px;
}
.schedule__content p {
font-size: 13px;
}
.schedule__image {
height: 100px;
}
.recruit-card {
min-height: 400px;
}
.recruit-card__bg {
transform: translate(5px, 5px);
}
.recruit-card__inner {
min-height: 400px;
padding: 20px;
}
.recruit-card__image{
height: 150px;
}
.recruit-card h3 {
font-size: 15px;
}
.recruit-card p {
font-size: 13px;
line-height: 1.5;
}
.recruit-person__text {
display: block;
}
.recruit-person__img {
width: 100%;
height: 150px;
margin-bottom: 15px;
}
.recruit-person__text P{
font-size: 13px;
}
.recruit-policy {
font-size: 13px;
line-height: 3;
padding-left: 0;
}
.recruit-policy li {
position: relative;
padding-left: 10px; margin-bottom: 8px;
}
} .contact-fv {
height: 300px;
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/contact.webp) center/cover no-repeat;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.contact-fv::after {
content: "";
position: absolute;
inset: 0;
background: rgba(0,0,0,.35);
}
.contact-fv__title {
position: relative;
z-index: 1;
color: #fff;
font-size: 56px;
font-weight: 700;
letter-spacing: .08em;
}
.contact-form-section {
padding: 0px 40px;
}
.contact-form__inner {
max-width: 1000px;
margin: 0 auto;
padding: 80px 20px 100px;
}
.contact-form__inner h2 {
font-size: 40px;
letter-spacing: 0.1em;
font-weight: bold;
margin-bottom: 40px;
padding-left: 15px;
border-left: 15px solid #006FB9;
}
.contact-form__lead {
margin-top: 28px;
margin-bottom: 48px;
font-size: 15px;
line-height: 2;
color: #333;
}
.contact-form__lead p + p {
margin-top: 8px;
}
.contact-form__caution{
font-size: 25px;
font-weight: 700;
color: #e40000;
}
.contact-form__caution2{
font-size: 25px;
font-weight: 700;
color: #e40000;
text-align: center;
}
.p-contact {
margin-top: 50px;
}
.p-contact__inner{
width:min(100%, 1000px);
margin:auto;
}
.smf-progress-tracker{
margin-bottom: 50px;
} .p-contact input,
.p-contact textarea,
.p-contact select{
width:100%;
border:1px solid #D9D9D9;
background:#fff;
box-sizing:border-box;
font-size:16px;
}
.p-contact input,
.p-contact select{
height:56px;
padding:0 16px;
}
.p-contact textarea{
min-height:240px;
padding:16px;
line-height:1.8;
resize:vertical;
}
.p-contact .wp-block-columns{
margin-bottom:20px;
align-items:center;
gap:40px;
}
.p-contact .wp-block-column:last-child{
flex:1;
} .p-contact select{
appearance:none;
-webkit-appearance:none;
background:#fff;
} .p-contact ::placeholder{
color:#999;
} .p-contact input:focus,
.p-contact textarea:focus,
.p-contact select:focus{
outline:none;
border-color:#333;
} .form-label{
display:flex;
align-items:center;
gap:12px;
font-size:16px;
font-weight:700;
line-height:1.5;
}
.required{
width:48px;
height:24px;
display:inline-flex;
align-items:center;
justify-content:center;
background:#C00;
color:#fff;
font-size:12px;
font-weight:700;
letter-spacing:.05em;
}
.p-contact .wp-block-column:first-child{
width:220px;
flex:0 0 220px;
} .age-field{
display:inline-block;
position:relative;
}
.age-field input{
width:90px !important;
padding-right:30px;
}
.age-field::after{
content:"歳";
position:absolute;
left:100px;
top:50%;
transform:translateY(-50%);
} .smf-checkbox-control__control{
-webkit-appearance:none !important;
appearance:none !important;
width:20px !important;
height:20px !important;
border:1px solid #999 !important;
border-radius:0 !important;
background:#fff !important;
padding:0 !important;
margin:0 !important;
position:relative;
cursor:pointer;
accent-color:transparent !important;
display:flex;
align-items:center;
gap:8px;
}
.smf-checkbox-control__control:checked::after{
content:"";
position:absolute;
left:6px;
top:2px;
width:5px;
height:10px;
border-right:2px solid #333;
border-bottom:2px solid #333;
transform:rotate(45deg);
}
.privacy-check{
margin-top:40px;
text-align:center;
font-size: 15px;
} .smf-action{
margin-top:64px;
text-align:center;
}
.smf-button-control__control{
width:280px !important;
height:64px !important;
border:none !important;
border-radius: 9999px !important;
background:#333 !important;
color:#fff !important;
font-size:18px !important;
font-weight:700;
letter-spacing:.08em;
transition:.3s;
cursor:pointer;
}
.smf-button-control__control:hover{
opacity:.8;
} .p-contact select{
appearance:none;
-webkit-appearance:none;
background:#fff;
} .p-contact .wp-block-columns{
margin-bottom:20px;
align-items:flex-start;
gap:40px;
} .p-contact .wp-block-column:first-child{
width:220px;
flex:0 0 220px;
} .form-error{
margin-bottom:32px;
padding:16px 20px;
border:1px solid #D33;
background:#FFF4F4;
color:#D33;
font-size:14px;
line-height:1.8;
}
.form-error ul{
margin:0;
padding-left:1.5em;
}
.form-error li{
margin-bottom:4px;
}
.recaptcha-notice{
margin-top: 50px;
font-size: 12px;
line-height: 1.8;
color: #666;
text-align: center;
}
.recaptcha-notice a{
text-decoration: underline;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
.contact-fv {
height: 200px;
}
.contact-fv__title {
font-size: 30px;
}
.contact-section h2 {
font-size: 30px;
}
.contact-nav {
flex-direction: column;
align-items: stretch;
gap: 30px 100px;
justify-content: center;
}
}
@media screen and (max-width: 768px) {
.contact-fv {
height: 100px;
}
.contact-fv__title {
font-size: 20px;
}
.contact-form-section {
padding: 0px 5%;
}
.contact-form__inner {
padding: 30px 0 80px;
}
.contact-form__inner h2 {
font-size: 20px;
margin-bottom: 20px;
}
.contact-form__lead {
margin-top: 10px;
margin-bottom: 20px;
font-size: 11px;
line-height: 2;
}
.contact-form__caution{
font-size: 18px;
}
.contact-form__caution2{
font-size: 18px;
}
.p-contact {
margin-top: 30px;
}
.smf-progress-tracker{
font-size: 13px;
}
.p-contact input,
.p-contact textarea,
.p-contact select{
font-size:13px;
}
.p-contact input,
.p-contact select{
height:45px;
padding:0 10px;
}
.form-label{
gap:10px;
font-size:13px;
font-weight:700;
line-height:1.5;
}
.p-contact .wp-block-columns{
margin-bottom:20px;
align-items:flex-start;
gap:10px;
}
.privacy-check{
margin-top:30px;
font-size: 13px;
}
.smf-action{
margin-top:40px;
}
.smf-button-control__control{
width:150px !important;
height:50px !important;
border:none !important;
border-radius:10px;
background:#333 !important;
color:#fff !important;
font-size:13px !important;
letter-spacing:.08em;
}
.form-error{
margin-bottom:20px;
padding:13px 15px;
font-size:11px;
line-height:1.5;
}
} .faq {
position: relative;
z-index: 1;
}
.faq-fv {
height: 300px;
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/faq.webp) center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.faq-fv::after {
content: "";
position: absolute;
inset: 0;
background: rgba(0,0,0,.35);
}
.faq-fv__title {
position: relative;
z-index: 2;
color: #fff;
font-size: 40px;
font-weight: 700;
letter-spacing: .1em;
}
.faq-nav {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin: 50px 100px 80px;
}
.faq-nav a {
position: relative;
font-size: 22px;
font-weight: 700;
color: #333;
text-decoration: none;
padding-bottom: 12px;
padding-right: 40px;
border-bottom: 1px solid #ddd;
}
.faq-nav a::before {
content: "↓";
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 28px;
height: 28px;
border-radius: 50%;
background: #006FB9;
color: #fff;
font-size: 15px;
display: flex;
align-items: center;
justify-content: center;
}
.faq-section {
margin: 0 100px 120px;
}
.faq-section h2 {
font-size: 40px;
letter-spacing: 0.1em;
font-weight: bold;
margin-bottom: 50px;
padding-left: 15px;
border-left: 15px solid #006FB9;
}
.faq-list {
margin-top: 40px;
}
.faq-item {
border-bottom: 1px solid #ddd;
}
.faq-question {
width: 100%;
position: relative;
text-align: left;
padding: 28px 70px 28px 40px;
background: none;
border: none;
cursor: pointer;
font-size: 18px;
font-weight: 500;
}
.faq-question::before {
content: "+";
position: absolute;
left: 0;
top: 28px;
color: #006FB9;
font-size: 22px;
font-weight: bold;
}
.faq-answer {
display: none;
padding: 0 0 25px 40px;
}
.faq-answer p {
font-size: 16px;
line-height: 2;
color: #555;
}
.faq-item.active .faq-answer {
display: block;
}
.faq-item.active .faq-question::before {
content: "−";
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
.faq-fv {
height: 200px;
}
.faq-fv__title {
font-size: 30px;
}
.faq-section h2 {
font-size: 30px;
}
.faq-nav {
flex-direction: column;
grid-template-columns: repeat(1, 1fr); 
align-items: stretch;
gap: 30px 100px;
justify-content: center;
}
}
@media screen and (max-width: 768px) {
.faq-fv {
height: 100px;
}
.faq-fv__title {
font-size: 20px;
}
.faq-nav {
flex-direction: column;
grid-template-columns: repeat(1, 1fr); 
align-items: stretch;
gap: 8px;
margin: 0 5%;
}
.faq-nav a {
font-size: 14px;
padding-bottom: 8px;
}
.faq-nav a::before {
width: 20px;
height: 20px;
font-size: 15px;
}
.faq-section {
margin: 30px 5% 80px;
padding: 0;
}
.faq-section h2 {
font-size: 20px;
margin-bottom: 20px;
}
.faq-list {
margin-top: 0;
}
.faq-question {
font-size: 13px;
padding: 20px 18px 20px 26px;
}
.faq-question::before {
content: "+";
position: absolute;
left: 0;
top: 20px;
font-size: 20px;
}
.faq-answer {
padding-left: 28px;
}
.faq-answer p {
font-size: 13px;
}
} .property-p{
position: relative;
overflow: hidden;
z-index: 1;
}
.property-p::after {
content: "";
position: absolute;
inset: 0;
width: 1200px;
height: 1200px;
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/drawing.webp) no-repeat;
background-size: contain;
opacity: 0.1;
z-index: -1;
transform: rotate(45deg);
overflow: hidden;
}
.property-fv{
height: 300px;
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/property.webp) center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.property-fv::after {
content: "";
position: absolute;
inset: 0;
background: rgba(0,0,0,.35);
}
.property-fv__title {
position: relative;
z-index: 2;
color: #fff;
font-size: 40px;
font-weight: 700;
letter-spacing: 0.1em;
}
.property-section{
margin: 100px 100px 200px;
padding: 0 20px;
}
.property-section h2{
font-size: 40px;
letter-spacing: 0.1em;
font-weight: bold;
margin-bottom: 50px;
padding-left: 15px;
border-left: 15px solid #006FB9;
}
.property-section__inner{
position: relative;
}
.property-section__content{
width: 42%;
}
.property-section__text{
font-size: 18px;
letter-spacing: 0.05em;
line-height: 3;
color: #444;
}
.property-section__image{
position: absolute;
top: 20px;
right: 0;
width: 500px;
height: 300px;
overflow: hidden;
}
.property-section__image img{
width: 100%;
height: 100%;
object-fit: cover;
}
.property-section__button{
margin-top: 200px;
text-align: center;
}
.property-section__btn{
position: relative;
display: inline-block;
background: #006FB9;
color: #fff;
padding: 30px 100px;
border-radius: 999px;
font-size: 30px;
font-weight: bold;
text-decoration: none;
overflow: hidden;
z-index: 1;
transition: color 0.3s;
}
.property-section__btn::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 0%;
height: 100%;
background: #155a96;
z-index: -1;
transition: width 0.4s ease;
}
.property-section__btn:hover::before {
width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
.property-fv {
height: 200px;
}
.property-fv__title {
font-size: 30px;
}
.property-section h2 {
font-size: 30px;
}
}
@media screen and (max-width: 767px) {
.property-p::after{
top: 100px;
width: 180vw;
height: 180vw;
}
.property-fv{
height: 100px;
}
.property-fv__title{
font-size: 20px;
}
.property-section{
margin: 30px 5% 80px;
padding: 0;
}
.property-section h2{
font-size: 20px;
margin-bottom: 20px;
}
.property-section__content{
width: 100%;
}
.property-section__title span{
width: 8px;
height: 40px;
}
.property-section__text{
font-size: 13px;
line-height: 2;
}
.property-section__image{
position: relative;
top: auto;
right: auto;
width: 100%;
height: 220px;
margin-top: 40px;
}
.property-section__button{
margin-top: 50px;
}
.property-section__btn{
width:100%;
height: 50px;
font-size: 20px;
padding: 10px 0;
}
} .error404-fv {
height: 300px;
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/404.webp) center center / cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.error404-fv::after {
content: "";
position: absolute;
inset: 0;
background: rgba(0,0,0,0.35);
z-index: 1;
}
.error404-fv__title {
position: relative;
z-index: 2;
color: #fff;
font-size: 40px;
font-weight: 700;
letter-spacing: 0.08em;
}
.error404-content {
padding: 100px 20px 140px;
}
.error404-content__inner {
max-width: 920px;
margin: 0 auto;
text-align: center;
}
.error404-content__title {
font-size: 36px;
font-weight: 700;
line-height: 1.6;
margin-bottom: 48px;
}
.error404-content p {
font-size: 16px;
line-height: 2.2;
color: #333;
margin-bottom: 8px;
}
.error404-content a {
color: #0078d7;
font-weight: 700;
text-decoration: none;
}
.error404-content a:hover {
text-decoration: underline;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
.error404-fv {
height: 200px;
}
.error404-fv__title {
font-size: 30px;
}
.company-section h2 {
font-size: 30px;
}
}
@media screen and (max-width: 768px) {
.error404-fv {
height: 100px;
}
.error404-fv__title {
font-size: 20px;
}
.error404-content {
padding: 30px 5% 80px;
}
.error404-content__title {
font-size: 18px;
margin-bottom: 28px;
}
.error404-content p {
font-size: 12px;
line-height: 2;
text-shadow: none;
}
} .blog-page {
position: relative;
z-index: 1;
}
.blog-fv {
height: 300px;
background: url(//fudosanlab.com/newsite/wp-content/themes/fudosanlab/assets/img/blog.webp) center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.blog-fv::after {
content: "";
position: absolute;
inset: 0;
background: rgba(0,0,0,0.35);
z-index: 1;
}
.blog-fv__title {
position: relative;
z-index: 2;
color: #fff;
font-size: 40px;
font-weight: 700;
letter-spacing: 0.08em;
} .blog-sidebar {
width: 320px;
}
.blog-widget {
background: #fff;
border: 1px solid #e7e7e7;
border-radius: 14px;
padding: 24px;
margin-bottom: 24px;
}
.blog-widget__title {
font-size: 18px;
font-weight: 700;
margin: 0 0 18px;
}
.recent-posts,
.archive-list {
list-style: none;
margin: 0;
padding: 0;
}
.recent-post {
margin-bottom: 16px;
}
.recent-post:last-child {
margin-bottom: 0;
}
.recent-post a {
display: flex;
gap: 12px;
align-items: flex-start;
}
.recent-post__thumb {
width: 88px;
min-width: 88px;
height: 64px;
overflow: hidden;
border-radius: 6px;
background: #f5f5f5;
}
.recent-post__thumb img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
}
.recent-post__img--logo {
width: calc(100% - 16px);
height: calc(100% - 16px);
margin: 8px;
object-fit: contain;
}
.recent-post__date {
margin: 0 0 4px;
font-size: 12px;
color: #888;
}
.recent-post__title {
display: block;
font-size: 14px;
line-height: 1.6;
color: #3f3f3f;
}
.blog-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.blog-tags a {
display: inline-block;
padding: 6px 12px;
border-radius: 999px;
background: #f5f7fa;
text-decoration: none;
color: #333;
font-size: 13px;
}
.archive-list li {
margin-bottom: 8px;
font-size: 18px;
}
.archive-list li:last-child {
margin-bottom: 0;
}
.archive-list a {
text-decoration: none;
color: #333;
}
.blog-widget .search-form {
display: flex;
gap: 8px;
}
.blog-widget .search-field {
width: 100%;
height: 42px;
padding: 0 12px;
border: 1px solid #ddd;
border-radius: 999px;
}
.blog-widget .search-submit {
padding: 0 16px;
border: none;
border-radius: 999px;
cursor: pointer;
}
.blog-layout {
max-width: 1180px;
margin: 0 auto;
padding: 60px 20px 0;
display: flex;
gap: 60px;
align-items: flex-start;
}
.content-area {
flex: 1;
min-width: 0;
}
.blog-list {
display: block;
flex-direction: column;
gap: 36px;
}
.blog-card {
display: block;
clear: both;
padding: 36px 0;
border-bottom: 1px solid #e5e5e5;
}
.blog-card::after {
content: "";
display: block;
clear: both;
}
.blog-card__link {
display: flex;
align-items: flex-start;
gap: 28px;
text-decoration: none;
color: inherit;
}
.blog-card__thumb {
width: 240px;
min-width: 240px;
height: 160px;
overflow: hidden;
border-radius: 8px;
background: #f5f5f5;
}
.blog-card__thumb img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
}
.blog-card__img--logo {
width: calc(100% - 24px);
height: calc(100% - 24px);
margin: 12px;
object-fit: contain;
}
.blog-card__content {
flex: 1;
min-width: 0;
}
.blog-card__date {
margin: 0 0 10px;
font-size: 14px;
color: #777;
}
.blog-card__title {
margin: 0 0 16px;
line-height: 1.5;
font-size: 24px;
}
.blog-card__excerpt {
font-size: 15px;
line-height: 1.9;
color: #555;
}
.blog-card__excerpt p {
margin: 0;
}
.blog-card__more {
display: inline-block;
margin-top: 14px;
font-size: 16px;
font-weight: 700;
color: #0077c8;
}
.blog-card figure,
.blog-card img {
float: none;
margin: 0;
}
.blog-card * {
box-sizing: border-box;
}
.blog-pagination {
margin-top: 60px;
}
.blog-pagination .nav-links {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.blog-pagination a,
.blog-pagination span {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 42px;
height: 42px;
padding: 0 14px;
border-radius: 999px;
text-decoration: none;
border: 1px solid #ddd;
}
.page-numbers{
font-size: 16px;
}
.blog-pagination .current {
font-weight: 700;
}
.no-posts {
padding: 40px 0;
}
.archive-header {
margin-bottom: 36px;
}
.archive-title {
font-size: 30px;
font-weight: 700;
line-height: 1.4;
margin: 0 0 10px;
}
.archive-description {
font-size: 14px;
line-height: 1.8;
color: #666;
}
.single-page .content-area {
flex: 1;
min-width: 0;
}
.single-article {
padding-bottom: 48px;
border-bottom: 1px solid #e8e8e8;
}
.single-header {
margin-bottom: 28px;
}
.single-meta {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 14px;
font-size: 13px;
color: #777;
}
.single-category {
display: inline-block;
padding: 4px 10px;
border-radius: 999px;
background: #f5f7fa;
font-size: 12px;
}
.single-title {
margin-top: 16px;
font-size: 34px;
font-weight: 700;
line-height: 1.5;
letter-spacing: 0.03em;
padding-left: 15px;
border-left: 15px solid #006FB9;
}
.single-thumb {
margin-bottom: 36px;
border-radius: 10px;
overflow: hidden;
}
.single-thumb img {
width: 100%;
height: auto;
display: block;
}
.single-content {
font-size: 16px;
line-height: 2;
color: #333;
}
.single-content h2 {
margin-top: 72px;
margin-bottom: 28px;
padding: 3px 0;
border-bottom: 3px solid #1d88cf;
font-size: 30px;
font-weight: 700;
line-height: 1.5;
}
.single-content h3 {
margin-top: 56px;
margin-bottom: 20px;
padding-bottom: 3px;
border-bottom: 3px solid #cce4ff;
position: relative;
font-size: 24px;
font-weight: 700;
line-height: 1.6;
}
.single-content h3:after {
position: absolute;
content: " ";
display: block;
border-bottom: 3px solid #1d88cf;
bottom: -3px;
width: 20%;
}
.single-content h4 {
margin-top: 40px;
margin-bottom: 16px;
padding-bottom: 3px;
border-bottom: 1px solid #dcdcdc;
font-size: 20px;
font-weight: 700;
line-height: 1.7;
}
.single-content p {
margin: 0 0 1.8em;
line-height: 2;
font-size: 16px;
color: #333;
}
.single-content img {
max-width: 100%;
height: auto;
}
.single-content ul,
.single-content ol {
margin: 24px 0;
padding-left: 1.5em;
}
.single-content li {
margin-bottom: 7px;
font-size: 16px;
line-height: 1.9;
}
.post-navigation {
margin-top: 48px;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 15px;
gap: 16px;
flex-wrap: wrap;
}
.post-navigation a {
text-decoration: none;
color: #333;
}
.post-navigation__back a {
display: inline-block;
padding: 10px 18px;
border: 1px solid #ddd;
border-radius: 999px;
background: #d3d3d3;
}
.post-navigation__back a:hover {
opacity: 0.8;
}
.search-empty {
padding: 40px 0;
}
.search-empty p {
margin-bottom: 8px;
line-height: 1.9;
}
.search-empty__form {
margin-top: 24px;
max-width: 420px;
} .author-box {
margin-top: 72px;
}
.author-box__inner {
display: flex;
gap: 32px;
padding: 36px;
border-radius: 20px;
background: #f7f7f7;
}
.author-box__image {
flex-shrink: 0;
}
.author-box__image img {
display: block;
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: contain;
object-position: center 20%;
border: 4px solid #fff;
box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.author-box__content {
flex: 1;
}
.author-box__label {
margin-bottom: 10px;
font-size: 13px;
font-weight: 700;
letter-spacing: 0.08em;
color: #888;
}
.author-box__name {
margin-bottom: 16px;
font-size: 20px;
font-weight: 700;
line-height: 1.5;
}
.author-box__description {
line-height: 2;
font-size: 16px;
color: #333;
}
.author-box__description p:last-child {
margin-bottom: 0;
} .comments-area {
margin-top: 72px;
padding-top: 56px;
border-top: 1px solid #e7e7e7;
}
.comments-title {
margin: 0 0 28px;
font-size: 16px;
font-weight: 700;
line-height: 1.5;
letter-spacing: 0.02em;
}
.comment-list {
margin: 0 0 48px;
padding: 0;
list-style: none;
}
.comment-list > li {
margin: 0;
padding: 24px 0;
border-bottom: 1px solid #efefef;
}
.comment-body {
line-height: 1.9;
}
.comment-meta {
margin-bottom: 10px;
font-size: 13px;
color: #888;
}
.comment-author {
font-weight: 700;
}
.comment-content p {
margin: 0;
font-size: 13px;
line-height: 1.9;
}
.comment-respond {
margin-top: 8px;
}
.comment-reply-title {
margin: 0 0 24px;
font-size: 13px;
font-weight: 700;
line-height: 1.5;
}
.comment-form {
width: 100%;
}
.comment-form p {
margin: 0 0 20px;
}
.comment-form label {
display: block;
margin-bottom: 8px;
font-size: 13px;
font-weight: 700;
line-height: 1.6;
color: #333;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
width: 100%;
padding: 14px 18px;
border: 1px solid #d8d8d8;
background: #fff;
font-size: 13px;
line-height: 1.7;
box-sizing: border-box;
transition: border-color 0.2s ease;
}
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
outline: none;
border-color: #999;
}
.comment-form textarea {
height: 100px;
resize: vertical;
}
.comment-form-cookies-consent {
display: flex;
align-items: flex-start;
gap: 8px;
margin-top: -4px;
}
.comment-form-cookies-consent input {
margin-top: 4px;
}
.comment-form-cookies-consent label {
margin: 0;
font-size: 13px;
font-weight: 400;
line-height: 1.7;
}
.form-field .required {
display: inline;
margin-left: 4px;
background: transparent;
color: #d00;
font-size: 12px;
font-weight: 700;
}
.comment-note {
display: block;
margin-top: 8px;
font-size: 13px;
line-height: 1.7;
color: #888;
}
.form-submit {
margin-top: 28px;
}
.comment-form .submit {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 100px;
padding: 14px 32px;
border: none;
border-radius: 9999px;
background: #7e7e7e;
color: #fff;
font-size: 15px;
font-weight: 700;
line-height: 1;
cursor: pointer;
transition: opacity 0.2s ease;
}
.comment-form .submit:hover {
opacity: 0.8;
}
.related-posts {
padding-top: 30px;
}
.related-posts__title {
margin: 0 0 28px;
font-size: 20px;
font-weight: 700;
line-height: 1.5;
}
.related-posts__list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.related-post__link {
display: block;
color: inherit;
text-decoration: none;
}
.related-post__thumb {
overflow: hidden;
border-radius: 12px;
aspect-ratio: 16 / 10;
}
.related-post__thumb img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.related-post__content {
margin-top: 12px;
}
.related-post__date {
margin: 0 0 6px;
font-size: 13px;
color: #888;
}
.related-post__name {
margin: 0;
font-size: 15px;
font-weight: 700;
line-height: 1.7;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
.blog-fv {
height: 200px;
}
.blog-fv__title {
font-size: 30px;
}
.blog-section h2 {
font-size: 30px;
}
}
@media screen and (max-width: 768px) {
.blog-fv {
height: 100px;
}
.blog-fv__title {
font-size: 20px;
}
.blog-layout {
display: block;
width: 100%;
padding: 0 5% 30px;
gap: 60px;
}
.blog-pagination {
margin-top: 30px;
}
.blog-card__date {
margin: 0 0 8px;
font-size: 12px;
}
.blog-card__title {
margin: 0 0 10px;
font-size: 18px;
}
.blog-card__excerpt {
font-size: 13px;
line-height: 1.5;
}
.blog-card__more {
margin-top: 10px;
font-size: 14px;
}
.blog-card__link {
display: block;
}
.blog-card__thumb {
width: 100%;
height: 220px;
margin-bottom: 16px;
}
.page-numbers{
font-size: 14px;
}
.blog-sidebar {
width: 100%;
margin-top: 30px;
}
.blog-widget {
padding: 15px;
}
.blog-widget__title {
font-size: 16px;
margin: 0 0 10px;
}
.recent-post__date {
margin: 0 0 3px;
font-size: 11px;
}
.recent-post__title {
font-size: 13px;
line-height: 1.5;
}
.archive-list li {
font-size: 16px;
}
.single-title {
font-size: 20px;
}
.single-content {
font-size: 16px;
line-height: 2;
}
.single-content h2 {
margin-top: 45px;
margin-bottom: 20px;
font-size: 18px;
line-height: 1.5;
}
.single-content h3 {
margin-top: 30px;
margin-bottom: 10px;
font-size: 16px;
line-height: 1.6;
}
.single-content h4 {
margin-top: 25px;
margin-bottom: 10px;
font-size: 20px;
line-height: 1.7;
}
.single-content p {
margin: 0 0 1.8em;
line-height: 2;
font-size: 13px;
}
.single-content ul,
.single-content ol {
margin: 10px 0;
padding-left: 1.5em;
}
.single-content li {
margin-bottom: 5px;
font-size: 13px;
line-height: 1.5;
}
.single-article {
padding-bottom: 30px;
}
.author-box {
margin-top: 30px;
}
.author-box__inner {
flex-direction: column;
gap: 10px;
padding: 15px;
}
.author-box__image img {
width: 88px;
height: 88px;
}
.author-box__label {
margin-bottom: 8px;
font-size: 11px;
}
.author-box__name {
margin-bottom: 10px;
font-size: 15px;
}
.author-box__description {
font-size: 13px;
line-height: 1.5;
}
.comments-area {
margin-top: 30px;
padding-top: 10px;
}
.comments-title {
margin: 0;
font-size: 14px;
}
.comment-reply-title {
font-size: 12px;
}
.comment-form textarea {
height: 90px;
}
.comment-form p {
margin: 0 0 10px;
}
.comment-form label {
margin-bottom: 5px;
font-size: 11px;
line-height: 1.5;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
padding: 10px;
font-size: 11px;
line-height: 1.5;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
padding: 10px;
font-size: 13px;
}
.comment-meta {
font-size: 11px;
}
.comment-content p {
font-size: 11px;
line-height: 1.5;
}
.comment-form-cookies-consent label {
font-size: 11px;
line-height: 1.5;
}
.form-field .required {
font-size: 11px;
}
.comment-note {
margin-top: 5px;
font-size: 11px;
line-height: 1.5;
}
.comment-form .submit {
width: 100%;
min-width: auto;
font-size: 13px;
}
.post-navigation {
font-size: 13px;
}
.post-navigation > div {
margin-bottom: 14px;
}
.post-navigation__back a {
padding: 8px 10px;
}
.related-posts__title {
font-size: 15px;
margin-bottom: 10px;
}
.related-posts__list {
grid-template-columns: 1fr;
gap: 20px;
}
.related-post__date {
margin: 0 0 5px;
font-size: 11px;
}
.related-post__name {
font-size: 13px;
line-height: 1.5;
}
}