@charset "utf-8";

#w0 {
  color: #2A2422;
  font-family: "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 14px;
  line-height: 1.5;
  background-color: #ffffff;
  font-weight: 400;
  -webkit-transition: 2s;
  -moz-transition: 2s;
  -o-transition: 2s;
  transition: 2s;
  opacity: 0;

  padding-bottom: 60px;
}

#w0 .fontgo {
  font-family: "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", 'Hiragino Kaku Gothic ProN', Meiryo, "ＭＳ ゴシック", sans-serif;
}

#w0 a {
  color: #2A2422;
  text-decoration: none;
  outline: none;
}

#w0 a:hover {

  text-decoration: none;
}

#w0 p {
  font-size: 14px;
  line-height: 26px;
  margin: 0px;
  text-align: justify;
  text-justify: inter-ideograph;
}

#w0 p,
#w0 h2,
#w0 h3,
#w0 h4 {
  font-feature-settings: "palt";
  letter-spacing: 0.5px;
}

#w0 .secin p.lead span {
  font-size: 14px;
  line-height: 1.7em;
  margin-top: -1em;
}

.pc #w0 {
  min-width: 1024px;
}

#w0.show1 {
  opacity: 1;
}

#w0 .secin p.lead {
  font-size: 24px;
  line-height: 34px;
  text-align: left;
}

#w0 .load {
  width: 100%;
  height: 50px;
  position: fixed;
  left: 0%;
  top: 35%;
}

#w0 .hmenu4 {
  text-align: center;

  height: 60px;
  width: 60px;
  cursor: pointer;
  position: fixed;

  right: -100px;
  bottom: 50px;
  z-index: 1111;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  opacity: 0.9;
}

#w0 .posfix .hmenu4 {
  right: 5px;
}

#w0 .hmenu4 a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
}

#w0 .hmenu4 a p {
  position: absolute;
  width: 100%;
  bottom: 1px;
  left: 5px;
  color: #000000;
  font-size: 10px;
  text-align: center;
  line-height: 10px;

}

#w0 .hmenu4::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 1;
  width: 20px;
  height: 20px;
  margin: auto;

  border-left: #ffffff solid 2px;
  border-top: #ffffff solid 2px;

  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);

}

/*#w0 header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  transition: 0.3s;
  transition: 0.3s;
}

#w0 header .header {
  width: 95%;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: 0.3s;
}*/

/*#w0 nav {
  background-color: #ffffff;

  width: 100%;
  position: relative;
}*/

#w0 .s-header{
  background-color: #5081A5;
}
#w0 .s-header_inner{
  display: flex;
  align-items: center;

  max-width: 1024px;
  padding: 0 10px;
  margin: 0 auto;
}
#w0 .s-header_logo{
  width: 80px;
}
#w0 .s-header_logo .s-img {
  width: 100%;
}
#w0 .s-header_logotxt{
  color: #fff;
  margin-left: 16px;
  padding: 8px 0;
}

#w0 .gmenu {
  height: 50px;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-sizing: border-box;
  position: relative;

}

#w0 .gmenu li {
  height: 100%;
  display: inline-block;
  width: 30%;

  position: relative;
}

#w0 .gmenu li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;

}

#w0 .gmenu li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background-color: #00AEEF;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 4px;
  z-index: 3;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;

}

#w0 .gmenu li:hover a::after {
  width: 50%;
}

#w0 .gmenu li a p {
  text-align: center;
  line-height: 1.2em;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

#w0 .gmenu li a p span {
  display: block;
  text-align: center;
  font-size: 12px;
}

#w0 .gmenu li::before {
  content: "";
  height: 60%;
  width: 1px;
  background-color: #000000;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(15deg);
  -moz-transform: translateY(-50%) rotate(15deg);
  -ms-transform: translateY(-50%) rotate(15deg);
  transform: translateY(-50%) rotate(15deg);
}

#w0 .gmenu li:last-child::after {
  content: "";
  height: 60%;
  width: 1px;
  background-color: #000000;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(15deg);
  -moz-transform: translateY(-50%) rotate(15deg);
  -ms-transform: translateY(-50%) rotate(15deg);
  transform: translateY(-50%) rotate(15deg);
}

#w0 section {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

#w0 section .secin {
  position: relative;
  box-sizing: border-box;
  width: 95%;
  max-width: 1024px;
  padding-left: 10px;
  padding-right: 10px;
  /*padding-top: 40px;*/
  padding-bottom: 40px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

#w0 section.seccase .secin {
  max-width: 1600px;
}

#w0 footer {
  box-sizing: border-box;
  position: relative;
  width: 100%;
}

.thim,
.thim2,
.thim4,
.thim3 {
  opacity: 0;
  -webkit-transform: translateY(5%);
  -moz-transform: translateY(5%);
  -ms-transform: translateY(5%);
  transform: translateY(5%);
}

.thim.thimu,
.thim2.thimu,
.thim4.thimu,
.thim3.thimu {
  opacity: 0;
  -webkit-transform: translateY(-5%);
  -moz-transform: translateY(-5%);
  -ms-transform: translateY(-5%);
  transform: translateY(-5%);
}

.thim.ani1 {
  opacity: 1;
  -webkit-transition: all 0.8s 0.25s cubic-bezier(.22, .61, .36, 1);
  transition: all 0.8s 0.25s cubic-bezier(.22, .61, .36, 1);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.thim2.ani1 {
  opacity: 1;
  -webkit-transition: all 0.8s 0.3s cubic-bezier(.22, .61, .36, 1);
  transition: all 0.8s 0.3s cubic-bezier(.22, .61, .36, 1);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}

.thim3.ani1 {
  opacity: 1;
  -webkit-transition: all 0.8s 0.35s cubic-bezier(.22, .61, .36, 1);
  transition: all 0.8s 0.35s cubic-bezier(.22, .61, .36, 1);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.thim4.ani1 {
  opacity: 1;
  -webkit-transition: all 0.8s 0.4s cubic-bezier(.22, .61, .36, 1);
  transition: all 0.8s 0.4s cubic-bezier(.22, .61, .36, 1);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.thim.ani1.ani1fin,
.thim2.ani1.ani1fin,
.thim4.ani1.ani1fin,
.thim3.ani1.ani1fin {
  opacity: 1;
  -webkit-transition: all 0s 0s cubic-bezier(.22, .61, .36, 1);
  transition: all 0s 0s cubic-bezier(.22, .61, .36, 1);

}

#w0 .mainimg {
  width: 100%;
}

#w0 .mainimg .bg {
  display: block;
  vertical-align: bottom;
  width: 100%;
}

#w0 .mainimg ul,
#w0 .mainimg ul li {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
}

#w0 .mainimg ul li h3 {
  position: absolute;
  right: 15px;
  bottom: 15px;
  margin: 0;
  padding: 0;
  line-height: 1em;
  z-index: 10;
  font-size: 30px;
  color: #ffffff;
  text-shadow: 0 0 2px rgba(50, 50, 50, 0.9);
}

#w0 .mainimg ul li img {
  display: block;
  vertical-align: bottom;
  width: 100%;
}

#w0 .mainimg .mainc3 {
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  left: 0px;
  top: 50%;
  z-index: 3;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  z-index: 7;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #ffffff;
}

#w0 .mainimg .mainc3 img {
  display: block;
  vertical-align: bottom;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

#w0 .mainimg ul li {
  opacity: 0;
  -webkit-transition: opacity 3s, transform 10s;
  -moz-transition: opacity 3s, transform 10s;
  -o-transition: opacity 3s, transform 10s;
  transition: opacity 3s, transform 10s;
  z-index: 2;
  overflow: hidden;
}

#w0 .mainimg ul li img {

  transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -webkit-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -webkit-transition: transform 10s 1s;
  -moz-transition: transform 10s 1s;
  -o-transition: transform 10s 1s;
  transition: transform 10s 1s;
}

#w0 .mainimg ul li.s4 img,
#w0 .mainimg ul li.s2 img {
  transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
}

#w0 .mainimg.s4 ul li.s4,
#w0 .mainimg.s3 ul li.s3,
#w0 .mainimg.s2 ul li.s2,
#w0 .mainimg.s1 ul li.s1 {
  opacity: 1;
  z-index: 6;

}

#w0 .mainimg.s1.s3 ul li.s3 {
  z-index: 2;
}

#w0 .mainimg.s1.s4 ul li.s4 {
  z-index: 2;
}

#w0 .mainimg.s4 ul li.s4 img,
#w0 .mainimg.s3 ul li.s3 img,
#w0 .mainimg.s2 ul li.s2 img,
#w0 .mainimg.s1 ul li.s1 img {
  transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);

}

#w0 .mainimg.s4 ul li.s4 img,
#w0 .mainimg.s2 ul li.s2 img {
  transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -webkit-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
}

#w0 .mainimg video {
  display: block;
  z-index: 1;
  position: absolute;
  width: 110%;
  height: auto;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

#w0 .sec1 .h2 {
  width: 100%;
  position: relative;
  margin: 0.83em 0;
  margin-bottom: 30px;
  font-size: 1.5em;
}

#w0 .sec1 .h2::after {
  content: "";
  width: 100%;
  height: 8px;
  position: absolute;
  background-size: cover;
  background-position: center center;
  background-image: url('/assets/images/original/fudosan_toushi-wellsquare_plaza-bg_01.png');
  left: 0;
  bottom: -5px;
}

#w0 .sec1 .h2 img {
  height: 40px;
}

#w0 .sec1 .ctt1c {
  margin-top: 40px;
  position: relative;
  margin-bottom: 60px;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

}

#w0 .sec1 .ctt1c li {
  width: 31%;
  margin-right: 2%;
  margin-left: 2%;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}

#w0 .sec2 {
  position: relative;
  box-sizing: border-box;
  width: 95%;
  max-width: 1024px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 40px;
  padding-bottom: 40px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

#w0 .sec2 .ctit {
  background-color: #5081A5;
  text-align: center;
}

#w0 .sec2 p.lead .rub {
  position: absolute;
  left: 0;
  top: -5px;
  letter-spacing: 8px;

}

#w0 .sec2 p.lead.ctitp {
  margin-bottom: 40px;
  margin-top: 20px;
}

#w0 .sec2 .ctiti {
  position: relative;
  margin-bottom: 40px;
}

#w0 .sec2 .ctiti img {
  display: block;
  vertical-align: bottom;
  width: 100%;

}

#w0 .sec2 .ctit img {
  display: block;
  vertical-align: bottom;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

#w0 .sec1 .ctt1c li a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 7;
}

#w0 .sec1 .ctt1c li .h4 {
  text-align: center;
  color: #000;
  font-size: 1em;
  margin: 1.33em 0;
}

#w0 .sec1 .ctt1c li .h4 p {
  color: #000;
  text-align: center;
}

#w0 .sec1 .ctt1c li.dis {
  pointer-events: none;

}

#w0 .sec1 .ctt1c li.dis figure {
  opacity: 0.2;
}

#w0 .sec1 .ctt1c li figure img.bg {
  display: block;
  vertical-align: bottom;
  width: 100%;
}

#w0 .sec1 .ctt1c li figure p {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  max-width: 160px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 5;
}

#w0 .sec1 .ctt1c li figure div {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;

  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  z-index: 3;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#w0 .sec1 .ctt1c li:hover figure div {
  background-color: rgba(191, 37, 60, 0.5);
}

#w0 .sec1 .ctt1c li.dis figure div {
  background-color: rgba(0, 0, 0, 0.3);
}

#w0 .sec1 .ctt1c li p img {
  display: block;
  vertical-align: bottom;
  width: 100%;
}

#w0 .sec1 .ctt1c li:hover figure div::before {
  border: 12px solid #F4B9C2;
}

#w0 .sec1 .ctt1c li .h5 {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 50%;
  top: 25%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 8;
  font-size: 22px;
  margin: 1.67em 0;
}

#w0 .sec1 .ctt1c li figure div::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 12px solid #D9D9D9;
  content: "";
  z-index: 3;
  box-sizing: border-box;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#w0 .sec1 .ctt1c li.s1 figure::after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-size: cover;
  background-position: center center;
  background-image: url('/assets/images/original/fudosan_toushi-wellsquare_plaza-cti_01.png');
}

#w0 .sec1 .ctt1c li.s2 figure::after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-size: cover;
  background-position: center center;
  background-image: url('/assets/images/original/fudosan_toushi-wellsquare_plaza-cti_02.png');
}

#w0 .sec1 .ctt1c li.s3 figure::after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-size: cover;
  background-position: center center;
  background-image: url('/assets/images/original/fudosan_toushi-wellsquare_plaza-cti_03.png');
}

#w0 .sec1 .ctt1c li figure {
  position: relative;


}

#w0 .sec1 .simg {
  position: relative;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

#w0 .sec1 .simg li {
  width: 23.5%;
  float: left;
  margin-right: 2%;
  position: relative;
}

#w0 .sec1 .simg li:nth-child(2n) {
  margin-top: 15vh;
}

#w0 .sec1 .simg li p.note {
  position: absolute;
  right: 5px;
  bottom: 5px;
  color: #ffffff;
}

#w0 .sec1 .simg li img {
  display: block;
  vertical-align: bottom;
  width: 100%;
}

#w0 .sec1 .simg li:last-child {
  margin-right: 0;
}

#w0 .sec1 .sec1a {
  background-color: #FEF6F1;
  border: 4px solid #d91730;
  position: relative;
  box-sizing: border-box;
  padding: 40px;
  margin-bottom: 50px;
}

#w0 .sec1 .sec1a .h3 {
  font-size: 20px;
  margin-top: 0;
}

#w0 .sec1 .sec1a .fig {
  width: 24%;
  max-width: 180px;
  float: left;
  margin-right: 20px;
}

#w0 .sec1 .sec1a::after {
  content: "";
  position: absolute;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  left: 5px;
  top: 5px;
  border: 1px solid #d91730;
}

#w0 .sec2 .h2 {
  background-color: #888888;
  border-left: 10px solid #5081A5;
  box-sizing: border-box;
  padding-left: 24px;
  color: #ffffff;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 1.5em;
  margin: 0.83em 0;
}

#w0 .sec2 .rimg {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

#w0 .sec2 .rimg li {
  width: 23.5%;
  float: left;
  margin-right: 2%;
  position: relative;
  background-color: #EDEDED;
  padding-bottom: 20px;
}

#w0 .sec2 .rimg li .info {
  position: relative;
  box-sizing: border-box;
  padding: 10px;
}

#w0 .sec2 .rimg li .info .h3 {
  margin: 1.33em 0;
  margin-top: 0;
  font-size: 16px;
}

#w0 .sec2 .rimg li .info dl dt {
  float: left;
  vertical-align: top;
  width: 70px;
  font-size: 14px;
}

#w0 .sec2 .rimg li .info dl dd {
  width: calc(100% - 70px);
  float: left;
  vertical-align: top;
  font-size: 14px;
}

#w0 .sec2 .rimg li img {
  display: block;
  vertical-align: bottom;
  width: 100%;
  margin-bottom: 10px;
}

#w0 .sec2 .rimg li:last-child {
  margin-right: 0;
}

#w0 .secc .h2 {
  font-family: "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", 'Hiragino Kaku Gothic ProN', Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 22px;
  position: relative;
}

#w0 .secc .h2 span {
  background-color: #ffffff;
  z-index: 2;
  position: relative;
}

#w0 .secc .h2::before {
  width: 100%;
  height: 1px;
  content: "";
  left: 0;
  top: 50%;
  position: absolute;
  background-color: #000;
}

#w0 .contact {
  width: 38%;
  height: 50px;
  font-size: 14px;
  line-height: 50px;
  text-align: center;
  float: right;
  display: block;
  background: linear-gradient(90deg, #00AEEF 0%, #5081A5 100%);
  color: #fff;
  position: relative;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#w0 .contact:hover {
  opacity: 0.7;
}

#w0 .contact::after {
  position: absolute;
  top: 0;
  bottom: 0;

  margin: auto;
  content: "";
  vertical-align: middle;
  right: 14px;
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  border: 8px solid transparent;
  border-left: 8px solid #fff;
}

#w0 .secc {
  position: relative;
  padding-bottom: 20px;
}

#w0 .secc dl {
  width: 60%;
  float: left;
  position: relative;
}

#w0 .secc dl dd {
  width: 50%;
  float: left;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
}

#w0 .secc dl dt {
  width: 50%;
  float: left;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
}

#w0 .secc dl dt a {

  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

#w0 .secc dl dt a img {
  display: block;
  vertical-align: bottom;
  width: 100%;
}

#w0 .secc dl dt {}

#w0 .secc dl dd img {
  width: 100%;
  max-width: 360px;
  padding-right: 10px;
  box-sizing: border-box;
}

@media screen and (max-width: 1400px) {}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 960px) {}

@media screen and (max-width: 860px) {}

@media screen and (max-width: 800px) {}

@media screen and (max-width: 768px) {
  ._sp760 {
    display: block !important;
  }

  ._pc760 {
    display: none !important;
  }
}

@media screen and (max-width: 700px) {}

@media screen and (max-width: 640px) {
  ._sp640 {
    display: block !important;
  }

  ._pc640 {
    display: none !important;
  }
}

@media screen and (max-width: 584px) {
  #w0 .contact {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    float: none;
    margin-top: 20px;
  }

  #w0 .secc dl {

    width: 100%;
    float: none;
    position: relative;
  }

  #w0 .secc dl dt a {
    margin-top: 10px;
    max-width: 300px;
  }

  @media (aspect-ratio: 16 / 9),
  (min-aspect-ratio: 16 / 9) {
    #w0 .mainimg video {
      width: 110%;
      height: auto;
      /*top: 50%;*/
      /*transform: translateY(-50%);*/
    }
  }

  @media (max-aspect-ratio: 16 / 9) {
    #w0 .mainimg video {
      height: 110%;
      width: auto;
      /*left: 50%;*/
      /*transform: translateX(-50%);*/
    }
  }

  #w0 .sec1 .ctt1c li .h5 {
    margin: 0;
    position: absolute;
    width: 50%;
    text-align: left;
    left: 5%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 8;
    font-size: 18px;
  }

  #w0 .sec1 .ctt1c li {
    margin: 0;
    width: 100%;
  }

  #w0 .sec1 .ctt1c li figure {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
  }

  #w0 .sec1 .ctt1c li figure div::before {
    border: 6px solid #D9D9D9;
  }

  #w0 .sec1 .ctt1c li:hover figure div::before {
    border: 6px solid #F4B9C2;
  }

  #w0 .sec1 .ctt1c li .h4 {
    width: 48%;
    display: inline-block;
    vertical-align: middle;
  }

  #w0 section .secin {
    width: 100%;

    padding-top: 20px;
    padding-bottom: 20px;

  }

  #w0 .mainimg .bg._sp,
  #w0 .mainimg ul li img._sp {
    display: block !important;
  }

  #w0 .mainimg ul li h3 {
    font-size: 20px;
  }

  #w0 .sec1 .simg {
    padding-top: 20px;
    padding-bottom: 40px;
    margin-bottom: 50px;
  }

  #w0 .sec1 .simg li {
    width: 49%;
    float: left;
    margin-right: 2%;
    position: relative;
    margin-bottom: 10px;
  }

  #w0 .sec1 .simg li:nth-child(2n) {
    margin-right: 0;
    margin-top: 0;
    -webkit-transform: translateY(25%);
    -moz-transform: translateY(25%);
    -ms-transform: translateY(25%);
    transform: translateY(25%);
  }

  #w0 .sec1 .sec1a .fig {
    width: 30%;
    max-width: 180px;
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }

  #w0 .sec1 .sec1a .h3 {
    font-size: 18px;
    margin-top: 0;
    text-align: center;
    margin-bottom: 10px;
  }

  #w0 .sec1 .sec1a {
    padding: 20px;

  }

  #w0 .sec1 .h2 img {
    height: 24px;
  }

  .secin p.lead {
    font-size: 18px;
    line-height: 34px;
    text-align: left;
  }

  #w0 .sec2 .rimg li .info .h3 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  #w0 .sec2 .h2 {
    font-size: 18px;
    padding-left: 14px;
  }

  #w0 .sec2 .rimg li {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 0.83em;
  }
  #w0 .sec2 .rimg li:last-child {
    margin-bottom: 0;
  }

  #w0 .secc dl {
    display: block;
  }

  #w0 .secc dl dd,
  #w0 .secc dl dt {
    display: block;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
  }

  #w0 .secc dl dd img {
    padding-right: 0px;
  }

  #w0 .secc .h2 {
    text-align: center;
  }

  #w0 .secc .h2 span {
    padding-left: 5px;
    padding-right: 5px;
    display: inline-block;
  }

  #w0 .brandbann {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  header {
    position: relative;
    left: auto;
    top: auto;
  }

  section .secin {
    padding-top: 20px;
    padding-bottom: 20px;

  }

  .mb100 {
    margin-bottom: 50px;
  }
  ._sp,
  ._sp560 {
    display: block !important;
  }
  ._pc,
  ._pc560 {
    display: none !important;
  }
}

@media screen and (max-width: 490px) {}

@media screen and (max-width: 468px) {
  ._sp460 {
    display: block !important;
  }
  ._pc460 {
    display: none !important;
  }
}

@media screen and (max-width: 390px) {
  ._sp360 {
    display: block !important;
  }
  ._pc360 {
    display: none !important;
  }
}

@media screen and (max-width: 360px) {}

@media screen and (max-width: 330px) {}

@media print {
  #w0 {
    padding: 0;
    margin: 0;
  }
  section .secin {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .hhemu0,
  .reqbtn2,
  .reqbtn,
  #wrpG,
  nav,
  header,
  .tlink,
  .stab2,
  .hmenu4,
  .hmenu3,
  .hmenu2,
  .hmenu {
    display: none;
  }
}

/* 210929 ウェルスアドバイザリー導線追加 */
#w0 .s-other-service_wrap {
  max-width: 1024px;
  margin: 0 auto 56px;
  padding: 0 10px;
}

#w0 .s-other-service_wrap .s-other-service_ttl {
  width: 100%;
  height: auto;
  margin: 0 auto 24px;
  line-height: 1.3;
  position: relative;
  text-align: left;
  z-index: 1;
  letter-spacing: 0;
  font-family: "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", 'Hiragino Kaku Gothic ProN', Meiryo, "ＭＳ ゴシック", sans-serif;
  ;
}

#w0 .s-other-service_wrap .s-other-service_ttl span {
  display: inline-block;
  padding: 0 10px 0 0;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  background: #fff;
}

#w0 .s-other-service_wrap .s-other-service_ttl:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: #000;
  position: absolute;
  left: 0;
  top: 7px;
  z-index: -1;
}

#w0 .s-other-service_wrap .s-other-service_link {
  display: flex;
  align-items: center;
  width: 100%;
  color: #fff;
  margin-bottom: 24px;
  padding: 16px;
  background-image: url('/assets/images/original/fudosan_toushi-wellsquare_plaza-bg-top.jpg');
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
}

#w0 .s-other-service_wrap .s-other-service_link_txt_l {
  width: 70%;
}

#w0 .s-other-service_wrap .s-other-service_link_txt_r {
  width: 30%;
}

#w0 .s-other-service_link_txt_bold {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 4px;
  color: #fff;
}

#w0 .s-other-service_wrap .s-other-service_link_txt_sub {
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
}

#w0 .s-other-service_wrap .s-other-service_link_more {
  position: relative;
  font-size: 14px;
  text-align: right !important;
  line-height: 1.4;
  padding-right: 32px;
  letter-spacing: 2px;
}

#w0 .s-other-service_wrap .s-other-service_link_more:after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  right: 0;
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  border: 8px solid transparent;
  border-left: 8px solid #fff;
}

#w0 .s-other-service_wrap .s-other-service_info_wrap {
  display: flex;
  justify-content: space-between;
}

#w0 .s-other-service_wrap .s-other-service_info_item {
  width: 49%;
  background-color: #f5f9ff;
  padding: 24px;
  box-sizing: border-box;
}

#w0 .s-other-service_wrap .s-other-service_info_ttl {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 16px;
}

#w0 .s-other-service_wrap .s-other-service_info_txt {
  font-size: 11px;
  line-height: 1.8;
}

#w0 .s-other-service_wrap .s-other-service_br_sp {
  display: none !important;
}

@media only screen and (max-width:768px) {
  #w0 .s-other-service_wrap {
    margin: 56px 0 0 0;
    padding: 0 10px;
  }

  #w0 .s-other-service_wrap .s-other-service_link {
    flex-direction: column;
    margin-bottom: 16px;
  }

  #w0 .s-other-service_wrap .s-other-service_link_txt_l {
    width: 100%;
    margin-bottom: 8px;
  }

  #w0 .s-other-service_wrap .s-other-service_link_txt_r {
    width: 100%;
  }

  #w0 .s-other-service_wrap .s-other-service_link_more {
    text-align: left !important;
  }

  #w0 .s-other-service_wrap .s-other-service_link_more:after {
    right: initial;
    margin-left: 24px;
  }

  #w0 .s-other-service_wrap .s-other-service_info_wrap {
    flex-direction: column;
  }

  #w0 .s-other-service_wrap .s-other-service_info_item {
    width: 100%;
    margin-bottom: 16px;
  }

  #w0 .s-other-service_wrap .s-other-service_info_item:last-child {
    margin-bottom: 0;
  }

  #w0 .s-other-service_wrap .s-other-service_br_sp {
    display: block !important;
  }

}
