/*
Theme Name: 和上ホールディングス-販売サイト
*/

*{
  font-family: "Shippori Mincho", serif,"Noto Sans", sans-serif;
  font-family: "Cardo", serif;
  font-style: normal;
  margin: 0;
  padding: 0;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 480px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

  body {
    opacity: 0;
    transition: opacity 1s ease;
  }
  body.loaded {
    opacity: 1;
  }

html {
  scroll-behavior: smooth;
}


h1{letter-spacing: 1px;}
h2{letter-spacing: 1px;}
h3{letter-spacing: 1px;}
h4{letter-spacing: 1px;}
h5{letter-spacing: 1px;}
h6{letter-spacing: 1px;}

p{
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  line-height: 2em;
}

.subtext{
  font-family: Cardo, serif;
  font-size: 10px;
  font-weight: 200;
  opacity: 0.5;
  letter-spacing: 1px;
}

main{
  position: relative;
}

.header {
  position: fixed;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .header {
    position: fixed;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 94%;
  margin: 0 auto;
  padding: 12px 0;
}

@media (min-width: 0px) and (max-width: 768px) {
  .header-inner {
    padding: 6px 0;
  }
}

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

.logo {
  width: auto;
  height: 30px;
  transition: all 0.3s ease;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 768px) {
  .nav-list {
    list-style: none;
    display: flex;
    gap: 24px;
    display: none;
  }
}

.nav-list li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 1px;
}

.nav-list li a:hover{
  opacity: .5;
  transition: .5s;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
}

.header.scrolled .nav-list li a {
  color: black;
}

.hamburger-overlay span {
  background: white;
  transition: background 0.3s ease;
}


.header.scrolled .hamburger-overlay span {
  background: black;
}

.logo {
  transition: opacity 0.5s ease;
}

.logo-default {
  opacity: 1;
}

.logo-scroll {
  opacity: 0;
  display: none;
}

.header.scrolled .logo-default {
  opacity: 0;
  display: none;
}

.header.scrolled .logo-scroll {
  opacity: 1;
  display: block;
}


.hamburger-overlay {
  z-index: 1000;
  width: 40px;
  height: 50px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.hamburger-overlay__line {
  position: absolute;
  width: 40px;
  height: 1.5px;
  background-color: #333;
  transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 20px; }
.hamburger-overlay__line:nth-of-type(2) { display: none; }
.hamburger-overlay__line:nth-of-type(3) { top: 28px; }

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .hamburger-overlay__line:nth-of-type(1) {
    top: 22px;
    right: 0;
  }
  .hamburger-overlay__line:nth-of-type(2) {
    display: none;
  }
  .hamburger-overlay__line:nth-of-type(3) {
    top: 30px;
    right: 0;
  }
}

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(4px) rotate(-8deg);
  background-color: #ffffff;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-4px) rotate(8deg);
  background-color: #fff;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #1D3455;
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
  display: flex; 
  justify-content: center;
  align-items: center;
  overflow: auto;
}

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

.nav-overlay__content {
  position: absolute;
  display: flex;
  margin: 6% 10%;
  height: 75%;
  width: 80%;
  justify-content: space-between;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .nav-overlay__content {
    position: absolute;
    display: flex;
    margin: 0 8%;
    height: 100vh;
    width: 82%;
    justify-content: space-around;
	  overflow: auto;
  }
}

.nav-overlay__manu_list_logo{
  width: 300px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .nav-overlay__manu_list_logo{
    width: 200px;
  }
}

.nav-overlay__manu_list_logo img{
  width: 100%;
}

.nav-overlay__manu_list li{
  list-style: none;
  margin-top: 32px;
}

.nav-overlay__manu_list li a{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  color: #ffffff;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex; 
  align-items: center;
  justify-content: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .nav-overlay__manu_list{
    margin-top: 30px;
  }
  
  .nav-overlay__manu_list li{
    list-style: none;
    margin-top: 16px;
  }
  
  .nav-overlay__manu_list li a{
    font-size: 14px;
    font-family: "Shippori Mincho", serif;
    color: #ffffff;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-grid; 
    align-items: center;
    justify-content: center;
  }
}

.nav-overlay__manu_list li a:hover{
  opacity: 0.5;
  transition: .5s;
}


.nav-overlay__manu_list li a span{
  margin-left: 8px;
  font-size: 10px;
  opacity: .5;
  font-family: "Cardo", serif;
  letter-spacing: 1px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .nav-overlay__manu_list li a span{
    margin-left: 0;
    font-size: 10px;
    opacity: .5;
    font-family: "Cardo", serif;
    letter-spacing: 1px;
  }
}


.nav-overlay__list_contact{
  position: relative;
}

.nav-overlay__list_contact li {
  position:absolute;
  bottom: 0;
  right: 0;
  list-style: none;
}

.nav-overlay__list_contact li a {
  border: solid 1px #ffffffad;
  border-radius: 6px;
  width: 300px;
  height: 80px;
  display: flex;
  justify-content: center;  /* 横方向中央寄せ */
  align-items: center; 
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 2px;
  font-family: "Cardo", serif;
  display: inline-flex; 
  align-items: center;
  justify-content: center;
  line-height: 0.8em;
  font-weight: 500;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	.nav-overlay__list_contact li {
    position:absolute;
    bottom: 40px;
    right: 0;
    list-style: none;
  }
	
  .nav-overlay__list_contact li a {
    border: solid 1px #ffffffad;
    border-radius: 6px;
    width: 250px;
    height: 80px;
    display: flex;
    justify-content: center;  /* 横方向中央寄せ */
    align-items: center; 
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 2px;
    font-family: "Cardo", serif;
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    line-height: 0.8em;
    font-weight: 500;
  }
}

.nav-overlay__list_contact li a:hover{
  background-color: #ffffffb9;
  transition: .5s;
  color: #1D3455;
}

.nav-overlay__list_contact li a span{
  font-size: 10px;
  font-family: "Shippori Mincho", serif;
  display: contents;
}

.nav-overlay__list_contact li:nth-child(1){
  margin-bottom: 100px;
}

.nav-overlay__list_contact li:nth-child(2){
  background: #fff;
  opacity: .7;
  border-radius: 6px;
}

.nav-overlay__list_contact li:nth-child(2) a{
  font-size: 16px;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
  color: #1D3455;
  font-weight: 500;
}

.nav-overlay__list_contact li:nth-child(2) a:hover{
  color: #ffffffb9;
  transition: .5s;
  background-color: #1D3455;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
}

.nav-overlay__manu_list li {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* activeになったら表示される */
.nav-overlay.active .nav-overlay__manu_list li {
  opacity: 1;
}


.nav-overlay.active .nav-overlay__manu_list li:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(4) { transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(5) { transition-delay: 0.5s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(6) { transition-delay: 0.6s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(7) { transition-delay: 0.7s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(8) { transition-delay: 0.8s; }


.nav-overlay__list_contact{
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* activeになったら表示される */
.nav-overlay.active .nav-overlay__list_contact {
  opacity: 1;
}


.nav-overlay.active .nav-overlay__list_contact{ transition-delay: 0.6s; }


.flexbanner{
  position: fixed;
  bottom: 4%;
  right: 4%;
  width: 160px;
  z-index: 9;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .flexbanner{
    position: fixed;
    bottom: 4%;
    right: 4%;
    width: 120px;
    z-index: 2;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}

.flexbanner.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.flexbanner img{
  width: 100%;
}

.flexbanner a:hover{
  opacity: .5;
  transition: .7s;

}

.top-fv{
  height: 100vh;
  display: flex; 
  justify-content: center;
  align-items: center;
  overflow: hidden; 
  position: relative;
}

.top-fv img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-fv-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-fv-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  clip-path: inset(0 0 0 100%);
  opacity: 0;
  z-index: 0;
}

.top-fv h2{
  position: absolute;
  font-size: 40px;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
  color: #ffffff;
  font-weight: 300;
  top: 38%;
  left: 8%;
  line-height: 1.6em;
	z-index:2;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-fv h2{
    position: absolute;
    font-size: 30px;
    letter-spacing: 2px;
    font-family: "Shippori Mincho", serif;
    color: #ffffff;
    font-weight: 300;
    top: 30%;
    left: 4%;
    line-height: 1.5em;
    margin-right: 4%;
  }
}

.top-fv h2 span{
  font-family: "Cardo", serif;
  font-size: 14px;
  font-weight: 200;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-fv h2 span{
    font-family: "Cardo", serif;
    font-size: 10px;
    font-weight: 200;
    line-height: 1.8em;
    display: inline-block;
    margin-top: 16px;
  }
}

.top-fv p{
  position: absolute;
  font-size: 12px;
  bottom: 6%;
  left: 4%;
  font-family: "Noto Sans", sans-serif;
  font-weight: 200;
  color: #ffffff;
  line-height: 1.6em;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-fv p{
    position: absolute;
    font-size: 10px;
    bottom: 4%;
    left: 4%;
    font-family: "Noto Sans", sans-serif;
    font-weight: 200;
    color: #ffffff;
    line-height: 1.6em;
  }
}

.top-section2{
  margin: 104px auto 0;
    max-width: 1500px;
    padding: 0 16%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section2{
    margin: 40px auto 0;
      max-width: 1500px;
      padding: 0 8%;
  }
}

.top-section2 h3{
  font-size: 30px;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
  font-weight: 300;
  line-height: 1.6em;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section2 h3{
    font-size: 23px;
    letter-spacing: 2px;
    font-family: "Shippori Mincho", serif;
    font-weight: 300;
    line-height: 1.5em;
  }
}

.top-section2 p{
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  line-height: 2em;
  margin-top: 24px;
}

.top-section2 .top-section2-entext{
  font-family: "Cardo", serif;
  font-size: 10px;
  font-weight: 200;
/*   opacity: .5; */
  text-align: right;
	color:#00000085;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section2 .top-section2-entext{
    font-family: "Cardo", serif;
    font-size: 10px;
    font-weight: 200;
/*     opacity: .5; */
    text-align: left;
  }
}

.top-section3{
  margin:0 0 80px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section3{
    margin:40px 0 80px;
  }
}

.top-section3 p{
  font-family: "Cardo", serif;
  font-size: 120px;
  font-weight: 200;
  color: #74a2e628;
  line-height: 1em;
  margin-bottom: -20px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section3 p{
    font-family: "Cardo", serif;
    font-size: 60px;
    font-weight: 200;
    color: #74a2e628;
    line-height: 1em;
    margin-bottom: -8px;
  }
}

.scroll-wrapper {
  overflow: hidden;
  width: 100%;
}

.scroll-track {
  display: flex;
  animation: scroll 60s linear infinite;
  width: max-content; 
}

.scroll-track img {
  width: 500px;
  height: auto;
  margin-right: 16px;
  object-fit: cover;
  border-radius: 8px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.top-section4{
  margin: 80px auto;
  text-align: center;
  max-width: 1500px;
  padding: 0 8%;
	scroll-margin-top: 100px; 
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
  .top-section4{
    margin: 80px auto;
    text-align: center;
    max-width: 1500px;
    padding: 0 4%;
    scroll-margin-top: 100px; 
  }
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section4{
    margin: 40px auto;
    text-align: center;
    max-width: 1500px;
    padding: 0 4%;
    scroll-margin-top: 100px; 
  }
}

.top-section4 h4{
  font-family: "Cardo", serif;
  font-size: 30px;
  font-weight: 200;
}

.top-section4 h3{
  font-family: "Shippori Mincho", serif;
  font-weight: 300;
  font-size: 14px;
  margin: 0 0 24px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section4 p{
    text-align: left;
    margin: 0;
  }
}

.properties{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  justify-content: space-between;
}

.properties li {
  list-style: none;
  width: calc(98%/2);
  display: flex;
  align-items: flex-start;
  padding: 2.5%;
  box-sizing: border-box;
  border: solid 4px #496798;
  border-radius: 10px;
  text-align: left;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 786px) {
  .properties {
    display: block;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
    justify-content: space-between;
  }
  
  .properties li {
    list-style: none;
    width: calc(100%/1);
    display: flex;
    align-items: flex-start;
    padding: 6% 4%;
    box-sizing: border-box;
    border: solid 4px #496798;
    border-radius: 10px;
    text-align: left;
    margin-bottom: 16px;
  }
}

.properties li .properties-img{
  width: 42%;
  margin-right: 6%;
}
/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.properties li .properties-img{
  width: 38%;
  margin-right: 5%;
}
}

.properties li img{
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.properties-info{
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .properties li img{
    width: 100%;
    aspect-ratio: 3 / 5;
    object-fit: cover;
  }

  .properties-info{
    width: 56%;
  }

  .properties-info p{
    font-size: 12px;
  }
}

.properties-info .salesprice-text{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.properties-info .salesprice-text{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
}

.properties-info .salesprice-text span{
  color: #496798;
  font-size: 18px;
  margin-right: 1px;
  font-family: "Noto Sans", sans-serif;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.properties-info .salesprice-text span{
  color: #496798;
  font-size: 14px;
  margin-right: 1px;
  font-family: "Noto Sans", sans-serif;
}
}

.properties-info .salesprice{
  font-family: "Shippori Mincho", serif;
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 1px;
  margin-bottom: 24px;
  line-height: 1em;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .properties-info .salesprice{
    font-family: "Shippori Mincho", serif;
    font-weight: 300;
    font-size: 25px;
    letter-spacing: 1px;
    margin-bottom: 24px;
    line-height: 1em;
  }
}

.properties-info .place{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  line-height: 1.6;
}

.properties-info .place span {
  width: 90px;
  margin-right: 8px;
  padding: 4px 4px;
  text-align: center;
  background-color: #1c345417;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .properties-info .place span {
    width: 74px;
    font-size: 12px;
  }
}

.properties-info .System {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.properties-info .System span {
  width: 90px;
  margin-right: 8px;
  padding: 4px 4px;
  text-align: center;
  background-color: #1c345417;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .properties-info .System span{
    width: 74px;
    font-size: 12px;
  }
}

.properties-info .sellingprice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.properties-info .sellingprice span {
  width: 90px;
  margin-right: 8px;
  padding: 4px 4px;
  text-align: center;
  background-color: #1c345417;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .properties-info .sellingprice span {
    width: 74px;
    font-size: 12px;
  }
}

.salescontact {
  width: 100%;
}

.salescontact a {
  position: relative;
  font-family: "Shippori Mincho", serif;
  width: 100%;
  display: flex;
  justify-content: center; 
  align-items: center;
  font-size: 14px;
  color: #000;
  padding: 10px 4px;
  text-align: center;
  border: solid 1px #CCC;
  box-sizing: border-box;
  text-decoration: none;
  transition: all .5s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .salescontact a {
    font-size: 13px;
  }
}

.salescontact a:hover {
  background-color: #d4e3fb;
  border: solid 1px #d4e3fb;
}

.top-section5{
  margin: 80px auto;
  display: flex;
  justify-content: space-between;
  max-width: 1500px;
  padding: 0 8%;
}

.top-section5-left{
  width: 45%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section5{
  margin: 40px auto;
  display: block;
  justify-content: space-between;
  max-width: 1500px;
  padding: 0 8%;
}

.top-section5-left {
  width: 100%;
  text-align: center;
}
}

.top-section5-left h3 {
  font-size: 25px;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
  font-weight: 300;
  line-height: 1.6em;
  margin-bottom: 24px;
}

.top-section5-right{
  width: 50%;
  margin-left: 5%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section5-left h3 {
    font-size: 23px;
    letter-spacing: 2px;
    font-family: "Shippori Mincho", serif;
    font-weight: 300;
    line-height: 1.5em;
    margin-bottom: 24px;
    text-align: left;
  }

  .top-section5-left .subtext {
    text-align: left;
  }

  .top-section5-right{
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
}

.top-section5-right img{
  width: 100%;
}

.top-section5-left a{
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
  font-weight: 300;
  border: solid 1px #000000b7;
  padding: 6% 8%;
  margin-top: 32px;
  display: inline-block;
  color: #000;
}

.top-section5-left a:hover{
  background-color: #00000038;
  transition: .5s;
}


.top-section6 {
  margin: 80px 6%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section6 {
    margin: 80px 3% 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.top-sectio6 a {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.sidetext{
  writing-mode: vertical-rl;
  letter-spacing: 1px;
  font-size: 12px;
}

.top-section6-img-wrap {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin:auto;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 768px) {
  .top-section6-img-wrap {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
    margin:auto;
  }
}

.top-section6-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section6-img-wrap img {
    display: block;
    width: 100%;
    height: 800px;
    object-fit: cover;
    border-radius: 15px;
  }
}

.top-section6-img-wrap .overlay {
  position: absolute;
  border-radius: 15px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.619);
  transition: background-color 0.3s ease;
  pointer-events: none;
}

a:hover .top-section6-img-wrap .overlay {
  background-color: rgba(0, 0, 0, 0.446);
}

.top-section6-text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section6-text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end; 
    text-align: center;
    color: #fff;
    box-sizing: border-box;
  }
}

.top-section6-text h4 {
  font-family: "Cardo", serif;
  font-size: 20px;
  font-weight: 200;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section6-text h4 {
    font-family: "Cardo", serif;
    font-size: 23px;
    font-weight: 200;
    padding: 0 6%;
    text-align: left;
  }
}

.top-section6-text h3 {
  font-size: 14px;
  letter-spacing: 1px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  margin: 8px 0 32px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section6-text h3 {
    font-size: 14px;
    letter-spacing: 1px;
    font-family: "Shippori Mincho", serif;
    font-weight: 200;
    margin: 8px auto 32px 6%;
    text-align: left;
  }
}

.top-section6-text p {
  line-height: 2.5em;
  text-align: left;
  margin: 0 8%;
  margin-bottom: 32px;
}

.top-section6-text .btn {
  font-family: "Cardo", serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 1px;
  border-bottom: solid 1px #ffffff72;
  margin: 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section6-text p {
    line-height: 2em;
    text-align: left;
    margin: 0 6%;
    margin-bottom: 32px;
  }
  
  .top-section6-text .btn {
    font-family: "Cardo", serif;
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 1px;
    border-bottom: solid 1px #ffffff72;
    margin-right: 6%;
  }
}

.top-section7{
  margin: 80px auto;
  display: flex;
  justify-content: center;
  max-width: 1500px;
  padding: 0 16%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .top-section7{
    margin: 40px auto 80px;
    display: block;
    justify-content: center;
    max-width: 1500px;
    padding: 0 8%;
  }
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
  .top-section7{
    margin: 80px auto;
    display: flex;
    justify-content: center;
    max-width: 1500px;
    padding: 0 4%;
  }
}


/* 2000~*/
@media (min-width: 2000px) {
  .top-section7{
    margin: 80px auto;
    display: flex;
    justify-content: center;
    max-width: 1500px;
    padding: 0 12%;
  }
}


.top-section7 li{
  list-style: none;
  width: 50%;
  margin: 0 2%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .top-section7 li{
    list-style: none;
    width: 100%;
    margin: 0;
    margin-bottom: 16px;
  }
  
}


.top-section7 li a{
  text-decoration: none;
  color: #496798;
  display: inline-block;
  padding: 8%;
  border: solid 1px #496798;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.top-section7 li a img{
  width: 60px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .top-section7 li a img{
    width: 80px;
  }
}

.top-section7 li a  h3{
  font-size: 20px;
  letter-spacing: 1px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  margin: 8px 0;
}

.top-section7 li a h4{
  font-family: "Cardo", serif;
  font-size: 10px;
  font-weight: 200;
}

.top-section7 li a p{
  font-family: "Noto Sans", sans-serif;
  margin: 16px 0;
  line-height: 1.8em;
}

.top-section7 li a .arrow{
  text-align: center;
  font-size: 16px;
  margin: 0;
}

.top-section7 li a:hover{
  box-shadow:none;
  transition: .5s;
  background-color: #4967983b;
}

.top-section8{
  margin: 40px auto 0;
  padding: 80px 8% 104px;
  background-color: #eff1f597;
  max-width: 1500px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .top-section8{
    margin: 40px auto 0;
    padding: 40px 8% 80px;
    background-color: #eff1f597;
    max-width: 1500px;
  }
}

/* 2000~*/
@media (min-width: 2000px) {
  .top-section8{
    margin: 40px auto 0;
    padding: 80px 24% 104px;
    background-color: #eff1f597;
    max-width: 1500px;
  }
}

.top-section8-title{
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .top-section8-title{
    display: block;
    justify-content: space-between;
    align-items: center;
    text-align: end;
  }
}

.top-section8-title h4{
  font-family: "Cardo", serif;
  font-size: 30px;
  font-weight: 200;
  color: #496798;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .top-section8-title h4{
    font-family: "Cardo", serif;
    font-size: 30px;
    font-weight: 200;
    color: #496798;
    text-align: left;
    margin-bottom: 8px;
  }
}

.top-section8-title a{
  font-size: 14px;
  letter-spacing: 1px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  color: #496798;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
}

.top-section8-title a img{
  width: 18px;
  margin-left: 8px;
}

.top-section8-title a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: #496798;
}

.top-section8-title a:hover{
  opacity: .6;
  transition: .5s;
}

.top-section8-lineside{
  width: 100%;
  height: 1px;
  background-color: #49679841;
  margin: 24px 0 40px;
}

.top-section8 ul{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .top-section8 ul{
    display: block;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
  }
}

.top-section8 ul li{
  list-style: none;
}

.top-section8 ul li:nth-child(1){
  width: 60%;
}

.top-section8 ul li:nth-child(3){
  width: 30%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .top-section8 ul li:nth-child(1){
    width: 100%;
  }
  
  .top-section8 ul li:nth-child(3){
    width: 100%;
  }
}

.top-section8 ul li img{
  width: 100%;
}

.top-section8-linewide{
  width: 1px;
  height: 50vh;
  background-color: #49679841;
  margin: 0 40px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .top-section8-linewide{
    width: 1px;
    height: 50vh;
    background-color: #49679841;
    margin: 0 40px;
    display: none;
  }
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
  .top-section8-linewide {
    width: 1px;
    height: 35vh;
    background-color: #49679841;
    margin: 0 24px;
}
}

.top-section8 ul li h3 {
  font-size: 20px;
  letter-spacing: 1px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
}

.top-section8 ul li h3 span {
  color: #49679846;
  font-size: 19px;
  margin-right: 4px;
}

.top-section8 ul li h3 span.post {
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  font-size: 15px;
  color: #000;
  margin-right: 10px;
}

.top-section8 ul li p {
  margin: 24px 0;
}

.top-section8-supporttext {
  margin: 40px auto 0;
  text-align: center;
}

.top-section8-supporttext h3 {
  font-family: "Cardo", serif;
  font-size: 25px;
  font-weight: 200;
  color: #496798;
  line-height: 1.8em;
}

.top-section8-supporttext .subtext {
  color: #496798;
}


/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .top-section8-supporttext h3{
    font-family: "Cardo", serif;
    font-size: 20px;
    font-weight: 200;
    color: #496798;
    line-height: 1.8em;
    text-align: left;
  }

  .top-section8-supporttext .subtext{
    color: #496798;
    text-align: left;
  }
}

.backto-top {
  text-align: right;
  background-color: #eff1f597;
  padding-right: 4%;
  padding-bottom: 24px;
}


.backto-top a{
  color: #1C3454;
  font-size: 14px;
  font-family: "Cardo", serif;
  font-weight: 100;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.backto-top a img {
  width: 18px;
  margin-left: 4px;
}

.backto-top a:hover {
  opacity: .5;
  transition: .5s;
}

footer{
  background-color: #1C3454;
  padding: 80px 0 0;
  height: auto;
}

@media (min-width: 0px) and (max-width: 480px) {
	footer{
	  padding: 40px 0 0;
	}
}

footer a{
  color: #ffffff;
  text-decoration: none;
}

footer a:hover{
  opacity: .5;
  transition: .5s;
}

.footertop {
  display: flex;
  justify-content:space-between;
  padding: 0 8%;
  max-width: 1500px;
  margin: 0 auto;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .footertop {
    display: block;
    justify-content:space-between;
    padding: 0 8%;
    max-width: 1500px;
    margin: 0 auto;
  }
  
}

.footertop .footermenu {
  display: flex;
  justify-content:flex-start;
}

.footertop ul li {
  list-style: none;
  margin-right: 40px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .footertop .footermenu {
    display: block;
    justify-content:flex-start;
  }

  .footertop ul li {
    list-style: none;
    margin-right: 40px;
    margin-bottom: 32px;
  }

}


.footertop ul li h5{
  font-family: "Cardo", serif;
  font-size: 16px;
  font-weight: 200;
  color: #ffffff;
  margin-bottom: 16px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .footertop ul li h5{
    font-family: "Cardo", serif;
    font-size: 16px;
    font-weight: 200;
    color: #ffffff;
    margin-bottom: 8px;
  }
}

.footertop ul li p {
  line-height: 1.9em;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
	.footertop ul li p:not(:last-of-type) {
	  margin-bottom: 8px;
	}
}

.footertop ul li p a{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
}

.footertop ul li p a img{
  margin-right: 4px;
  width: 25px;
}

.footertop .footercompany{
  text-align: right;
  color: #fff;
}

.footertop .footercompany img{
  width: 240px;
}

.footertop .footercompany h1{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  letter-spacing: 0;
  margin: 16px 0 8px; 
	text-align: right;
}

.footertop .footercompany p{
  font-size: 13px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  line-height: 1.6em;
	text-align: right;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
	.footertop .footercompany h1{
		text-align: left;
	}

	.footertop .footercompany p{
		text-align: left;
	}
}

.footertop .footercompany .foottel{
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  margin: 16px 0;
}

.footertop .footercompany .foottel a{
  font-family: "Cardo", serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
  margin: 0 4px;
}

.footertop .footercompany .footercertification{
  font-size: 10px;
  margin-right: 1px;
  font-family: "Noto Sans", sans-serif;
  line-height: 1.8em;
}

.footercenter{
  background-color: #2A4262;
  margin: 40px 8%;
  padding: 40px 6%;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
	.footertop .footercompany .foottel {
    display: block;
	}

	.footertop .footercompany .foottel span {
		display: block;
		margin: 4px 0 0 -8px;
	}

  .footercenter{
    background-color: #2A4262;
    margin: 40px 6%;
    padding: 40px 4%;
    border-radius: 20px;
    display: block;
    justify-content: space-between;
    align-items: center;
    color: #fff;
  }
	.footertop .footercompany {
		text-align: left;}
}

/* 2000~*/
@media (min-width: 2000px) {
  .footercenter{
    background-color: #2A4262;
    margin: 40px auto;
    padding: 40px 4%;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    max-width: 1500px;
  }
}

.footercenter h5{
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  line-height: 1.8em;
  margin-bottom: 16px;
}

.footercenter .subtext{
  line-height: 1.7em;
  font-weight: 100;
}

.footercenter .footercenterright{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footercenter .footercenterright img{
  height: 60px;
  margin-left: 16px;
  margin-bottom: 8px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .footercenter .footercenterright img{
    height: 40px;
    margin-left: 8px;
    margin-bottom: 0;
    margin-top: 16px;
  }
}

.footerothersite{
  margin: 40px auto;
  max-width: 1500px;
}

.footerothersite .accordion {
  margin: 20px 8%;
  width: 84%;
}

.footerothersite .accordion-item {
  border-bottom: 1px solid #ffffff1e;
}

.footerothersite .accordion-header {
  display: flex;
  justify-content:flex-start;
  align-items: center;
  font-family: "Cardo", serif;
  font-size: 14px;
  font-weight: 100;
  color: #fff;
  letter-spacing: 1px;
  cursor: pointer;
}

.footerothersite .accordion-toggle {
  font-family: "Noto Sans", sans-serif;
  font-size: 30px;
  transition: transform 0.3s ease;
  font-weight: 100;
  margin-left: 8px;
  margin-top: -4px;
}

.footerothersite .accordion-content {
  max-height: 0;
  overflow: hidden;
  height: 100%;
  transition: max-height 0.4s ease;
}

.footerothersite .accordion-content.open {
  padding: 24px 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .footerothersite .accordion-content.open {
    padding: 0 0 24px;
  }
}

.footerothersite .accordion-content-inner {
  display: flex;
    justify-content: flex-start;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .footerothersite .accordion-content-inner {
    display: block;
    justify-content:space-between;
  }
}

.footerothersite .accordion-content-inner li {
  list-style: none;
	width: 33%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .footerothersite .accordion-content-inner li {
    list-style: none;
    margin-top: 24px;
    width: 100%;
  }
}

.footerothersite .accordion-content-inner li h5{
  font-size: 1３px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  color: #fff;
  margin-bottom: 10px;
}

.footerothersite .accordion-content-inner li p {
  margin-bottom: 5px;
}

.footerothersite .accordion-content-inner li p a {
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  color: #fff;
}

.footerbottom {
  margin: 40px 4% 0;
  border-top: 1px solid #ffffff1e;
  display: flex;
  justify-content: space-between;
  padding: 24px 0 32px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .footerbottom{
    margin: 20px 4% 0;
    border-top: 1px solid #ffffff1e;
    display: block;
    justify-content: space-between;
    padding: 24px 0 32px;
  }
}

.footerbottom .footerbottomleft{
  color: #fff;
  font-size: 12px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .footerbottom .footerbottomleft{
    color: #fff;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    margin-bottom: 8px;
  }
}

.footerbottom  .footerbottomright{
  color: #fff;
  font-size: 10px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
}

.footerbottom  .footerbottomright p{
  color: #fff;
  font-size: 10px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 200;
  letter-spacing: 1px;
}

.footerbottom  .footerbottomright a{
  color: #fff;
  font-size: 10px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 200;
  text-decoration:underline;
}

/*和上グループの信頼と実績*/
.page-fv{
  width: 100%;
  height: 100vh;
  display: flex; 
  justify-content: center;
  align-items: center;
  overflow: hidden; 
  position: relative;
  display: inline-block;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .page-fv{
    width: 100%;
    height: 50vh;
    display: flex; 
    justify-content: center;
    align-items: center;
    overflow: hidden; 
    position: relative;
    display: inline-block;
  }
}

.page-fv::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.296); /* 黒のオーバーレイ */
  pointer-events: none;
}

.page-fv img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-fv-title{
  position: absolute;
  bottom: 10%;
  left: 8%;
  z-index: 2;
  width: 60%;
}

.page-fv-title h3{
  font-size: 50px;
  font-family: "Cardo", serif;
  letter-spacing: 2px;
  line-height: 1.2em;
  font-weight: 400;
  color: #fff;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .page-fv-title{
    position: absolute;
    bottom:8%;
    left: 4%;
    z-index: 2;
    width: 92%;
    margin-right: 4%;
  }
  
  .page-fv-title h3{
    font-size: 30px;
    font-family: "Cardo", serif;
    letter-spacing: 2px;
    line-height: 1.2em;
    font-weight: 400;
    color: #fff;
  }
}

.page-fv-title h2{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  letter-spacing: 1px;
  line-height: 1.2em;
  color: #fff;
  margin: 24px 0;
  border-bottom: solid 1px #fff;
  padding-bottom: 24px;
}

.navigation-path{
  margin-top: 24px;
  margin-right: 4%;
  justify-content: flex-end;
  display: flex;
  align-items: center;
}

.navigation-path li{
  margin-left: 16px;
  list-style: none;
  font-size: 10px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 200;
}

.navigation-path li a{
  text-decoration: none;
  font-size: 10px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 200;
  color: #000;
}

.navigation-path .activepage a{
  border-bottom: solid 1px #0000002d;
  padding-bottom: 4px;
}

.navigation-path li a:hover{
  opacity: .5;
  transition: .5s;
}

.aboutwajo-section2{
  margin: 80px auto;
  max-width: 1500px;
  padding: 0 5%;
}

.aboutwajo-section2 h3{
  font-family: Cardo, serif;
  font-size: 25px;
  font-weight: 200;
  line-height: 1.8em;
  text-align: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	.aboutwajo-section2{
	  padding: 0 3%;
	}
}

@media (min-width: 0px) and (max-width: 480px) {
  .aboutwajo-section2 h3{
    font-family: Cardo, serif;
    font-size: 20px;
    font-weight: 200;
    line-height: 1.8em;
    text-align: center;
  }
}

.aboutwajo-section2-company{
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.aboutwajo-section2-company li {
  width: calc((100% - 20px) / 2);
  box-sizing: border-box;
  text-align: left;
  list-style: none;
  padding: 4%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	.aboutwajo-section2-company li {
	  padding: 1%;
	}
}
@media (min-width: 0px) and (max-width: 480px) {
  .aboutwajo-section2-company{
    margin: 40px 0;
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
  }
  
  .aboutwajo-section2-company li {
    width: calc(100%);
    box-sizing: border-box;
    text-align: left;
    list-style: none;
    padding: 4%;
    margin-bottom: 24px;
  }
}

.aboutwajo-section2-company li img{
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
}

.aboutwajo-section2-company li .imgborder{
  border: solid 1px #000;
}

.aboutwajo-section2-company li h4{
  font-family: Cardo, serif;
  font-size: 12px;
  font-weight: 200;
  color: #496798cb;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.aboutwajo-section2-company li h4::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #49679859;
}

.aboutwajo-section2-company li h3{
  font-size: 30px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.2em;
  text-align: left;
  margin: 4px 0 16px;
}

.aboutwajo-section2-company li p{
  margin-top: 8px;
}

.aboutwajo-section2-company li p span{
  background-color: #49679821;
  padding: 4px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .aboutwajo-section3{
    text-align: left;
    margin: 0 8%;
  }
}

.backto-aboutwajo{
  text-align: right;
  padding-right: 4%;
  margin: 80px 0 24px;
}

.backto-aboutwajo a {
  color: rgb(28, 52, 84);
  font-size: 14px;
  font-family: "Cardo", serif;
  font-weight: 100;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
}

/*販売実績＆お客様の声*/
.sales-section2 {
  margin: 80px auto 0;
  max-width: 1500px;
  padding: 0 12%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .sales-section2 {
    margin: 80px auto 0;
    max-width: 1500px;
    padding: 0 6%;
  }
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
  .sales-section2 {
    margin: 80px auto;
  max-width: 1500px;
  padding: 0 4%;
  }
}


.sales-section2 h3 {
  font-family: Cardo, serif;
  font-size: 25px;
  font-weight: 200;
  line-height: 1.8em;
  text-align: center;
}

.sales-section2 h4{
  font-family: Cardo, serif;
  font-size: 10px;
  font-weight: 200;
  text-align: center;
  margin: 4px 0 24px;
}

.sales-section2 .sales-section2-com{
  margin: 0 16%;
}



/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .sales-section2 .sales-section2-com{
    margin: 0;
  }
}

.sales-section2-results{
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.sales-section2-results li {
  width: calc((100% - 20px) / 2);
  box-sizing: border-box;
  text-align: left;
  list-style: none;
  padding: 4%;
  border-width: 4px;
  border-style: solid;
  border-color: rgb(73, 103, 152);
  border-image: initial;
  border-radius: 10px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 768px) {
  .sales-section2-results li{
	  padding: 2.5%;
  }
}

@media (min-width: 0px) and (max-width: 480px) {
  .sales-section2-results{
    margin: 40px 0;
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
  }

  .sales-section2-results li {
    width: calc(100%);
    box-sizing: border-box;
    text-align: left;
    list-style: none;
    padding: 6%;
    border-width: 4px;
    border-style: solid;
    border-color: rgb(73, 103, 152);
    border-image: initial;
    border-radius: 10px;
    margin-bottom: 16px;
  }
}

.sales-section2-results-img{
  position: relative;
  margin-bottom: 16px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .sales-section2-results-img{
    position: relative;
    margin-bottom: 4px;
  }
}


.sales-section2-results li img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.sales-section2-results-img p{
  position: absolute;
  right: 4%;
  top: 6%;
  margin: 0;
  background: #1C3454;
  font-size: 14px;
  padding: 8px 14px;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 300;
  letter-spacing: 1px;
}

.sales-section2-results-price .salesprice-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin: 0;
}

.sales-section2-results-price .salesprice-text span {
  color: #496798;
  font-size: 18px;
  margin-right: 1px;
  font-family: "Noto Sans", sans-serif;
}

.sales-section2-results-price .salesprice {
  font-family: "Shippori Mincho", serif;
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 1px;
  margin-bottom: 24px;
  line-height: 1em;
  margin: 0;
  margin-bottom: 16px;
}

.sales-section2-results-price .salesprice span{
  font-size: 10px;
  margin-left: 1px;
  font-family: "Noto Sans", sans-serif;
}

.sales-section2-results-info .place {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  margin-bottom: 8px;
}

.sales-section2-results-info .place span {
	width: 90px;
	margin-right: 8px;
	padding: 4px;
	text-align: center;
	background-color: #1c345417;
}
.sales-section2-results-info .System {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  margin-bottom: 8px;
}

.sales-section2-results-info .System span:nth-child(1) {
	width: 90px;
	margin-right: 8px;
	padding: 4px;
	text-align: center;
	background-color: #1c345417;
}
.sales-section2-results-info .System span:nth-child(2) {
	font-size: 10px;
}
.sales-section2-results-info .yearmonth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  margin-bottom: 8px;
}

.sales-section2-results-info .yearmonth span {
	width: 90px;
	margin-right: 8px;
	padding: 4px;
	text-align: center;
	background-color: #1c345417;
}

.sales-section2-results li .placename{
  background: #1C3454;
  font-size: 14px;
  padding: 8px 14px;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0;
  display: inline-block;
  margin-bottom: 8px;
}

.sales-section2-results-info .interest {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
  border-bottom: solid 1px #4967982f;
  padding-bottom: 8px;
}

.sales-section2-results-info .interest span:nth-child(1) {
	width: 90px;
  color: #496798;
  font-weight: 600;
  margin-right: 8px;
  padding: 4px;
	text-align: center;
  border: solid 1px #496798;
}
.sales-section2-results-info .interest span:nth-child(2) {
	font-size: 10px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 768px) {
  .sales-section2-results-info .interest {
    align-items: flex-start;
    flex-direction: column;
  }
	.sales-section2-results-info .interest span:nth-child(1) {
	  margin: 0 8px 8px 0;
	}
	.sales-section2-results-info .interest span:nth-child(2) {
		display: contents;
	}
}

.sales-section2-other{
  background-color: #F8F8F8;
  border-radius: 20px;
  padding: 5%;
  margin: 0 8% 16px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .sales-section2-other{
    background-color: #F8F8F8;
    border-radius: 20px;
    padding: 5%;
    margin: 0 0 16px;
  }
}

.sales-section2-other h6 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  letter-spacing: 1px;
}

.sales-section2-other h6 span {
  color: #496798;
  font-size: 18px;
  margin-right: 1px;
  font-family: "Noto Sans", sans-serif;
}

.sales-section2-other p{
  margin: 0;
  margin-top: 16px;
}

.sales-section2 .note{
 text-align: center;
 font-size: 12px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .sales-section2 .note{
    text-align: left;
    font-size: 12px;
   }
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
  .sales-section2 .note{
    text-align: center;
    font-size: 12px;
    margin: 0;
   }
}

.sales-section3 {
  background-color: rgba(239, 241, 245, 0.592);
  margin: 40px 0px 0px;
  padding: 80px 12% 104px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .sales-section3 {
    background-color: rgba(239, 241, 245, 0.592);
    margin: 40px 0px 0px;
    padding: 80px 6% 104px;
  }
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
  .sales-section3 {
    background-color: rgba(239, 241, 245, 0.592);
    margin: 40px 0px 0px;
    padding: 80px 4% 104px;
  }
}

/* 2000~*/
@media (min-width: 2000px) {
  .sales-section3 {
    background-color: rgba(239, 241, 245, 0.592);
    margin: 40px 0px 0px;
    padding: 80px 24% 104px;
  }
}

.sales-section3-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sales-section3-title h4 {
  font-family: "Shippori Mincho", serif;
  font-size: 30px;
  font-weight: 200;
  color: rgb(73, 103, 152);
}

.sales-section3-title p {
  font-size: 14px;
  letter-spacing: 1px;
  font-family: Cardo, serif;
  font-weight: 200;
  color: rgb(73, 103, 152);
}

.top-section8-lineside {
  width: 100%;
  height: 1px;
  background-color: rgba(73, 103, 152, 0.255);
  margin: 24px 0px 40px;
}

.sales-section3-costomercom{
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 40px;
}

.sales-section3-costomercom li {
  width: calc(31%);
  align-items: center;
  box-sizing: border-box;
  text-align: left;
  list-style: none;
  padding: 5% 3%;
  border-radius: 10px;
  background-color: #fff;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .sales-section3-costomercom{
    display: block;
    flex-wrap: wrap;
    margin: 40px 4%;
    justify-content: space-between;
    gap: 28px;
    padding-bottom: 40px;
  }
  
  .sales-section3-costomercom li {
    width: calc(100%);
    align-items: center;
    box-sizing: border-box;
    text-align: left;
    list-style: none;
    padding: 12% 8%;
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 16px;
  }
}

.sales-section3-costomercom li h6 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  letter-spacing: 1px;
}

.sales-section3-costomercom li h6 span {
  color: #49679886;
  font-size: 18px;
  margin-right: 1px;
  font-family: "Noto Sans", sans-serif;
}

.sales-section3-costomercom li p{
  margin-top: 8px;
  line-height: 2em;
  font-size: 12px;
}


/* Q&A */
.qa-section2 .accordion {
	margin: 4rem auto;
  width: 70%;
  max-width: 1500px;
  padding: 0 15%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .qa-section2 .accordion {
    margin: 4rem auto;
    width: 92%;
    max-width: 1500px;
    padding: 0 4%;
  }
}

.toggle {
	display: none;
}

.faq {
	position: relative;
	margin-bottom: 16px;
  border: solid 1px #496798;
  border-radius: 10px;
}


.question, .anser {
	transform: translateZ(0);
	transition: all 0.3s;
}

.question {
  padding: 4% 4%;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 1px;
  line-height: 1.8em;
}

.question p{
  width: 95%;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
	line-height: 1.6;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .question p{
    width: 90%;
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    font-family: "Shippori Mincho", serif;
  }
}

.question p span {
  color: #496798c9;
  font-size: 30px;
  font-family: "Cardo", serif;
  font-weight: 100;
  margin-right: 16px;
  line-height: 1;
}

.question:after,.question:before {
	content: "";
  position: absolute;
  right: 4%;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 21px;
  background-color: #496798;
  transition: all 0.3s;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .question:after,.question:before {
    content: "";
    position: absolute;
    right: 8%;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 21px;
    background-color: #496798;
    transition: all 0.3s;
  }
}

.question:after {
	transform: rotate(90deg);
}

.anser {
	max-height: 0;
	overflow: hidden;
}

.anser p {
  display: flex;
	max-width: 95%;
  color: #333333;
  line-height: 1.8;
}

.anser p span {
  color: #496798c9;
  font-size: 30px;
  font-family: "Cardo", serif;
  font-weight: 100;
  margin-right: 16px;
	line-height: 1;
}

.toggle:checked + .question + .anser {
	width: 92%;
	max-height: 500px;
  padding: 0 4.5% 4%;
	transition: all 1.5s;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	.toggle:checked + .question + .anser {
		width: 88%;
	  padding: 0 5.5% 4%;
	}
}

.toggle:checked + .question:before {
	transform: rotate(90deg) !important;
}

.qa-section3{
  position: relative;
  width: 84%;
  height: 500px;
  overflow: hidden;
  margin: 80px auto;
  max-width: 1500px;
}

.qa-section3 img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .qa-section3{
    position: relative;
    width: 84%;
    height: 100%;
    overflow: hidden;
    margin: 80px auto;
    max-width: 1500px;
  }
  .qa-section3 img {
    display: block;
    width: 600px;
    height: auto;
    object-fit: cover;
  }
}

.qa-section3 .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.62);
  pointer-events: none;
  transition: background-color 0.3s;
}

.qa-section3-text {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 60%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  text-align: left;
  box-sizing: border-box;
  display: flex;
  color: #fff;
  left: 10%;
}

.qa-section3-text h3{
  font-size: 25px;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
  font-weight: 300;
  line-height: 1.6em;
  margin-bottom: 24px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .qa-section3-text {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 84%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    text-align: left;
    box-sizing: border-box;
    display: flex;
    color: #fff;
    left: 8%;
  }
  
  .qa-section3-text h3{
    font-size: 20px;
    letter-spacing: 2px;
    font-family: "Shippori Mincho", serif;
    font-weight: 300;
    line-height: 1.6em;
    margin-bottom: 24px;
  }
}

.qa-section3-text .subtext{
  opacity: .7;
}

.qa-section3-text a {
  font-size: 20px;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
  font-weight: 300;
  margin-top: 32px;
  display: inline-block;
  color: rgb(255, 255, 255);
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.718);
  border-image: initial;
  padding: 6% 8%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .qa-section3-text a {
    font-size: 15px;
    letter-spacing: 2px;
    font-family: "Shippori Mincho", serif;
    font-weight: 300;
    margin-top: 32px;
    display: inline-block;
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.718);
    border-image: initial;
    padding: 6% 8%;
  }
}

.qa-section3-text a:hover{
  background-color: #ffffff29;
  transition: .5s;
}



.grecaptcha-badge {
  visibility: hidden;
}

.text_preparation {
	font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  padding: 60px 0 100px;
  text-align: center;
}

@media (min-width: 0px) and (max-width: 480px){
  .text_preparation {
    padding: 40px 0 100px;
  }
}

/* フッターサイト一覧 */
.footer_sitelist {
  width: 84% !important;
  margin: -20px auto 0 !important;
  border-top: none !important;
  max-width: 1500px !important;
}
@media screen and (max-width: 480px){
  .footer_sitelist {
    width: 100% !important;
  }
}
.footer_sitelist .inner_wrap {
  margin: 0 !important;
}
.footer_sitelist .inner_wrap:nth-child(1) {
  margin-bottom: 12px !important;
}
.footer_sitelist .inner_wrap .accordion-header {
  font-family: "Cardo", serif;
  font-size: 15px !important;
  font-weight: 300 !important;
  color: #FFF !important;
}
.footer_sitelist .inner_wrap .accordion-toggle {
  font-family: "Noto Sans", sans-serif;
  font-size: 24px !important;
  color: #FFF !important;
  margin: -2px 8px 0 0 !important;
}
.footer_sitelist .inner_wrap .accordion-content-inner li .accordion-content-title {
  font-family: "Cardo", serif;
  font-size: 14px !important;
  font-weight: 300 !important;
  color: #FFF !important;
  margin: 20px 0 6px !important;
}
.footer_sitelist .inner_wrap .accordion-content-inner li p a {
  color: #FFF !important;
}

/* js 修正 */
.title-animation{
font-family: "Shippori Mincho", serif;
}
.sec-animation {
  clip-path: inset(0 100% 0 0); /* ← 初期状態：右側100%隠す */
}
.fade-in-up-on-scroll {
  opacity: 0;
  transform: translateY(40px);
}
.fade-in-up-on-scroll2 {
  opacity: 0;
  transform: translateY(80px);
}

.fade-in-left-on-scroll {
  opacity: 0;
  transform: translateX(-40px);
}

.fade-in-right-on-scroll {
  opacity: 0;
  transform: translateX(40px);
}

.img-animation {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
    filter: brightness(0.5);
}
@media (min-width: 0px) and (max-width: 768px){
	.fade-in-up-on-scroll2 {
  opacity: 0;
  transform: translateY(40px);
}
}