body {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

/* header */


a {
  text-decoration: none;
}

header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
header .inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.scroll-header{
  background: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  color: #333;
}

.scroll-header .list_link{
  color: #333;
}
.scroll-header .logo a{
  color: #333;
}

.scroll-header .list .list_link::before{
  color: #333;
}

/* .logo */

header .logo {
font-size: 30px;
}
header .logo a {
  font-weight: bold;
  padding-left: 20px;
}

header .logo a:hover {
  color: #fff;
}

.slick-next,
.slick-arrow {
  display: none;
}

@media screen and (max-width: 767px) {
  header .logo {
    padding: 0;
    font-size: 20px;
  }
}

/* scroll */

header {
  transition: height 0.4s cubic-bezier(0.34, 0.615, 0.4, 0.985);
}
header.scroll {
  height: 60px;
  position: fixed;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
header .logo {
  transition: width 0.4s cubic-bezier(0.34, 0.615, 0.4, 0.985);
}
header.scroll .logo {
  width: 70px;
}

/* header-navi-box */

header .navi {
  margin: 0 0 0 auto;
  padding: 0;
  font-size: 20px;
  display: flex;
  align-items: center;
  list-style: none;
}
header .navi li {
  margin-left: 40px;
}
header .navi li:first-child {
  margin-left: 0;
}
header .navi li a {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  position: relative;
  width: 100%;
}
.list {
  cursor: pointer;
  padding: 25px 0px;
}

.list .list_link::before {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 600;
  position: absolute;
  color: #FFF;
  left: 50%;
  transform: translateX(-50%);
  bottom: -85%;
}
header .navi li a:hover {
  color: #333;
}
.button{
  background: #005eed;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 4px;
}

.header-mail {
  margin: 0;
  position: relative;
  margin-left: 25px;
}
.header-mail i {
  position: absolute;
  top: 50%;
  right: 50%;
  color: #fff;
  transform: translateY(-100%) translateX(32%);
}
.header-mail a {
  background: #333;
  color: #FFF;
  height: 75px;
  line-height: 75px;
  padding: 8px 26px;
  display: block;
}

@media screen and (max-width: 767px) {
  header .navi {
    display: none;
  }
  .header-mail {
    display: none;
  }
}
@media screen and (min-width: 767px) {
  .openbtn1 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  header {
    height: 70px;
  }
}

/* open-button */


#g-nav{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top:70px;
  right: -120%;
  width:100%;
  height: 45vh;/*ナビの高さ*/
  background:#fff;
  /*動き*/
  transition: all 0.6s;
  opacity: 0;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
  right: 0;
  opacity: 1;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 45vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 54%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  padding: 0;
  background: #fff;
}


.sp_nav_mail a {
  background: #333;
  color: #fff;
  position: relative;
}
.sp_nav_mail a i {
padding-right: 10px;
}


/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
  text-align: center;
  font-size: 30px;
  line-height: 82px;
}

#g-nav li a{
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 20px;
}

.nav_mail {
  background: #333;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
top:10px;
right: 10px;
cursor: pointer;
  width: 50px;
  height:50px;
}

/*×に変化*/  
.openbtn1 span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
background-color: #fff;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
top:15px; 
}

.openbtn1 span:nth-of-type(2) {
top:23px;
}

.openbtn1 span:nth-of-type(3) {
top:31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  background: #333;
}

.openbtn1.active span:nth-of-type(2) {
opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  background: #333;
}


/*========= SP ハンバーガーメニュー===============*/

.dropdown__lists {
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
}

.gnavi__list01:hover .dropdown__lists {
  display: block;/*Gナビメニューにホバーしたら表示*/
}

.dropdown__list {
  background-color: #004d80;
  height: 60px;
  transition: all .3s;
  position: relative;
}
.dropdown__list:not(:first-child)::before{
  content: "";
  width: 100%;
  height: 1px;
  background-color: #3492d1;
  position: absolute;
  top: 0;
  left: 0;
}
.dropdown__list:hover {
  background-color: #003558;
}
.dropdown__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.dropdown__list a::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
}

.dropdown__lists {
  visibility: hidden;/*デフォルトでは非表示の状態にしておく*/
  opacity: 0;/*不透明度0*/
  transition: all .3s;/*表示の変化を0.3秒に指定*/
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
}
.gnavi__list01:hover .dropdown__lists {
  visibility: visible;/*Gナビメニューにホバーしたら表示*/
  opacity: 1;/*不透明度1*/
}

.dropdown__lists {
  transform: scaleY(0);/*デフォルトでは非表示の状態にしておく*/
  transform-origin: center top;/*変形を適応する基準をtopとする*/
  transition: all .3s;/*表示の変化を0.3秒に指定*/
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
}
.gnavi__list01:hover .dropdown__lists {
  transform: scaleY(1);/*Gナビメニューにホバーしたら表示*/
}

/*========= レイアウトのためのCSS ===============*/


small{
color:#fff;
display: block;
text-align: center;
}


body {
  margin: 0;
  padding: 0;
}

a{
  color: #fff;
}

.list_sub li a span {
  display: block;
  position: absolute;
  background: #aaa;
  width: 100%;
  transform: translateY(-500px);
  transition: .5s;
  z-index: -3;
}

.drop_down_img img {
 width: 100%;
}

.drop_down_img {
 max-width: 35%;
}

.list_sub.open{
  display: -webkit-inline-box;
  position: absolute;
  background: #592902;
  top: 75px;
  left: 0px;
  animation: appear .2s ease;
}
@keyframes appear {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

.list_sub{
  display: none;
  position: absolute;
  top: 0px;
}

li {
  list-style: none;
}

.list_submenu {
  max-width: 30%;
  align-items: center;
}

.list_subtext {
  padding: 68px 20px;
  width: 25%;
}

.spacer {
  width: 100%;
}

.list_list {
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 75%;
  background: #fff;
}

.drop_down_text {
  color: #333;
  padding-left: 25px;
  width: 100%;
}
.drop_down_text p {
  font-weight: bold;
}
.drop_down_text a {
  background: #592902;
  color: #fff;
  border-radius: 11px;
  padding: 8px 10px;
}
.drop_down_text a:hover {
  background: rgba(89, 41, 2,0.4);
  color: #fff;
}


.list_subtext h2 {
  color: #fff;
  font-size: 30px;
  text-align: inherit;
}

.list_subtext h2 span {
  color: #f2a2a2;
  display: block;
  padding-bottom: 20px;
  font-size: 0.7em;
  letter-spacing: 1px;
}

.list_subtext p {
  color: #fff;
  font-size: 0.8em;
  padding-top: 20px;
  letter-spacing: 0.9px;
}

.drop_down_img2{
 max-width: 50%;
}

.list_submenu2 {
  max-width: 45%;
}

.mv-visual {
  width: 100%;
  position: relative;
}
.mv-visual img {
  width: 100%;
  object-fit: cover;
  height: calc(100vw - 200px);
}

.mv-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.mv_under {
  text-align: center;
}

.mv_text p {
  color: #da6565;;
}

.mv_img01 {
  background: url(../img/sp_mv_img01.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
  height: 330px;
}
.mv_img01::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.mv_img02 {
  background: url(../img/sp_mv_img02.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
  height: 330px;
}
.mv_img02::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.mv_img03 {
  background: url(../img/sp_mv_img03.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
  height: 330px;
}
.mv_img03::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.mv_img04 {
  background: url(../img/sp_mv_img04.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
  height: 330px;
}
.mv_img04::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.mv_img ul{
  padding: 10px 0;
}
.mv_img ul li{
  padding: 0;
  position: relative;
}
.mv_img ul li h3 {
  text-shadow: 1px 2px 3px #111;
  font-size: 19px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
  z-index: 1;
}
.caption {
  font-size:		80%;
  text-align: 		center;
  color:			#fff;
  padding: 20px 20px;
}

.mask {
  width:			100%;
  height:			100%;
  position:		absolute;
  top:			0;
  left:			0;
  opacity:		0;	/* マスクを表示しない */
  background-color:	rgba(0,0,0,0.7);
  -webkit-transition:	all 0.6s ease;
  transition:		all 0.6s ease;
}

.mv_img01:hover .mask {
  opacity:		1;	/* マスクを表示する */
  padding-top:		80px;	/* ホバーで下にずらす */
  z-index: 1;
}
.mv_img02:hover .mask {
  opacity:		1;	/* マスクを表示する */
  padding-top:		80px;	/* ホバーで下にずらす */
  z-index: 1;
}
.mv_img03:hover .mask {
  opacity:		1;	/* マスクを表示する */
  padding-top:		80px;	/* ホバーで下にずらす */
  z-index: 1;
}
.mv_img04:hover .mask {
  opacity:		1;	/* マスクを表示する */
  padding-top:		80px;	/* ホバーで下にずらす */
  z-index: 1;
}

.mv_under {
  padding: 60px 0;
}

.mv-text {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
text-align: center;
}

.mv-text h2 {
  font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  color: #fff;
 font-weight: 600;
}

.mv-text h2 span {
  color: #fff;
  font-size: 200%;
  line-height: 1.5em;
  letter-spacing: 0.2em;
}

.mv-text p {
  color: #fff;
  font-size: 30px;
}
.mv_under_text p {
  color: #da6565;
}


.img_wrap {
  background: url(../img/buy_sale01.jpg) top left no-repeat;
  background-size: cover;
  overflow: hidden;
  width: 50%;
  height: 400px;
  position: relative;
  color: #fff;
}

.img_wrap::after,
.img_wrap2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.img_wrap h2,
.img_wrap2 h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-80%);
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 40px;
  z-index: 1;
}
.img_wrap p,
.img_wrap2 p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(80%);
}

.img_wrap2 {
  background: url(../img/buy_sale02.jpg) top left no-repeat;
  background-size: cover;
  overflow: hidden;
  width: 50%;
  height: 385px;
  position: relative;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .mv-visual img {
  height: 623px;
  }

  .mv-text {
    width: 70%;
    top:30%;
  }

  .mv-text h2 span {
    font-size: 37px;
  }

  .mv_under {
    text-align: center;
  }

  .mv-text p {
    font-size: 20px;
  }

  .mv_img01 {
    background: url(../img/sp_mv_img01.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
    height: 250px;
  }
  .mv_img02 {
    background: url(../img/sp_mv_img02.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
    height: 250px;
  }
  .mv_img03 {
    background: url(../img/sp_mv_img03.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
    height: 250px;
  }
  .mv_img04 {
    background: url(../img/sp_mv_img04.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
    height: 250px;
  }

  .mv_img ul{
    padding: 10px 0;
  }
  .mv_img ul li{
    padding: 0;
    position: relative;
  }
  .mv_img ul li h3 {
    text-shadow: 1px 2px 3px #111;
    font-size: 19px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
  }
  .caption {
    font-size:		80%;
    text-align: 		center;
    color:			#fff;
    padding: 20px 20px;
  }

  .mask {
    width:			100%;
    height:			100%;
    position:		absolute;
    top:			0;
    left:			0;
    opacity:		0;	/* マスクを表示しない */
    background-color:	rgba(0,0,0,0.7);
    -webkit-transition:	all 0.6s ease;
    transition:		all 0.6s ease;
  }
  .sp_mv_img01:hover .mask {
    opacity:		1;	/* マスクを表示する */
    padding-top:		80px;	/* ホバーで下にずらす */
  }
  
}

.sec01 {
  padding: 60px 0;
}

.buy_sell {
  background: #ece9e7;
  margin-top: 45px;
  padding: 60px;
}
.buy_sell h2 {
  font-size: 22px;
}
.buy_sell p {
  font-size: 15px;
  letter-spacing: 1px;
  padding: 30px 0;
}
.buy_sell a {
  background: #d74c4c;
  display: block;
  text-align: center;
  width: 70%;
  margin: 0 auto;
  padding: 13px;
  border-radius: 25px;
  transition: 0.3s;
}
.buy_sell a:hover {
  background: #d74c4c;
  color: #fff;
  opacity: 0.7;
}

.sec01_buy {
  padding-top: 70px;
}

.difference_img01 {
border-top-left-radius: 30px;
border-top-right-radius: 30px;
position: relative;
background-image: url(../img/difference_img01.jpg);
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
width: 100%;
min-height: 300px;
overflow: hidden;
}
.difference_img02 {
border-top-left-radius: 30px;
border-top-right-radius: 30px;
position: relative;
background-image: url(../img/difference_img02.jpg);
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
width: 100%;
min-height: 300px;
overflow: hidden;
}
.difference_img03 {
border-top-left-radius: 30px;
border-top-right-radius: 30px;
position: relative;
background-image: url(../img/difference_img03.jpg);
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
width: 100%;
min-height: 300px;
overflow: hidden;
}

@media screen and (max-width: 767px) {
  .img_wrap,
  .img_wrap2 {
    width: 100%;
    height: 240px;
  }
  .buy_sell {
    background: #ece9e7;
    padding: 30px 40px;
    text-align: center;
    margin: 0;
 }
 .buy_sell p {
  text-align: initial;
}
 .buy_sell h2 {
  font-size: 21px;
}
 .buy_sell a {
  text-align: center;
  width: 90%;
  padding: 10px;
}

}
.sec02 {
  padding: 60px 0;
}

.sec_head {
  padding-bottom: 40px;
}
.sec_head h2 {
  text-align: center;
  position: relative;
}
.sec_head h2::after {
  content: "";
  border-top: 1px solid #d2d2d2;
  display: block;
  position: absolute;
  width: 265px;
  top: 45%;
  left: 6%;

}
.sec_head h2::before {
  content: "";
  border-top: 1px solid #d2d2d2;
  display: block;
  position: absolute;
  width: 280px;
  top: 45%;
  right: 6%;
}

.sec_head p {
  text-align: center;
  color: #d74c4c;
}

.difference_text01,
.difference_text02,
.difference_text03
 {
  position: relative;
}

.difference_text01::after {
  font-family: 'Fredoka One', cursive;
  content: "01";
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  color: #FFF;
  font-weight: 600;
  font-size: 60px;
  text-shadow: 1px 1px 2px #5b3623, 1px 1px 2px #5b3623, 1px 1px 2px #5b3623;
}
.difference_text02::after {
  font-family: 'Fredoka One', cursive;
  content: "02";
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  color: #FFF;
  font-weight: 600;
  font-size: 60px;
  text-shadow: 1px 1px 2px #5b3623, 1px 1px 2px #5b3623, 1px 1px 2px #5b3623;
}
.difference_text03::after {
  font-family: 'Fredoka One', cursive;
  content: "03";
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  color: #FFF;
  font-weight: 600;
  font-size: 60px;
  text-shadow: 1px 1px 2px #5b3623, 1px 1px 2px #5b3623, 1px 1px 2px #5b3623;
}

.difference_text01, 
.difference_text02, 
.difference_text03 {
  padding: 24px 16px;
  background: #f4f4f4;
  position: relative;
  min-height: 300px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.difference_text01 h2, 
.difference_text02 h2, 
.difference_text03 h2{
  padding-top: 15px;
  text-align: center;
  font-size: 22px;
  color: #5b3623;
}
.difference_text01 p, 
.difference_text02 p, 
.difference_text03 p{
  letter-spacing: 1px;
  padding-top: 10px;
  letter-spacing: 1px;
  padding-top: 10px;
}

@media screen and (max-width: 767px) {
.sec02 {
  padding: 0;
  }
  .sec_head h2::before, 
  .sec_head h2::after {
    display: none;
  }
  .difference_text01,
  .difference_text02,
  .difference_text03 {
    margin-bottom: 20px;
    min-height: 240px;
}
.slick-prev {
  z-index: 999;
}
.property_btn {
  width: 90%;
}
}

.sec03 {
  background: #FEFAE7;
  padding: 60px 0;
}

.property_img {
  max-width: 100%;
  padding: 20px;
}
.property_img img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.btn{
background: #592902;
display: block;
text-align: center;
width: 80%;
margin: 0 auto;
padding: 15px;
border-radius: 25px;
transition: 0.3s;
color: #FFF;
margin-bottom: 10px;
}

.btn:hover {
  background: #592902;
  color: #fff;
  opacity: 0.7;
}

.property_list {
  margin: 20px 0;
}

.property_inne{
  padding: 15px;
}
.property_inne_wrap {
  background: #fff;
  padding: 15px;
}

.property_list h2{
  font-size: 19px;
  color: #592902;
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 10px;
  display: block;
  height: 50px;
  text-align: center;
}

.property_feature {
  border-bottom: 1px solid #d2d2d2;
  border-top: 1px solid #d2d2d2;
}
.property_feature p {
    margin: 10px 0;
    background: #da6565;
    display: inline-block;
    color: #fff;
    padding: 5px;
    font-size: 13px;
}

.price {
  color: #da6565;
  text-align: center;
  padding: 20px 0;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.property_btn {
  width: 30%;
  margin: 0 auto;
  padding: 20px 0;
}
.property_btn a {
  background: #d74c4c;
}

@media screen and (max-width: 767px) {
    .property_btn {
    width: 90%;
}
}

.footer_top {
  padding: 60px 0;
}

.footer_inner {
  border: 3px solid #da6565;
  padding: 50px 0;
  justify-content: center;
}

.footer_tel p {
  padding-bottom: 3px;
  font-size: 20px;
  font-weight: 600;
}

.footer_tel h3 {
  font-size: 50px;
}
.footer_tel h3 i {
  color: #da6565;
  padding: 0px 10px;
  font-size: 30px;
}

.footer_mail p {
  font-size: 20px;
  font-weight: 600;
}
.footer_mail {
  transition: 0.8s;
  background: #da6565;
}
.footer_mail a {
  display: block;
  padding: 20px;
  color: #fff;
}
.footer_mail:hover {
  background: #d74c4c;
  opacity: 0.7;
}

.footer_main {
background: url(../img/footer.jpg) top left no-repeat;
background-size: cover;
position: relative;
height: 450px;
}

.footer_main_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.footer_left {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}
.footer_left a span {
  font-size: 20px;
  padding-right: 10px;
}
.footer_left p {
  font-size: 17px;
  padding-top: 25px;
  line-height: 1.8em;
  font-weight: 400;
}

.footer_main_articl{
  justify-content: space-between;
} 

.footer_ul01 ul li,
.footer_ul02 ul li{
  padding: 5px 0px;
  position: relative;
}
.footer_ul01 ul li a:hover,
.footer_ul02 ul li a:hover {
color: #FFF;
opacity: 0.6;
}

.footer_ul01 ul li::before{
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent #ffffff;
  vertical-align: middle;
  margin: 0 6px 2px 0;
}
.footer_ul02 ul li::before{
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent #ffffff;
  vertical-align: middle;
  margin: 0 6px 2px 0;
}

.copyright {
  margin: 0;
  font-size: 13px;
}

@media screen and (max-width: 767px) {
.footer_top_container{
  padding: 0px 40px;
}
.footer_inner {
  padding: 10px 0px;
}
.footer_tel h3 {
  font-size: 40px;
}

.footer_tel p {
  font-size: 20px;
  margin: 0;
}

.footer_mail p {
  margin: 10px;
}
.footer_mail a {
  padding: 12px;
  width: 72%;
  margin: 0 auto;
}

.footer_left a span {
  font-size: 15px;
}

.footer_left p {
  font-size: 14px;
  padding: 15px;
}
.footer_ul01 ul li, .footer_ul02 ul li {
  padding: 1px 0px;
}
}

.mv-visyual slick-prev,
.mv-visyual slick-arrow {
  display: none !important;
}

.footer_left a:hover {
 color:rgba(255,255,255,0.2);
}

/*下層ページ*/


.page_title {
  padding-top: 75px;
}

.page_under {
  padding: 50px 0;
}

.header-under {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header-under .inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.header-under .logo {
font-size: 30px;
}
.header-under .logo a {
  font-weight: bold;
  padding-left: 20px;
  color: #333;
  font-size: 25px;
}
.header-under .logo a:hover {
  color: #333;
}

@media screen and (max-width: 767px) {
  .header-under .logo {
    padding: 0;
    font-size: 20px;
  }
}

.header-under {
  transition: height 0.4s cubic-bezier(0.34, 0.615, 0.4, 0.985);
  background-color: rgba(255, 255, 255, 0.7);
}
.header-under.scroll {
  height: 60px;
  position: fixed;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.header-under .logo {
  transition: width 0.4s cubic-bezier(0.34, 0.615, 0.4, 0.985);
}
.header-under.scroll .logo {
  width: 70px;
}

.header-under .navi {
  margin: 0 0 0 auto;
  padding: 0;
  font-size: 20px;
  display: flex;
  align-items: center;
  list-style: none;
}
.header-under .navi li {
  margin-left: 40px;
}
.header-under .navi li:first-child {
  margin-left: 0;
}
.header-under .navi li a {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  position: relative;
  color: #fff;
}
.header-under .navi li a:hover {
  color: #333;
}

.header-under .list .list_link::before {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 600;
  position: absolute;
  color: #333;
  left: 50%;
  transform: translateX(-50%);
  bottom: -85%;
}

.scroll-header .list_under .list_link::before{
  color: #333;
}

.header-under .openbtn1 span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
background-color: #333;
  width: 45%;
}

.header-under .list_link {
  color: #333 !important;
}

.header-under .drop_down_text a {
  color: #fff;
}


@media screen and (max-width: 767px) {
  .header-under .navi {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .header-under {
    height: 70px;
  }
}

.page_top {
  position: relative;
}
.page_top img {
  width: 100%;
}

.page_under {
  position: relative;
  padding: 50px 0;
  text-align: center;
}

.page_title h2 {
  position: absolute;
  color: #fff;
  top: 30%;
  left: 30%;
  transform: translateX(-50%);
  font-size: 2.5em;
  font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  letter-spacing: 12px;
  font-weight: 600;
}
.page_title_policy h2 {
  position: absolute;
  color: #fff;
  top: 30%;
  left: 30%;
  transform: translateX(-50%);
  font-size: 2em;
  font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  letter-spacing: 12px;
  font-weight: 600;
}

.page_under h3 {
  font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.page_under h3 span {
  font-size: 35px;
}

.page_under h3::before {
  content: "";
  background: url(../img/guidance/page_title_ber1.png) no-repeat;
  width: 50%;
  height: 150%;
  position: absolute;
  top: -20%;
  background-size: 7%;
  left: -2%;
  transform: translateX(-10%);
}
.page_under h3::after {
  content: "";
  background: url(../img/guidance/page_title_ber2.png) no-repeat;
  width: 50%;
  height: 150%;
  position: absolute;
  bottom: -44%;
  background-size: 7%;
  right: -58%;
  transform: translateX(-10%);
}

.page_under p {
  line-height: 40px;
  padding-top: 50px;
}

.page_under h3 br {
  display: none;
}

@media screen and (max-width: 767px) {
  .page_top img {
    width: 160%;
}
.page_title h2 {
  top: 35%;
  left: 34%;
  font-size: 1.3em;
}
.page_under h3 br {
  display: block;
}

.page_under h3 {
  font-size: 15px;
}

.page_under h3 span {
  font-size: 20px;
}

.page_under h3::before {
  width: 200%;
  height: 150%;
  top: -20%;
  left: 5%;
}

.page_under h3::after {
  content: "";
  width: 200%;
  height: 150%;
  bottom: -37%;
  left: 120%;
}

}

.worries {
  background: url(../img/guidance/worries.jpg) top center no-repeat;
  background-size: cover;
  height: 735px;
  position: relative;
}
.worries-sell {
  background: url(../img/guidance-sell/worries-sell.jpg) top center no-repeat;
  background-size: cover;
  height: 820px;
  position: relative;
}
.worries-lent {
  background: url(../img/guidance-lent/worries-lent.jpg) top center no-repeat;
  background-size: cover;
  height: 570px;
  position: relative;
}

.worries::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 735px;
  background: rgba(0, 0, 0, .3);
  top: 0;
}
.worries-sell::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 820px;
  background: rgba(0, 0, 0, .3);
  top: 0;
}
.worries-lent::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 570px;
  background: rgba(0, 0, 0, .1);
  top: 0;
}

.worries_list {
  font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  justify-content: center;
  background: rgba(0,0,0,0.3);
  width: 80%;
  margin: 0 auto;
}

.worries_list ul {
  padding-top: 70px;
  display: grid;
  justify-content: center;
}

.worries_title h3 {
  color: #fff;
  z-index: 1;
  position: sticky;
  font-weight: 600;
  text-align: center;
  padding: 50px 0;
  font-size: 35px;
}

.worries_list ul li {
  list-style: none;
  color: #fff;
  z-index: 1;
  position: sticky;
  text-align: initial;
  line-height: 46px;
  font-size: 18px;
  font-weight: 600;
}

.worries_list p {
  text-align: center;
  font-size: 28px;
  color: #fff;
  z-index: 1;
  font-weight: 100;
  padding: 30px;
}

.worries_list_example{
  font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  justify-content: space-evenly;
}

.worries_list_example div{
  background: rgba(0,0,0,0.2);
  z-index: 1;
  display: block;
  margin: 10px 0;
  padding: 25px 50px;
}

.worries-head {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 13px
}

.purchasing_flow {
  padding: 60px 0;
}

.sec_head {
  text-align: center;
  font-weight: 600;
  font-size: 30px;
  padding: 0;
}
.sec_head h3 {
  font-size: 30px;
  font-weight: 600;
  position: relative;
  padding-bottom: 50px;
  display: inline-block;
}
.sec_head span {
  position: relative;
}

.sec_head h3::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #ED1A3D;
  position: absolute;
  top: -18px;
  left: -33%;
}
.sec_head h3::after {
  content: "";
  display: block;
  width: 2px;
  height: 60px;
  background-color: #ED1A3D;
  position: absolute;
  top: -45px;
  left: -21%;
}
.sec_head span::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #ED1A3D;
  position: absolute;
  top: 44px;
  left: 20px;
}
.sec_head span::before {
  content: "";
  display: block;
  width: 2px;
  height: 60px;
  background-color: #ED1A3D;
  position: absolute;
  top: 15px;
  left: 50px;
}

.flow_list dl:nth-child(1),
.flow_list dl:nth-child(3),
.flow_list dl:nth-child(5),
.flow_list dl:nth-child(7) {
  background:#d9d0a8;
  margin: 0;
  position: relative;
  }

.flow_list dl:nth-child(2),
.flow_list dl:nth-child(4),
.flow_list dl:nth-child(6) {
  background:#ebe6ce;
  margin: 0;
  position: relative;
  }

  .flow_list dl {
    justify-content: end;
  }
  .flow_list dt {
    color: #5b3623;
    padding: 60px 160px 30px 0;
    font-size: 20px;
}

  .number01::before {
    position: absolute;
    top: 0;
    left: 10%;
    font-family: 'Fredoka One', cursive;
    font-size: 170px;
    content: "1";
    color: rgba(255,255,255,0.5);
  }
  .number02::before {
    position: absolute;
    top: 0;
    left: 10%;
    font-family: 'Fredoka One', cursive;
    font-size: 170px;
    content: "2";
    color: rgba(255,255,255,0.5);
  }

  .number03::before {
    position: absolute;
    top: 0;
    left: 10%;
    font-family: 'Fredoka One', cursive;
    font-size: 170px;
    content: "3";
    color: rgba(255,255,255,0.5);
  }
  .number04::before {
    position: absolute;
    top: 0;
    left: 10%;
    font-family: 'Fredoka One', cursive;
    font-size: 170px;
    content: "4";
    color: rgba(255,255,255,0.5);
  }
  .number05::before {
    position: absolute;
    top: 0;
    left: 10%;
    font-family: 'Fredoka One', cursive;
    font-size: 170px;
    content: "5";
    color: rgba(255,255,255,0.5);
  }
  .number06::before {
    position: absolute;
    top: 0;
    left: 10%;
    font-family: 'Fredoka One', cursive;
    font-size: 170px;
    content: "6";
    color: rgba(255,255,255,0.5);
  }
  .number07::before {
    position: absolute;
    top: 0;
    left: 10%;
    font-family: 'Fredoka One', cursive;
    font-size: 170px;
    content: "7";
    color: rgba(255,255,255,0.5);
  }

  .flow_list_img {
    padding: 50px;
    max-width: 20%;
  }

  .flow_list_img img {
    width: 100%;
  }

  .flow_list_text {
    width: 55%;
  }

  @media screen and (max-width: 767px) {
    .worries_title h3 {
      font-size: 24px;
      padding: 30px 0;
      margin: 0;
  }
  .worries_list {
    width: 100%;
}

.worries_list ul li {
  line-height: 28px;
  font-size: 14px;
  font-weight: normal;
}

.worries_list ul {
  padding: 22px 0;
}

.worries_list p {
  font-size: 23px;
  padding-bottom: 20px;
}

.worries {
  height: 520px;
}

.worries::after {
  height: 520px;
}
.flow_list_img {
  max-width: 35%;
  top: 57%;
  right: -8%;
  position: absolute;
}

.flow_list dl {
  padding: 70px 20px;
  position: relative;
}

.flow_list_text {
  width: 100%;
}
.flow_list dt {
  color: #5b3623;
  font-size: 16px;
  padding: 20px 0;
}
.flow_list dl::before {
  top: 0;
  left: 5%;
  font-size: 45px;
}
.worries_title h3 {
  padding: 15px;
}

.worries-lent {
  height: 758px;
}

.worries_list_example div {
  padding: 20px 15px;
}




}

.faq {
  background: url(../img/faq.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  padding: 90px 0;
}

.faq:before{
  content: '';
  background: inherit;
  filter: blur(3px);
  position: absolute;
  top: 3px;
  left: -5px;
  right: -5px;
  bottom: -1px;
}
.faq::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1407px;
  background: rgba(255, 255, 255, .5);
  top: 0;
}
  
.sec_head02 {
  text-align: center;
  font-weight: 600;
  font-size: 30px;
  z-index: 1;
}
.sec_head02 h3 {
  font-size: 30px;
  font-weight: 600;
  position: relative;
  padding-bottom: 50px;
  display: inline-block;
  z-index: 1;
}
.sec_head02 span {
  position: relative;
}

.sec_head02 h3::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #ED1A3D;
  position: absolute;
  top: -18px;
  left: -63%;
}
.sec_head02 h3::after {
  content: "";
  display: block;
  width: 2px;
  height: 60px;
  background-color: #ED1A3D;
  position: absolute;
  top: -45px;
  left: -40%;
}
.sec_head02 span::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #ED1A3D;
  position: absolute;
  top: 54px;
  left: 20px;
}
.sec_head02 span::before {
  content: "";
  display: block;
  width: 2px;
  height: 60px;
  background-color: #ED1A3D;
  position: absolute;
  top: 25px;
  left: 50px;
}

.box_qa {
  z-index: 1;
  position: sticky;
  padding: 30px 0;
}
.box_qa dl {
  width: 70%;
  margin: 0 auto;
  padding: 5px;
}
.box_qa dt {
  color: #5b3623;
  font-size: 20px;
  padding: 30px 0;
  position: relative;
}
.box_qa dt::before {
  content: "Q";
  color: #da5757;
  font-size: 50px;
  font-family: 'Roboto', sans-serif;
  position: absolute;
  top: 50%;
  left: -1.2em;
  transform: translateY(-50%);
}
.box_qa dd {
  line-height: 20px;
  position: relative;
}
.box_qa dd::before {
  content: "A";
  color: #836855;
  font-size: 30px;
  font-family: 'Roboto', sans-serif;
  position: absolute;
  top: 50%;
  left: -1.8em;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .worries_title h3 {
  padding: 15px;
}

.box_qa dt {
  padding: 15px 0;
}

.faq::after {
  height: 1957px;
}
.faq-sell::after {
  height: 1777px;
}
.faq-lent::after {
  height: 1677px;
}
}

.archive_main {
  margin: 50px 0;
}

.archive_thumbnail {
  padding: 30px 0;
}

.archive_thumbnail a {
  display: inline-block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: 1.2s;
  background-size: contain;
}

.archive_thumbnail-wrap{
  background: #da6565;
  border-radius: 30px;
    transition: .8s;
}

.archive_thumbnail a img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.information {
  padding: 60px 0;
}

.number_wrap {
  text-align: end;
}
.number_wrap p span {
  font-size: 140%;
  font-weight: bold;
  color: #da6565;
  margin-right: 4px;
}
.category_wrap ul {
  margin-bottom: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0d9ce;
}

.category_wrap ul li {
  padding: 0 1.5em;
  border-right: 1px solid #e0d9ce;
}

.category_wrap ul li a {
  color: #b5b5b5;
  font-size: 15px;
  font-weight: bold;
}
.category_wrap ul li a:hover {
  background: #da6565;
  border-radius: 30px;
}

.property {
  padding: 0;
}

.btn_property {
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 0;
}
.btn_property:hover {
  color: #FFF;
  background: #f78da7;
  border-radius: 30px;
}

.archive_thumbnail-wrap:hover {
  color: #FFF;
  background: #f78da7;;
}

.intel_box h2 {
  margin-bottom: 30px;
  padding-bottom: 12px;
  border-bottom: 3px solid #da6565;
}
.intel_box h2 span {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  margin: 0 15px 0 0;
  padding: 5px 12px;
  background-color: #5B3623;
  vertical-align: middle;
}
.intel_box h2 a {
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  color: #2F2F2F;
}
.intel_box h2 a:hover{
  border-bottom: #333 solid 2px;
  color: rgba(0,0,0, .6);
}

.table_box table {
  width: 100%;
}
.table_box table tr td {
  font-size: 14px;
  vertical-align: middle;
  line-height: 1.6;
  padding: 14px 7px;
  border: 1px solid #e0d9ce;
}
.table_box table tr th {
  color: #5b3623;
  white-space: nowrap;
  text-align: center;
  background: #F8F6F3;
  border: 1px solid #e0d9ce;
}
.price_box {
  text-align: center;
}

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

.property_details {
  padding: 60px 0;
}

.slider03 .slick-slide img {
  width: 650px;
  max-height: 560px;
  object-fit: contain;
}

.slider03 .slick-prev.slick-arrow {
  z-index: 3;
}

.point_img h3 {
color: #da6565;
font-weight: bold;
padding-bottom: 30px;
font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
}

.slider03 {
padding: 30px;
}

.slider03 .slick-prev:before,
.slider03 .slick-next:before {
  font-size: 60px;
  opacity: 0.35;
}

.slider03 .slick-prev,
.slider03 .slick-next {
  width: 60px;
}

.thumbnail03 .slick-track {
  transform: unset !important;
}
.thumbnail-img {
  opacity: .3;
  transition: opacity .3s linear;
  width: 150px!important;
}
  .thumbnail-img img {
    width: 150px;
    height: 100px;
    object-fit: contain;
}

.thumbnail03 .slick-current {
  opacity: 1;
}

.point_text {
  padding: 60px 0;
}
.point_text p {
  font-size: 14px;
}

.point_text > h3 {
  color: #da6565;
  font-size: 20px;
  font-weight: 700;
}

.text_list01 {
  padding: 30px 20px;
}

.text_list02 h3 {
  font-size: 17px;
}

.overview_top h3 {
  color: #da6565;
  font-size: 18px;
  font-weight: bold;
  line-height: 40px;
  border-bottom: 1px solid #e0d9ce;
}
.overview_top table tr{
  line-height: 30px;
  border-bottom: 1px solid #e0d9ce;
}
.overview_top table {
  width: 100%;
}

.overview_top table tr th {
  color: #da6565;
  padding: 20px;
  font-size: 15px;
}
.overview_top table tr th {
  font-size: 15px;
}

.btn-white {
  border: 1px solid #da6565;
  text-align: center;
  padding: 11px;
  margin: 35px 0;
  border-radius: 12px;
}
.btn-pink {
  text-align: center;
  padding: 12px;
  margin: 35px 0;
  border-radius: 12px;
  background: #da6565;
}

.btn-white a {
  color: #da6565;
  font-weight: bold;
}
.btn-pink a {
  color: #fff;
  font-weight: bold;
}

.overview_under1 h3 ,
.overview_under2 h3 {
  color: #da6565;
  font-size: 17px;
  font-weight: bold;
}

.page_main p {
 margin: 0;
 font-size: 14px;
}

.page_main .container {
  padding: 40px 0;
}

ol li {
  list-style: true;
  font-size: 14px;
}

.page_main ul li {
  list-style: disc;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .page_main {
    padding: 20px;
  }
}

.table-bordered tr {
  border-style: none;
  border-color: #fff;
  line-height: 40px;
  border-bottom: 1px solid #ccc;
}
.table-bordered tr td,
.table-bordered tr th {
  padding-top: 25px;
}

@media screen and (max-width: 767px) {
  .table-bordered tr td {
    padding-top: 0;
  }
  .table-bordered tr td ul {
    margin-top: 25px;
  }
  .page_main .container {
    padding-bottom : 0;
}
.table-bordered tr td {
  display: block;
}
.table-bordered tr th {
  display: block;
  padding-top: 10px;
  border-bottom: 1px solid #ccc;
}
}

.contact-top p {
  padding: 80px 40px 0 40px;
}

.contact-table {
  margin: 0 auto;
  width: 80%;
}

.worries_contact {
  width: 350px;
}
.contact-table tbody tr {
  border-bottom: 1px solid #dee2e6;
  padding: 30px 0;
  align-items: center;
}

.required::after {
display: block;
content: "必須";
width: 40%;
max-width: 80px;
font-size: 12px;
color: rgb(255, 255, 255);
background-color: rgb(215, 76, 76);
text-align: center;
margin-top: 0.4rem;
padding: 0.4rem 0px;
}

.optional::after {
  display: block;
content: "任意";
width: 40%;
max-width: 80px;
font-size: 12px;
color: rgb(255, 255, 255);
background-color: rgb(214, 145, 75);
text-align: center;
margin-top: 0.4rem;
padding: 0.4rem 0px;
}

input,
select,
textarea {
  border: 1px solid #dee2e6;
  padding: 5px;
}

.post {
  width: 150px;
}

.privacy-policy {
  padding: 30px;
}

.privacy-policy .mwform-checkbox-field-text {
  color: #d74c4c;
  font-weight: bold;
} 
.button-wrap input {
font-size: 120%;
color: #FFF;
font-weight: bold;
border: none;
padding: 12px 80px;
background: #D74C4C;
transition: .8s;
}

.active a {
  color: #d74c4c!important;
}

a {
  color: #fff;
}

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
position: fixed;
width: 100%;
height: 100%;
z-index: 9999;
background:#fff;
text-align:center;
}

/* Loading画像中央配置　*/
#splash_logo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
width:500px;
}

.fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
  }

svg {
  width:500px;
  margin:50px auto;
  display:block;
}
.st0 {
  stroke: #fff;
  stroke-width: 1;
  }

.st1{
  fill:#333;
  stroke:#333;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  stroke-width: 1;
  -webkit-animation: hello 2s ease-in 0s;
  animation: hello 2s ease-in 0s;
  }
  
    @-webkit-keyframes hello {
     0% {
     stroke-dashoffset: 2000;
     fill:transparent;
     }
     40% {
     stroke-dashoffset: 2000;
     fill:transparent;
     }
     50% {
     fill:transparent;
     }
     100% {
     stroke-dashoffset: 0;
     fill:#333;
    }
  }


  /* Styles from the GreenSock website */
body {
  font-weight: 300;
}
.ipsType_right {
  text-align: right;
}
.ipsType_center {
  text-align: center;
}
.cInnerContent {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.ipsSpacer_bottom_double {
  margin-bottom: 30px;
}
.ipsGrid {
  display: inline-block;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.ipsGrid::before, .ipsGrid::after {
  display: table;
  content: "";
  line-height: 0;
}
.ipsGrid > [class*="ipsGrid_span"] {
  display: block;
  width: 100%;
  min-height: 30px;
  box-sizing: border-box;
}
.ipsGrid > .ipsGrid_span5 {
  width: 40.42553191489362%;
}
.ipsGrid > .ipsGrid_span7 {
  width: 57.44680851063829%;
}
.ipsGrid > [class*="ipsGrid_span"] {
  float: left;
  margin-left: 2%;
}
.ipsGrid > [class*="ipsGrid_span"]:first-child {
  margin-left: 0;
}
.feature {
  display: flex;
  align-items: center;
}
.card {
  margin-bottom: 30px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 1px 1px 5px 1px #CCCCCC;
/*   transition: 0.3s; */
}
.featured-image-container .card {
  padding: 10px;
  height: 0;
  padding-bottom: calc(100% - 10px);
}
h2.heading_large {
  font-size: 1.8em;
}
img {
  max-width: 100%;
}

.header-section {
  margin: 200px auto;
}

.gs_reveal {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}