/*ここからサイトのcss*/
/* 全体のリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Arial', sans-serif; */
}


html{
  font-family: "Figtree", sans-serif;
  font-size: 16px;
}

html p{
  font-size: 16px;
  font-weight: normal;
}

@media (max-width: 450px) {
/* ヘッダー */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4% 2%;
  background-color: #01AEFF;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header a img {
  width: 20%;
  height: auto;
}
.footer-logo a img{
  height: auto;
  width: 50%;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  z-index: 101;
  align-items: end;
}

.bar {
  width: 55px;
  height: 2px;
  background-color: white;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 5px;
}

.menu-toggle .bar:nth-child(2) {
  width: 45px;
}

.menu-toggle .bar:nth-child(3) {
  width: 35px;
}

/* ナビゲーションメニュー */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

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

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 2rem;
  margin: 25px 0;
}

/* ハンバーガーメニューのアニメーション */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-18px) rotate(-45deg);
  width: 55px;
}


/* ヒーローセクション */
.hero {
  background: url('../images/home/home_top.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: end;
  text-align: center;
  color: white;
  position: relative;
  padding: 10% 2%;
  flex-direction: column;
}

.hero-img{
  display: none;
}

.hero-content {
  border-radius: 10px;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: right;
}

.hero p {
  font-size: 1.05rem;
  margin-top: 10px;
  color: white;
}

.badge {
    background: url('../images/home/badge.jpg') no-repeat center center/cover;
    height: auto;
    width: 90%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    margin: 20px 0 0 20px;
}

.badge img {
  height: 50px;
  display: block;
  margin: 0 auto 5px;
}

.news {
  padding: 45px 20px;
  margin: 0px auto;
  text-align: left;
}

.titlebox{
  width: 40%;
}

.title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #01AEFF;
  text-decoration-color: #565656;
  text-decoration-thickness: 3.5px;
  text-underline-offset: 10px;
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.title::after {
  content: "";
  display: block;
  width: 120%;
  height: 1.5px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  right: 0px;
}

.h2subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
  text-align: end;
  font-weight: bold;
}

.news_unknown {
  text-align: center;
  margin: 80px 25px;
  font-size: 1rem;
}

.news-content{
  padding-bottom: 20px;
}

.news-item {
  display: flex;
  margin-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.blog-items {
  width: 100%;
}

.blog-tit {
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: 25px;
  left: 0;
  margin-top: 10px;
  color: #fff;
  background-color: rgba(90, 90, 90, .5);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-left: 8px;
  padding-bottom: 8px;
}

.blog-tit-front {
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: 25px;
  left: 0;
  margin-top: 10px;
  color: #fff;
  background-color: rgba(90, 90, 90, .5);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-left: 8px;
  padding-bottom: 8px;
}

/* シングルページ */
.entry-header{
  margin-top: 100px;
  width: 90%;
}

.entry-title{
  padding-left: 20px;
}

.entry-meta{
  padding-left: 20px;
}

.entry-content{
  margin-bottom: 30px;
}

.entry-content p {
  width: 90%;
  margin: 0 auto;
  padding: 0 1%;
  line-height: 30px;
}

.rank-badge {
  position: absolute;
  z-index: 1;
  background-color: #F4A261;
  font-size: 0.9rem;
  color: #fff;
  padding: 3px 5px;
  font-weight: bold;
}

.news-thumbnail {
  width: 100%;
}

.news-thumbnail img {
  width: 100%;
  height: 200px;
  /* 高さを固定 */
  object-fit: cover;
  background-position: center;
}

.news-thumbnail-home {
  width: 100%;
}

.news-thumbnail-home img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background-position: center;
}

.news-title-home {
  width: 100%;
  font-size: 1rem;
}

.news-badge-home {
  position: absolute;
  top: 8px;
  left: 0;
  background: #01AEFF;
  color: white;
  padding: 5px 10px;
  border-radius: 25px;
  font-size: 0.8rem;
  display: inline-block;
  margin-left: 2%;
}

.section-title{
  background: #a4dcff;
  border-radius: 0px 50px 50px 0px;
  padding: 10px 15px;
  margin-bottom: 30px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  text-align: left;
  width: 50%;
  color: #fff;
  font-size: 1.2rem;
}

.news-date {
  color: #fff;
  font-size: 0.9rem;
}

.news-badge {

  background: #01AEFF;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  display: inline-block;
  margin-left: 10px;
  margin-top: 10px;
  position: absolute;
}

.news-title {
  font-size: 1rem;
  margin-top: 10px;
  line-height: 1.5;
  color: #fff;
}


.news-excerpt{
  color: #565656;
}

.blog-button {
  align-items: center;
  justify-content: center;
  background: #F4A261;
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  padding: 10px 18px;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
  margin: 0px 0px 0px auto;
  display: block;
  width: 56%;
  margin-left: auto;
  box-shadow: 0px 3px 2px rgba(0.0.0.7);
}

.blog-button:hover {
  background: #003399;
}

.back-button{
  align-items: center;
  justify-content: center;
  background: #F4A261;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
  margin: 0px 0px 0px auto;
  display: block;
  width: 30%;
  margin-left: auto;
  box-shadow: 0px 3px 2px rgba(0.0.0.7);
  margin-bottom: 20px;
}

.back-button-business {
  align-items: center;
  justify-content: center;
  background: #F4A261;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
  margin: 0px 20px 0px auto;
  display: block;
  width: 30%;
  margin-left: auto;
  box-shadow: 0px 3px 2px rgba(0.0.0.7);
  margin-bottom: 20px;
}

.back-button-review {
  align-items: center;
  justify-content: center;
  background: #F4A261;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
  margin: 0px 20px 0px auto;
  display: block;
  width: 30%;
  margin-left: auto;
  box-shadow: 0px 3px 2px rgba(0.0.0.7);
  margin-bottom: 20px;
}
/* 不動産売却セクション */
.real-estate-sale {
  background-color: #01AEFF;
  color: white;
text-align: right;
  position: relative;
  padding: 40px 20px;
  overflow: hidden;
}

.slide-wrapper {
  width: 20%;
  transform: rotate(-10deg);
  /* 斜めに見せる */
  position: absolute;
  left: 6%;
  bottom: -10%;
}

.slide-wrapper-pc {
display: none;
}

.slick-slide {
  text-align: center;
  font-size: 20px;
  padding: 30px;
  background: #208fda;
  color: white;
  border-radius: 10px;
  margin: 20px 0;
  width: 150px;
  height: 140px !important;
}

.slide-img1{
  background: url('../images/home/3.png') no-repeat center center/cover;
}

.slide-img2 {
  background: url('../images/home/4.png') no-repeat center center/cover;
}

.slide-img3 {
  background: url('../images/home/5.png') no-repeat center center/cover;
}

.slide-img4 {
  background: url('../images/home/6.png') no-repeat center center/cover;
}

.slide-img5 {
  background: url('../images/home/7.png') no-repeat center center/cover;
}

.text-content {
  width: 55%;
}

.real-estate-sale h2 {
  font-size: 1.8rem;
  font-weight: bold;
}

.real-estate-sale p {
  font-size: 1rem;
  line-height: 1.8;
}

.real-estate-p{
  margin-top: 40px;
}

.real-estate-button {
  align-items: center;
  justify-content: center;
  background: #F4A261;
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  padding: 10px 18px;
  border-radius: 5px;
  text-align: center;
  margin: 40px 0px 0px auto;
  display: block;
  width: 69%;
  margin-left: auto;
  box-shadow: 0px 3px 2px rgba(0.0.0.7);
}

.moving-rectangle {
  width: 100px;
  /* 画像のサイズ */
  height: auto;
  animation: moveLeftUp 5s linear infinite;
}

@keyframes moveLeftUp {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-20px, -20px);
  }
}

.exclusive-service {
  margin: 40px auto;
  background-color: rgba(255, 255, 255, 0.561);
}

.title-service{
  font-size: 2rem;
    font-weight: bold;
    color: #01AEFF;
    text-decoration-color: #565656;
    text-decoration-thickness: 3.5px;
    text-underline-offset: 10px;
    position: relative;
    width: 100%;
    display: inline;
    padding: 0 20px;
}

.service-item {
  background: white;
  margin-bottom: 20px;
  padding: 20px 0px;
}

.background{
  background: url('../images/home/背景画像.png') no-repeat center center/cover;
}

.h3subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
  text-align: start;
  font-weight: bold;
  padding: 0 20px;
}

.description {
  font-size: 1rem;
  line-height: 1.8;
  margin: 30px 0px 30px 0px;
  padding: 0 20px;
}

.title-service-2 {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-decoration-color: #565656;
  text-decoration-thickness: 3.5px;
  text-underline-offset: 10px;
  position: relative;
  width: 100%;
  display: inline;
}

.h3subtitle-service {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
  text-align: start;
  font-weight: bold;
}

.span-color {
  color: #01AEFF;
}

.service-button {
  align-items: center;
    justify-content: center;
    background: #F4A261;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 5px;
    text-align: center;
    display: block;
    width: 45%;
    margin-left: auto;
    margin-right: 20px;
    box-shadow: 0px 3px 2px rgba(0.0.0.7);
}

.service-button:hover {
  background: #003399;
}

.contact {
  padding: 40px 20px;
  margin: 0 auto;
}

.contact .subtitle {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 10px;
}

.titlebox-contact {
  width: 60%;
}

.titlecontact {
  font-size: 2.6rem;
  font-weight: bold;
  color: #01AEFF;
  text-decoration-color: #565656;
  text-decoration-thickness: 3.5px;
  text-underline-offset: 10px;
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.titlecontact::after {
  content: "";
  display: block;
  width: 110%;
  height: 1.5px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  right: 0px;
}

.contact-text {
  font-size: 0.7rem;
  margin: 20px 0px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  text-align: left;
  max-width: 600px;
  display: flex;
  justify-content: center;
}

.contact-form label {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form textarea {
  resize: none;
}

.privacy-text {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 15px;
}

.contact-button {
  background: #01AEFF;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0px 3px 2px rgba(0.0.0.7);
}

.contact-button:hover {
  background: #003399;
}

/* フッター全体 */
.footer {
  background-color: #01AEFF;
  /* 背景色 */
  padding: 20px 10px;
  color: white;
  text-align: left;
}

.footer-info-pc{
  display: none;
}

.footer-section{
  width:50%;
}
.company-name{
  font-size: 0.6rem;
}

.footer-text{
  font-size:0.5rem;
}

/* フッターのレイアウト */
.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

iframe{
  width: 90%;
  padding: 10px 0px;
  height: 200px;
  float: right;
}

/* 会社情報 */
.footer-info {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 30px;
}

/*js*/
.fade-1{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-2 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-3 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-4 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fadein{
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
    transform: translateY(150px);
}

.is-active {
  /*要素を表示させる*/
  opacity: 1;
  visibility: visible;
  /*元の位置に戻す*/
  transform: translateY(0);
}

.contact {
  margin: 0 auto;
  text-align: center;
}


.contact p {
  margin-bottom: 16px;
}

.contact .contact-text {
  font-size: 1rem;
}

.contact label {
  width: 100%;
  font-size: 16px;
  font-weight: bold;
}

.contact .wpcf7-form-control-wrap input {
  height: 56px;
  background-color: #D9D9D9;
  border-radius: 4px;
  border: none;
  width: 100%;
}

.contact .wpcf7-form-control-wrap input[name="your-accept"] {
  height: 14%;
  background-color: #D9D9D9;
  border-radius: 4px;
  border: none;
  width: 6%;
}

.contact .txt_attention {
  width: 60vw;
  display: block;
}

.contact textarea {
  background-color: #D9D9D9;
  border-radius: 4px;
  border: none;
  width: 100%;
}

.contact .btn {
  width: 60vw;
}

.contact .wpcf7-submit {
  width: 100%;
  height: 45px;
  margin: 0 auto;
  background-color: #F4A261;
  font-size: 1rem;
  border-radius: 48px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.contact .wpcf7-spinner {
  display: none;
}

/*不動産売却ページ*/
.section-sell {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 0px 30px 0px;
  font-family: 'sans-serif';
}

.image-box {
  position: relative;
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-start;
}

.image-box img {
  width: 80%;
  height: auto;
  display: block;
}

.image-text {
  position: absolute;
  bottom: 50px;
  left: 50px;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-decoration: underline;
  padding: 10px 20px;
  text-underline-offset: 10px;
  text-shadow: 1px 1px 2px #333;
}

.background-box{
  width: 90%;
  height: 120px;
  background-color: #01AEFF;
  margin-top: -120px;
  margin-left: auto;
}

.text-box h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
  margin-top: 55px;
  padding-left: 30px;
}

.text-box p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.8;
  border-bottom: 1px solid #aaa;
  padding: 20px 20px 50px 20px;
}

.text-box-business p{
  font-size: 0.9rem;
  color: #333;
  padding:0px 20px 20px 20px;
  line-height: 2;
}

.steps-section {
  position: relative;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.step {
  position: relative;
  background-color: #01AEFF;
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.step-flex{
  display: flex;
  justify-content: space-between;
}
.step-number {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-decoration: underline;
  text-underline-offset: 10px;
}

.step-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.step-icon img {
  width: 130%;
  height: auto;
  margin-top: 15px;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.step-content p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* 縦線の演出 */
.steps-section::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 50%;
  width: 2px;
  height: 1800px;
  background-color: #565656;
  z-index: -1;
}

/*ビジネスページ*/
.btn {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: var(--gap);
  padding: 0.6rem;
  cursor: pointer;
  border-radius: var(--radius);
  border: none;
  box-shadow: var(--shadow);
  position: relative;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  text-decoration: underline;
}

.bx {
  font-size: 1.1rem;
}
.bx-close{
  font-size: 0.9rem;
  color: #003399;
  text-align: center;
}

/* .dropdown {
  position: absolute;
  width: 100%;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  margin-top: 0.3rem;
  background: white;
  visibility: hidden;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: all 0.1s cubic-bezier(0.16, 1, 0.5, 1);
}

.dropdown a {
  display: flex;
  align-items: center;
  column-gap: var(--gap);
  padding: 0.8rem 1rem;
  text-decoration: none;
  color: black;
}

.dropdown a:hover {
  background-color: var(--color);
  color: white;
} */

.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0rem);
}

.arrow {
  transform: rotate(180deg);
  transition: 0.2s ease;
}

.strength-section {
  padding: 40px 0px;
  max-width: 500px;
  margin: 0 auto;
  font-family: 'sans-serif';
  color: #333;
  text-align: center;
}

.strength-section .title-strong {
  font-size: 1.3rem;
  font-weight: bold;
  color: #01AEFF;
  text-decoration-color: #565656;
  text-decoration-thickness: 3.5px;
  text-underline-offset: 10px;
  position: relative;
  width: 100%;
  display: inline;
  padding-left: 20px;
}

.strength-section .title-strong::after {
  content: "";
  display: block;
  width: 120%;
  height: 1.5px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  right: 0px;
}

.strength-section .strong-item {
  background: white;
  margin-bottom: 20px;
  text-align: start;
}

.strength-section .strong-exclusive {
  padding: 40px 0px;
  margin: 0 auto;
}

.strength-section .title-box {
  background: #a4dcff;
  border-radius: 0px 50px 50px 0px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  text-align: left;
  width: 60%;
}

.strength-section .title-box h2 {
  color: white;
  font-size: 1.2rem;
}

.strength-section .title-box p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.strength-section .strength-block {
  margin-bottom: 30px;
}

.strength-section .strength-p p{
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 auto;
  padding: 0 10px 30px 10px;
}

.strength-section .strength-image {
  margin: 0 auto 10px;
}

.strength-section .strength-image-2 img{
  margin: 0 auto 10px;
  width: 100%;
  height: auto;
}

.strength-image{
  width: 80%;
}

.strength-section .strength-block p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 auto;
  padding: 0 10px;
  text-align: center;
}

.strength-section .strength-block p.highlight {
  color: #01AEFF;
  font-weight: bold;
}

.strength-section .arrow-down {
  font-size: 1.5rem;
  color: #ccc;
  margin-bottom: 30px;
}

.strength-text{
  font-size: 1.1rem !important;
  font-weight: bold;
  margin: 5% 10% !important;
}

/*お客様ページ*/
.voice-wrapper {
  background: #9bd9ff;
  border-radius: 12px;
  padding: 30px 20px;
  width: 90%;
  max-width: 500px;
  margin: 40px auto;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.voice-icon{
  width: 70px;
  height: 70px;
  border-radius: 12px;
}

.voice-icon img{
  width: 100%;
  height: 100%;
}

.voice-header {
  position: absolute;
  top: -25px;
  left: 20px;
}

.voice-box {
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  margin-top: 20px;
  position: relative;
}

.voice-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.voice-meta {
  text-align: right;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
}

/* 会社概要 */
.company-wrapper {
  padding: 30px 0px;
  width: 90%;
  margin: 40px auto;
  position: relative;
}

.company-title {
  text-align: center;
  color: #003399;
  font-size: 1.5rem;
}

.company-box {
  margin-top: 20px;
  text-align: center;
}

.company-box img {
  width: 50%;
  height: auto;
}

.kaisha {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0px;
}

.kaisha th,
.kaisha td {
  border: 1px solid #ccc;
  padding: 20px;
}

.kaisha th {
  font-weight: bold;
  background-color: #01AEFF;
  color: #fff;
}

@media screen and (max-width: 767px) {

  .kaisha,
  .kaisha tr,
  .kaisha td,
  .kaisha th {
    display: block;
  }

  .kaisha th {
    width: auto;
  }
}

/* ブログページ */
.section {
  position: relative;
  overflow: hidden;
  width: 45%;
}

.image {
  position: relative;
  width: 100%;
  padding-top: 20px;
  /* 16:9比率をキープ */
  background-size: cover;
  background-position: center;
}

.image a {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

/* descは画像の上に乗せる */
.desc {
  position: absolute;
  bottom: 5px;
  left: 0;
  padding: 10px;
  width: 100%;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  /* 黒半透明背景 */
  z-index: 2;
  box-sizing: border-box;
}

.desc h3 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: bold;
}

.desc h3 a{
  color: #fff;
  text-decoration: none;
}

.desc time {
  display: block;
  font-size: 14px;
}

.desc p {
  display: none;
}

.allpost-title .title-box{
  background: #a4dcff;
  border-radius: 0px 50px 50px 0px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  text-align: left;
  width: 60%;
}

.allpost-title .title-box h2{
  color: #fff;
}

.allpost-new{
  display: flex;
  gap: 5px;
  justify-content: center;
}
}

/******************************/
/** コンタクトフォームの装飾 **/
/******************************/
/*　フォーム全体　*/
.cf7-area {
  width: 100%;
  margin: 0 auto;
}

.cf7-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.cf7-q {
  width: 30%;
  margin: 0 0 0 10px;
  text-align: left;
}

.cf7-a {
  width: 100%;
}

/*　見出し　*/
.form-heading {
  width: 100%;
  background-color: #191970;
  border-left: 1em solid #6495ED;
  border-radius: 2px;
  color: #ffffff;
  font-weight: bold;
  padding: 1em .8em;
  margin: 0 0 2em;
}

.form-heading p {
  margin: 0;
}

/* 各項目共通 */
#cf7-area label {
  font-weight: bold;
}

#cf7-area input[type=”checkbox”],
#cf7-area input[type=”radio”] {
  appearance: auto;
}

#cf7-area .wpcf7-list-item {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
}

.wpcf7-list-item {
  width: 100%;
  margin: 0;
}

.wpcf7-list-item {
  width: 100%;
  margin: 0;
}

#cf7-area textarea {
  height: 200px;
  padding: 0.625em 0.4375em;
}

.cf7-accept-check {
  text-align: center;
  margin: 50px auto;
}

.cf7-submit {
  width: 40%;
  margin: 0 auto;
  text-align: center;
}

#cf7-area input[type=”submit”] {
  width: 100%;
  background-color: #191970;
  color: #ffffff;
  border-radius: 5px;
  font-size: 1.2em;
  padding: 1em 10px;
}

#cf7-area input[type=”submit”]:hover {
  background-color: #ffffff;
  border: 2px solid #191970;
  color: #191970;
}

.cf7-btn {
  width: 40%;
  margin: 0 auto;
  text-align: center;
}

/*　必須ラベル　*/
.cf7-req {
  font-size: .8em;
  padding: 4px 6px;
  background: #eb2a2a;
  color: #ffffff;
  margin-left: 10px;
  display: inline-block;
}

@media screen and (max-width:768px) {
  .cf7-item {
    display: block;
  }

  #cf7-area label {
    display: block;
    margin-bottom: 10px;
  }

  .cf7-q {
    width: 100%;
    margin: 0;
  }

  .cf7-a {
    width: 100%;
  }

  #cf7-area input[type=”text”],
  #cf7-area input[type=”email”],
  #cf7-area input[type=”tel”],
  #cf7-area textarea {
    margin-left: 0;
  }

  .cf7-submit {
    width: 90%;
  }
}











/*PC版*/
@media (min-width: 451px) {

/* ヘッダー */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2% 1%;
  background-color: #01AEFF;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header a img {
  width: 15%;
  height: auto;
}

.footer-logo a img {
  height: auto;
  width: 100%;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  z-index: 101;
  align-items: end;
}

.bar {
  width: 55px;
  height: 2px;
  background-color: white;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 5px;
}

.menu-toggle .bar:nth-child(2) {
  width: 45px;
}

.menu-toggle .bar:nth-child(3) {
  width: 35px;
}

/* ナビゲーションメニュー */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

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

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 2rem;
  margin: 25px 0;
}

/* ハンバーガーメニューのアニメーション */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-18px) rotate(-45deg);
  width: 55px;
}


/* ヒーローセクション */
.hero {
  display: flex;
  justify-content: end;
  text-align: center;
  color: white;
  position: relative;
  flex-direction: column;
}

.hero-img{
  margin-left: 35%;
  margin-top: 95px;
  max-width: none;
  width: 65%;
  height: 90vh;
  margin-top: 0;
  transform:translateY(10%);
  overflow: hidden;
  position: relative;
}

.hero-img>div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vw;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;
  opacity: 0;
  animation-name: fade;
  animation-duration: 16s;
  animation-iteration-count: infinite;
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 7;
  }

  80% {
    opacity: 0;
    transform: scale(1.2);
  }

  100% {
    z-index: 0;
    opacity: 0;
  }
}

/* 1枚目のスライド */
.hero-img>div:first-of-type {
  background-image: url('../images/home/ファーストビュー1.png');
}

/* 2枚目のスライド */
.hero-img>div:nth-of-type(2) {
  background-image: url('../images/home/ファーストビュー2.png');
  animation-delay: 4s;
}

/* 3枚目のスライド */
.hero-img>div:nth-of-type(3){
  background-image: url('../images/home/ファーストビュー3.png');
  animation-delay: 8s;
}

/* 4枚目のスライド */
.hero-img>div:last-of-type {
  background-image: url('../images/home/ファーストビュー4.png');
  animation-delay: 12s;
}

.hero-content {
  padding-left: 6.25%;
  border-radius: 10px;
  height: 60%;
  position: absolute;
  content: "";
  z-index: 10;
}

.hero h1 {
  text-align: left;
  position: relative;
  font-size: 3.5rem;
  font-weight: bold;
  color: #191970;
  z-index: 5;
  box-shadow: 0px 3px 2px rgba(0.0.0.7);
}

.hero-background{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: #fff;
  z-index: 1;
  width: 4.5em;
  padding: 5px;
  margin-top: 15px;
}

.hero-background-2 {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: #fff;
  z-index: 1;
  width: 9.5em;
  padding: 5px;
  margin-top: 15px;
}

.hero-background-3 {
  content: "";
  display: block;
  background-color: #fff;
  z-index: 1;
  width: 22.5em;
  padding: 5px;
  margin-top: 15px;
}

.hero p {
  font-size: 2rem;
  margin-top: 10px;
  color: #191970;
  text-align: left;
  box-shadow: 0px 3px 2px rgba(0.0.0.7);
}

.badge {
  background: url('../images/home/badge.jpg') no-repeat center center/cover;
  height: auto;
  width: 60%;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  margin: 15px 0 0 0;
}

.badge img {
  height: 50px;
  display: block;
  margin: 0 auto 5px;
}

.news {
  padding: 45px 20px;
  margin: 50px auto;
  text-align: left;
}

.titlebox {
  width: 15%;
}

.title {
  font-size: 3.5rem;
  font-weight: bold;
  color: #01AEFF;
  text-decoration-color: #565656;
  text-decoration-thickness: 3.5px;
  text-underline-offset: 10px;
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  right: 0px;
}

.h2subtitle {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 10px;
  text-align: end;
  font-weight: bold;
}

.news_unknown {
  text-align: center;
  margin: 80px 25px;
  font-size: 1rem;
}

.news-content {
/* padding-bottom: 20px;
width: 30%;
display: block;
text-align: left;
position: relative;
left: 40%; */
}

.news-item {
  position: relative;
  width: 100%;
  display: block;
  /*margin-top: 20px;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  margin: 0 auto; */
}

li::marker{
  content: none;
}

.popular-list{
  position: relative;
  width: 80%;
  margin-top: 20px;
  margin: 0 auto;
  justify-content: space-evenly;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 50px;
}

.rank-items{
  width: 45%;
}

.section-title {
  background: #a4dcff;
  border-radius: 0px 50px 50px 0px;
  padding: 10px 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  text-align: left;
  width: 30%;
  color: #fff;
  font-size: 1.6rem;
}

.blog-list latest{
  justify-content: center;
}

.news-thumbnail{
  width: 100%;
}

.news-thumbnail img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  background-position: center;
}

.news-thumbnail-home {
  width: 100%;
}

.news-thumbnail-home img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background-position: center;
}

.news-title-home{
  width: 100%;
  font-size: 2rem;
}

.news-badge-home{
  position: absolute;
  top: 16px;
  left: 0;
  background: #01AEFF;
  color: white;
  padding: 5px 10px;
  border-radius: 25px;
  font-size: 1rem;
  display: inline-block;
  margin-left: 8%;
}

.news-date {
  color: #fff;
  font-size: 1.25rem;
}

.news-badge {
  position: absolute;
  top: 16px;
  left:0 ;
  background: #01AEFF;
  color: white;
  padding: 5px 10px;
  border-radius: 25px;
  font-size: 1.3rem;
  display: inline-block;
  margin-left: 8%;
}

.blog-tit{
  width: 90%;
  height: 30%;
  position: absolute;
  bottom: 3px;
  left: 0;
  margin-top: 10px;
  margin-left: 5%;
  color: #fff;
  background-color: rgba(90, 90, 90, .5);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-left: 8px;
  padding-bottom: 8px;
}

.blog-tit-front {
  width: 90%;
  height: 30%;
  position: absolute;
  bottom: 55px;
  left: 0;
  margin-top: 10px;
  margin-left: 5%;
  color: #fff;
  background-color: rgba(90, 90, 90, .5);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-left: 8px;
  padding-bottom: 8px;
}

/* シングルページ */
.entry-header {
  margin-top: 200px;
  width: 90%;
}

.entry-title {
  padding-left: 20px;
  font-size: 2rem;
}

.entry-meta {
  padding-left: 20px;
  font-size: 1.8rem;
}

.entry-content {
  margin-bottom: 50px;
}

.size-large{
  width: 70%;
  height: auto;
  margin: 0 auto;
}

.entry-content p {
  width: 90%;
  margin: 0 auto;
  padding: 0 1%;
  line-height: 35px;
  font-size: 1.1rem;
}

.rank-badge {
  position: absolute;
  z-index: 1;
  background-color: #F4A261;
  font-size: 0.9rem;
  color: #fff;
  padding: 3px 5px;
  font-weight: bold;
}

.news-title {
  width: 100%;
  font-size: 2.5rem;
}

.blog-area{
  display: flex;
  gap: 3%;
  margin-top: 20px;
}

.blog-items{
  width:  90%;
  display: flex;
  justify-self: center;
  margin: 0 auto;
  margin-bottom: 50px;
}

.news-excerpt {
  color: #565656;
}

.blog-button {
  align-items: center;
  justify-content: center;
  background: #F4A261;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 15px 25px;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
  margin: 0px 0px 0px auto;
  display: block;
  width: 25%;
  margin-left: auto;
  box-shadow: 0px 3px 2px rgba(0.0.0.7);
}

.blog-button:hover {
  background: #003399;
}

.back-button {
  align-items: center;
  justify-content: center;
  background: #F4A261;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 15px 25px;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
  margin: 0px 20px 0px auto;
  display: block;
  width: 20%;
  margin-left: auto;
  box-shadow: 0px 3px 2px rgba(0.0.0.7);
  margin-bottom: 20px;
}

.back-button:hover {
  background: #003399;
}

.back-button-business {
  align-items: center;
  justify-content: center;
  background: #F4A261;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 15px 25px;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
  margin: 0px 20px 0px auto;
  display: block;
  width: 15%;
  margin-left: auto;
  box-shadow: 0px 3px 2px rgba(0.0.0.7);
  margin-bottom: 20px;
}

.back-button-business:hover{
  background: #003399;
}

.back-button-review {
  align-items: center;
  justify-content: center;
  background: #F4A261;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 15px 25px;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
  margin: 0px 20px 0px auto;
  display: block;
  width: 15%;
  margin-left: auto;
  box-shadow: 0px 3px 2px rgba(0.0.0.7);
  margin-bottom: 20px;
}

.back-button-review:hover {
  background: #003399;
}

/* 不動産売却セクション */
.real-estate-sale {
  background-color: #01AEFF;
  color: white;
  text-align: right;
  position: relative;
  padding: 40px 20px;
  overflow: hidden;
}

.slide-wrapper {
  width: 15%;
  transform: rotate(-10deg);
  /* 斜めに見せる */
  position: absolute;
  left: 6%;
  bottom: -10%;
}

.slide-wrapper-pc {
  width: 15%;
  transform: rotate(-10deg);
  /* 斜めに見せる */
  position: absolute;
  left: 25%;
  bottom: -10%;
}

.slick-slide {
  text-align: center;
  font-size: 20px;
  padding: 30px;
  background: #208fda;
  color: white;
  border-radius: 10px;
  margin: 20px 0;
  width: 150px;
  height: 140px !important;
}

.slide-img1 {
  background: url('../images/home/3.png') no-repeat center center/cover;
}

.slide-img2 {
  background: url('../images/home/4.png') no-repeat center center/cover;
}

.slide-img3 {
  background: url('../images/home/5.png') no-repeat center center/cover;
}

.slide-img4 {
  background: url('../images/home/6.png') no-repeat center center/cover;
}

.slide-img5 {
  background: url('../images/home/7.png') no-repeat center center/cover;
}

.slide-img6 {
  background: url('../images/home/8.png') no-repeat center center/cover;
}

.slide-img7 {
  background: url('../images/home/9.png') no-repeat center center/cover;
}

.slide-img8 {
  background: url('../images/home/10.png') no-repeat center center/cover;
}

.slide-img9 {
  background: url('../images/home/11.png') no-repeat center center/cover;
}

.slide-img10 {
  background: url('../images/home/12.png') no-repeat center center/cover;
}

.text-content {
  width: 55%;
}

.real-estate-sale h2 {
  font-size: 3rem;
  font-weight: bold;
}

.real-estate-sale p {
  font-size: 1.5rem;
  line-height: 1.8;
}

.real-estate-p {
  margin-top: 40px;
}

.real-estate-button {
  align-items: center;
  justify-content: center;
  background: #F4A261;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 15px 25px;
  border-radius: 5px;
  text-align: center;
  margin: 40px 0px 0px auto;
  display: block;
  width: 25%;
  margin-left: auto;
  box-shadow: 0px 3px 2px rgba(0.0.0.7);
}

.real-estate-button:hover {
  background: #003399;
}

.moving-rectangle {
  width: 100px;
  /* 画像のサイズ */
  height: auto;
  animation: moveLeftUp 5s linear infinite;
}

@keyframes moveLeftUp {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-20px, -20px);
  }
}

.exclusive-service {
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.561);
}

.title-service {
  font-size: 3rem;
  font-weight: bold;
  color: #01AEFF;
  text-decoration-color: #565656;
  text-decoration-thickness: 3.5px;
  text-underline-offset: 10px;
  position: relative;
  width: 100%;
  display: inline;
}

.title-service-2 {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  text-decoration-color: #565656;
  text-decoration-thickness: 3.5px;
  text-underline-offset: 10px;
  position: relative;
  width: 100%;
  display: inline;
}

.service-item {
  margin-bottom: 20px;
  padding: 30px;
}

.background{
  background: url('../images/home/背景画像.png') no-repeat center center/cover;
}

.h3subtitle {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 10px;
  text-align: start;
  font-weight: bold;
}

.h3subtitle-service {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
  text-align: start;
  font-weight: bold;
}

.span-color {
  color: #fff;
}

.description {
  font-size: 1.3rem;
  line-height: 1.8;
  margin: 60px 0px 60px 0px;
  color: #565656;
  font-weight: 550;
}

.service-button {
  align-items: center;
  justify-content: center;
  background: #F4A261;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 15px 25px;
  border-radius: 5px;
  text-align: center;
  display: block;
  width: 25%;
  margin-left: auto;
  box-shadow: 0px 3px 2px rgba(0.0.0.7);
}

.service-button:hover {
  background: #003399;
}

.contact {
  padding: 40px 20px;
  margin: 0 auto;
}

.contact .subtitle {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 10px;
}

.titlebox-contact {
  width: 20%;
  text-align: left;
}

.titlecontact {
  font-size: 3rem;
  font-weight: bold;
  color: #01AEFF;
  text-decoration-color: #565656;
  text-decoration-thickness: 3.5px;
  text-underline-offset: 10px;
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.titlecontact::after {
  content: "";
  display: block;
  width: 110%;
  height: 1.5px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  right: 0px;
}

.contact-text {
  font-size: 0.7rem;
  margin: 20px 0px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  text-align: left;
  max-width: 600px;
  display: flex;
  justify-content: center;
}

.contact-form label {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form textarea {
  resize: none;
}

.privacy-text {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 15px;
}

.contact-button {
  background: #01AEFF;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0px 3px 2px rgba(0.0.0.7);
}

.contact-button:hover {
  background: #003399;
}

/* フッター全体 */
.footer {
  background-color: #01AEFF;
  /* 背景色 */
  padding: 20px 10px;
  color: white;
  text-align: left;
}

.footer-section {
  width: 20%;
}

.company-name {
  font-size: 1.2rem;
}

.footer-text {
  font-size: 1rem;
}

/* フッターのレイアウト */
.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
  gap: 10%;
}

iframe {
  width: 100%;
  padding: 20px 0px;
  height: 240px;
  float: right;
}

/* 会社情報 */
.footer-info {
display: none;
}

.footer-info-pc{
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 30px;
}

/*js*/
.fade-1 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-2 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-3 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-4 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fadein {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px);
}

.is-active {
  /*要素を表示させる*/
  opacity: 1;
  visibility: visible;
  /*元の位置に戻す*/
  transform: translateY(0);
}

.contact {
  margin: 0 auto;
  text-align: center;
}


.contact p {
  margin-bottom: 16px;
}

.contact .contact-text {
  font-size: 1rem;
}

.contact label {
  width: 150px;
  text-align: end;
  font-size: 16px;
  font-weight: bold;
}

.contact .wpcf7-form-control-wrap input {
  height: 56px;
  background-color: #D9D9D9;
  border-radius: 4px;
  border: none;
  width: 100%;
}

.contact .txt_attention {
  width: 60vw;
  display: block;
}

.contact textarea {
  background-color: #D9D9D9;
  border-radius: 4px;
  border: none;
}

.contact .btn {
  width: 60vw;
}

.contact .wpcf7-form-control-wrap input {
  height: 56px;
  background-color: #D9D9D9;
  border-radius: 4px;
  border: none;
  width: 100%;
}

.contact .wpcf7-form-control-wrap input[name="your-accept"] {
  height: 14%;
  background-color: #D9D9D9;
  border-radius: 4px;
  border: none;
  width: 5%;
}

.contact .txt_attention {
  width: 60vw;
  display: block;
}

.contact textarea {
  background-color: #D9D9D9;
  border-radius: 4px;
  border: none;
  width: 100%;
}

.contact .btn {
  width: 60vw;
}

.contact .wpcf7-submit {
  width: 100%;
  height: 45px;
  margin: 0 auto;
  background-color: #F4A261;
  font-size: 1rem;
  border-radius: 48px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.contact .wpcf7-spinner {
  display: none;
}

/*不動産売却ページ*/
.section-sell {
  max-width: 90%;
  margin: 0 auto;
  padding: 80px 0px 30px 0px;
  font-family: 'sans-serif';
}

.image-box {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-start;
  top: 25px;
}

.image-box img {
  width: 80%;
  height: auto;
  display: block;
}

.image-text {
  position: absolute;
  bottom: 50px;
  left: 50px;
  font-size: 3rem;
  font-weight: bold;
  color: white;
  text-decoration: underline;
  padding: 10px 20px;
  text-underline-offset: 10px;
  text-shadow: 1px 1px 2px #333;
}

.background-box {
  width: 90%;
  height: 350px;
  background-color: #01AEFF;
  margin-top: -315px;
  margin-left: auto;
}

.text-box h2 {
  font-size: 2.3rem;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
  margin-top: 55px;
  padding-left: 30px;
}

.text-box p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  border-bottom: 1px solid #aaa;
  padding: 20px 20px 50px 20px;
}

.text-box-business p {
  font-size: 1.3rem;
  color: #333;
  padding: 40px 20px;
  line-height: 2;
}

.steps-section {
  position: relative;
  padding: 20px;
  max-width: 65%;
  margin: 0 auto;
}

.step {
  position: relative;
  background-color: #01AEFF;
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.step-flex {
  display: flex;
  justify-content: space-between;
}

.step-number {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-decoration: underline;
  text-underline-offset: 10px;
}

.step-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.step-icon img {
  width: 130%;
  height: auto;
  margin-top: 15px;
  margin-right: 20px;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.step-content p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* 縦線の演出 */
.steps-section::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 50%;
  width: 5px;
  height: 1800px;
  background-color: #565656;
  z-index: -1;
}

  /*ビジネスページ*/
.strength-section {
  padding: 40px 0px;
  margin: 0 auto;
  font-family: 'sans-serif';
  color: #333;
  text-align: center;
}

.strength-section .title-strong {
  font-size: 2.5rem;
  font-weight: bold;
  color: #01AEFF;
  text-decoration-color: #565656;
  text-decoration-thickness: 3.5px;
  text-underline-offset: 10px;
  position: relative;
  width: 100%;
  display: inline;
}

.strength-section .title-strong::after {
  content: "";
  display: block;
  width: 120%;
  height: 1.5px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  right: 0px;
}

.strength-section .strong-item {
  background: white;
  margin-bottom: 20px;
  text-align: start;
}

.strength-section .strong-exclusive {
  padding: 40px 0px;
  margin: 0 auto;
}

.strength-section .title-box {
background: #a4dcff;
border-radius: 0px 50px 50px 0px;
padding: 20px;
margin-bottom: 30px;
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
text-align: left;
width: 40%;
}

.strength-section .title-box h2 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.strength-section .title-box p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.strength-section .strength-block {
  margin-bottom: 30px;
}

.strength-section .strength-p p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 auto;
  padding: 30px 10px 30px 10px;
}

.strength-section .strength-image {
  margin: 0 auto 10px;
}

.strength-section .strength-image-2 img {
  margin: 0 auto 10px;
  width: 65%;
  height: auto;
}

.strength-image{
  width: 60%;
}

.strength-section .strength-block p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0 auto;
  padding: 0 10%;
  text-align: center;
}

.strength-section .strength-block p.highlight {
  color: #01AEFF;
  font-weight: bold;
  text-align: center;
}

.strength-section .arrow-down {
  font-size: 5rem;
  color: #ccc;
  margin-bottom: 30px;
}

.strength-text {
  font-size: 2rem !important;
  font-weight: bold;
  margin: 5% 1% !important;
}

/*お客様ページ*/
.voice-wrapper {
  background: #9bd9ff;
  border-radius: 12px;
  padding: 40px 20px;
  width: 90%;
  max-width: 70%;
  margin: 70px auto;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.voice-icon {
  width: 100px;
  height: 100px;
  border-radius: 12px;
}

.voice-header {
  position: absolute;
  top: -55px;
  left: 20px;
}

.voice-box {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-top: 20px;
  position: relative;
}

.voice-text {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}

.voice-meta {
  text-align: right;
  margin-top: 10px;
  font-size: 1.1rem;
  color: #555;
}

/* 会社概要 */
.company-wrapper {
  padding: 30px 20px;
  width: 90%;
  margin: 40px auto;
  position: relative;
}

.company-title{
  text-align: center;
  color: #003399;
  font-size: 2.5rem;
}

.company-box{
  display: flex;
  gap: 5%;
  margin-top:20px;
}

.company-box img{
  width: 35%;
  height: auto;
}

.kaisha {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0px;
}

.kaisha th,
.kaisha td {
  border: 1px solid #ccc;
  padding: 20px;
}

.kaisha th {
  font-weight: bold;
  background-color: #01AEFF;
  color: #fff;
}

@media screen and (max-width: 767px) {

  .kaisha,
  .kaisha tr,
  .kaisha td,
  .kaisha th {
    display: block;
  }

  .kaisha th {
    width: auto;
  }
}


/******************************/
/** コンタクトフォームの装飾 **/
/******************************/
/*　フォーム全体　*/
.cf7-area {
  width: 100%;
  margin: 0 auto;
}

.cf7-item {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  margin: 0 0 1.75em;
}

.cf7-q {
  width: 30%;
  margin: 0 0 0 10px;
}

.cf7-a {
  width: 60%;
}

/*　見出し　*/
.form-heading {
  width: 100%;
  background-color: #191970;
  border-left: 1em solid #6495ED;
  border-radius: 2px;
  color: #ffffff;
  font-weight: bold;
  padding: 1em .8em;
  margin: 0 0 2em;
}

.form-heading p {
  margin: 0;
}

/* 各項目共通 */
#cf7-area label {
  font-weight: bold;
}

#cf7-area input[type=”text”],
#cf7-area input[type=”email”],
#cf7-area input[type=”tel”],
#cf7-area textarea {
  background: #F0F8FF;
  width: 500px;
  margin-left: 10px;
}

#cf7-area input[type=”text”]:focus,
#cf7-area input[type=”email”]:focus,
#cf7-area input[type=”tel”]:focus,
#cf7-area textarea:focus {
  background: #FFE4E1;
  border: 2px solid #FF1493;
  outline: 0;
}

#cf7-area input[type=”checkbox”],
#cf7-area input[type=”radio”] {
  appearance: auto;
}

#cf7-area .wpcf7-list-item {
  display: block;
}

#cf7-area textarea {
  height: 200px;
  padding: 0.625em 0.4375em;
}

.cf7-accept-check {
  text-align: center;
  margin: 50px auto;
}

.cf7-submit {
  width: 40%;
  margin: 0 auto;
  text-align: center;
}

#cf7-area input[type=”submit”] {
  width: 100%;
  background-color: #191970;
  color: #ffffff;
  border-radius: 5px;
  font-size: 1.2em;
  padding: 1em 10px;
}

#cf7-area input[type=”submit”]:hover {
  background-color: #ffffff;
  border: 2px solid #191970;
  color: #191970;
}

.cf7-btn {
  width: 40%;
  margin: 0 auto;
  text-align: center;
}

/*　必須ラベル　*/
.cf7-req {
  font-size: .8em;
  padding: 4px 6px;
  background: #eb2a2a;
  color: #ffffff;
  margin-left: 10px;
  display: inline-block;
}

@media screen and (max-width:768px) {
  .cf7-item {
    display: block;
  }

  #cf7-area label {
    display: block;
    margin-bottom: 10px;
  }

  .cf7-q {
    width: 100%;
    margin: 0;
  }

  .cf7-a {
    width: 100%;
  }

  #cf7-area input[type=”text”],
  #cf7-area input[type=”email”],
  #cf7-area input[type=”tel”],
  #cf7-area textarea {
    margin-left: 0;
  }

  .cf7-submit {
    width: 90%;
  }
}

.desc {
  width: 40%;
  padding: 10px;
}

.desc p {
  display: none;
}
}