.body{
  overflow-x:scroll;
}
.appear.up .item {
  transform: translateY(6px);
}

.appear.down .item {
  transform: translateY(-6px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear .item {
  transition: all 0.8s;
  opacity: 0;
}
.appear.inview .item {
  opacity: 1;
  transform: none;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.1s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 0.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 0.7s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 1s;
}

.btn {
  position: relative;
  display: inline-block;
  background-color: white;
  border: 1px solid black;
  font-weight: 600;
  padding: 10px 40px;
  margin: 10px auto;
  cursor: pointer;
  transition: all 0.3s;
  color: black;
  text-decoration: none !important;
}
.btn.float:hover {
  background-color: black;
  color: white;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.btn.filled {
  background-color: black;
  color: white;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.btn.filled:hover {
  background-color: white;
  color: black;
  box-shadow: none;
}
.btn.letter-spacing:hover {
  background-color: black;
  letter-spacing: 3px;
  color: white;
}
.btn.shadow {
  box-shadow: none;
}
.btn.shadow:hover {
  transform: translate(-2.5px, -2.5px);
  box-shadow: 5px 5px 0 0 black;
}
.btn.solid {
  box-shadow: 2px 2px 0 0 black;
  border-radius: 7px;
}
.btn.solid:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
}
.btn.slide-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn.slide-bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s;
  z-index: -1;
}
.btn.slide-bg:hover {
  color: white;
}
.btn.slide-bg:hover::before {
  transform: none;
}
.btn.cover-3d {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  perspective: 300px;
}
.btn.cover-3d span {
  display: inline-block;
  transform: translateZ(20px);
}
.btn.cover-3d::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateX(90deg);
  transition: all 0.3s;
  transform-origin: top center;
  opacity: 0;
}
.btn.cover-3d:hover {
  color: white;
}
.btn.cover-3d:hover::before {
  transform: none;
  opacity: 1;
}

.btn-cubic {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  perspective: 300px;
  width: 150px;
  height: 50px;
  margin: 0 auto;
  cursor: pointer;
  font-weight: 600;
}
.btn-cubic span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid black;
  line-height: 48px;
  text-align: center;
  transition: all 0.3s;
  transform-origin: center center -25px;
  color: black;
}
.btn-cubic .hovering {
  background-color: black;
  color: white;
  transform: rotateX(90deg);
}
.btn-cubic .default {
  background-color: white;
  color: black;
  transform: rotateX(0);
}
.btn-cubic:hover .hovering {
  transform: rotateX(0);
}
.btn-cubic:hover .default {
  transform: rotateX(-90deg);
}

.swiper {
  overflow: visible !important;
}

.swiper-slide {
  height: 500px;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .swiper-slide {
    box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
  }
}
.swiper-slide > img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.3);
  transition: transform 1.9s ease;
}
.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 61, 125, 0.1);
}
.swiper-slide-active > img {
  transform: none;
}
.swiper-slide-active .hero__title {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.hero {
  overflow: hidden;
  padding-top: 100px;
}
.hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
  color: white;
  font-size: 25px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease 1s, transform 0.3s ease 1s;
}
.hero__footer {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 2;
  height: 68px;
  width: 22px;
  overflow: hidden;
}
.hero__downarrow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6px;
  -webkit-animation-name: kf-arrow-anime;
          animation-name: kf-arrow-anime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.hero__scrolltext {
  position: absolute;
  transform: rotate(90deg);
  color: rgba(255, 255, 255, 0.7);
  left: -8px;
  top: 11px;
  font-size: 1.2em;
}

@-webkit-keyframes kf-arrow-anime {
  0%, 50%, 100% {
    transform: translateY(-10%);
  }
  30% {
    transform: none;
  }
}

@keyframes kf-arrow-anime {
  0%, 50%, 100% {
    transform: translateY(-10%);
  }
  30% {
    transform: none;
  }
}
/*アニメーション*/
/*.animate-title,
.tween-animate-title {
  opacity: 0;
}
.animate-title.inview,
.tween-animate-title.inview {
  opacity: 1;
}
.animate-title.inview .char,
.tween-animate-title.inview .char {
  display: inline-block;
}
.animate-title .char,
.tween-animate-title .char {
  opacity: 0;
}*/

.animate-title.inview .char {
  -webkit-animation-name: kf-animate-chars;
          animation-name: kf-animate-chars;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
          animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.animate-title.inview .char:nth-child(1) {
  -webkit-animation-delay: 0.04s;
          animation-delay: 0.04s;
}
.animate-title.inview .char:nth-child(2) {
  -webkit-animation-delay: 0.08s;
          animation-delay: 0.08s;
}
.animate-title.inview .char:nth-child(3) {
  -webkit-animation-delay: 0.12s;
          animation-delay: 0.12s;
}
.animate-title.inview .char:nth-child(4) {
  -webkit-animation-delay: 0.16s;
          animation-delay: 0.16s;
}
.animate-title.inview .char:nth-child(5) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.animate-title.inview .char:nth-child(6) {
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}
.animate-title.inview .char:nth-child(7) {
  -webkit-animation-delay: 0.28s;
          animation-delay: 0.28s;
}
.animate-title.inview .char:nth-child(8) {
  -webkit-animation-delay: 0.32s;
          animation-delay: 0.32s;
}
.animate-title.inview .char:nth-child(9) {
  -webkit-animation-delay: 0.36s;
          animation-delay: 0.36s;
}
.animate-title.inview .char:nth-child(10) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.animate-title.inview .char:nth-child(11) {
  -webkit-animation-delay: 0.44s;
          animation-delay: 0.44s;
}
.animate-title.inview .char:nth-child(12) {
  -webkit-animation-delay: 0.48s;
          animation-delay: 0.48s;
}
.animate-title.inview .char:nth-child(13) {
  -webkit-animation-delay: 0.52s;
          animation-delay: 0.52s;
}
.animate-title.inview .char:nth-child(14) {
  -webkit-animation-delay: 0.56s;
          animation-delay: 0.56s;
}
.animate-title.inview .char:nth-child(15) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.animate-title.inview .char:nth-child(16) {
  -webkit-animation-delay: 0.64s;
          animation-delay: 0.64s;
}
.animate-title.inview .char:nth-child(17) {
  -webkit-animation-delay: 0.68s;
          animation-delay: 0.68s;
}
.animate-title.inview .char:nth-child(18) {
  -webkit-animation-delay: 0.72s;
          animation-delay: 0.72s;
}
.animate-title.inview .char:nth-child(19) {
  -webkit-animation-delay: 0.76s;
          animation-delay: 0.76s;
}
.animate-title.inview .char:nth-child(20) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.animate-title.inview .char:nth-child(21) {
  -webkit-animation-delay: 0.84s;
          animation-delay: 0.84s;
}
.animate-title.inview .char:nth-child(22) {
  -webkit-animation-delay: 0.88s;
          animation-delay: 0.88s;
}
.animate-title.inview .char:nth-child(23) {
  -webkit-animation-delay: 0.92s;
          animation-delay: 0.92s;
}
.animate-title.inview .char:nth-child(24) {
  -webkit-animation-delay: 0.96s;
          animation-delay: 0.96s;
}
.animate-title.inview .char:nth-child(25) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.animate-title.inview .char:nth-child(26) {
  -webkit-animation-delay: 1.04s;
          animation-delay: 1.04s;
}
.animate-title.inview .char:nth-child(27) {
  -webkit-animation-delay: 1.08s;
          animation-delay: 1.08s;
}
.animate-title.inview .char:nth-child(28) {
  -webkit-animation-delay: 1.12s;
          animation-delay: 1.12s;
}
.animate-title.inview .char:nth-child(29) {
  -webkit-animation-delay: 1.16s;
          animation-delay: 1.16s;
}
.animate-title.inview .char:nth-child(30) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

@-webkit-keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.cover-slide {
  position: relative;
  overflow: hidden;
}
.cover-slide::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eaebe6;
  opacity: 0;
}
.cover-slide.inview::after {
  opacity: 1;
  -webkit-animation-name: kf-cover-slide;
          animation-name: kf-cover-slide;
  -webkit-animation-duration: 1.6s;
          animation-duration: 1.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes kf-cover-slide {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.1% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

@keyframes kf-cover-slide {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.1% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.img-zoom, .bg-img-zoom {
  opacity: 0;
}
.inview .img-zoom, .inview .bg-img-zoom {
  opacity: 1;
  transition: transform 0.3s ease;
  -webkit-animation-name: kf-img-show;
          animation-name: kf-img-show;
  -webkit-animation-duration: 1.6s;
          animation-duration: 1.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
}
.inview .img-zoom:hover, .inview .bg-img-zoom:hover {
  transform: scale(1.05);
}

@-webkit-keyframes kf-img-show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  50.1% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
  }
}

@keyframes kf-img-show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  50.1% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
  }
}
.hover-darken::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: background-color 0.3s ease;
  pointer-events: none;
  -webkit-animation-name: kf-img-show;
          animation-name: kf-img-show;
  -webkit-animation-duration: 1.6s;
          animation-duration: 1.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
}
.hover-darken:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-img-zoom {
  background-image: url(images/image-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}

.img-bg50 {
  position: relative;
}
.img-bg50::before {
  display: block;
  content: "";
  padding-top: 50%;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 60px;
  width: 300px;
}
.mobile-menu .logo {
  padding: 0 40px;
  font-size: 38px;
}
.mobile-menu__btn {
  background-color: unset;
  border: none;
  outline: none !important;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .mobile-menu__btn {
    display: none;
  }
}
.mobile-menu__btn > span {
  background-color: black;
  width: 35px;
  height: 2px;
  display: block;
  margin-bottom: 9px;
  transition: transform 0.7s;
}
.mobile-menu__btn > span:last-child {
  margin-bottom: 0;
}
.mobile-menu__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s;
  cursor: pointer;
  z-index: 200;
}
.mobile-menu__main {
  padding: 0;
  perspective: 2000px;
  transform-style: preserve-3d;
}
.mobile-menu__item {
  list-style: none;
  display: block;
  transform: translate3d(0, 0, -1000px);
  padding: 0 40px;
  transition: transform 0.3s, opacity 0.2s;
  opacity: 0;
}
.mobile-menu__link {
  display: block;
  margin-top: 30px;
  color: black;
  text-decoration: none !important;
}

/*flex-container
.menu-open .mobile-menu__cover {
  opacity: 1;
  visibility: visible;
}*/
.menu-open .mobile-menu__item {
  transform: none;
  opacity: 1;
}
.menu-open .mobile-menu__item:nth-child(1) {
  transition-delay: 0.07s;
}
.menu-open .mobile-menu__item:nth-child(2) {
  transition-delay: 0.14s;
}
.menu-open .mobile-menu__item:nth-child(3) {
  transition-delay: 0.21s;
}
.menu-open .mobile-menu__item:nth-child(4) {
  transition-delay: 0.28s;
}
.menu-open .mobile-menu__item:nth-child(5) {
  transition-delay: 0.35s;
}
.menu-open .mobile-menu__btn > span {
  background-color: black;
}
.menu-open .mobile-menu__btn > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(11px) rotate(135deg);
}
.menu-open .mobile-menu__btn > span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(-18px) scaleX(0);
}
.menu-open .mobile-menu__btn > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-11px) rotate(-135deg);
}

body {
  font-family: "Kameron", "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.mb-sm, .travel__img, .ｋ__title, .popular__title, .sub-title {
  margin-bottom: 16px !important;
}

.mb-lg, .travel,.popular__btn{
  margin-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .mb-lg, .travel,.popular__btn{
    margin-bottom: 150px !important;
  }
}

.pb-sm, .travel__texts {
  padding-bottom: 16px !important;
}

.pb-lg, .hero {
  padding-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .pb-lg, .hero {
    padding-bottom: 150px !important;
  }
}

.content-width, .header__inner,.travel,.popular__header, .popular__container, .footer {
  max-width:90%;
  margin: 0 auto;
}

.flex, .header__nav, .travel__inner, .houses__inner, .popular__container, .footer__nav, .footer__ul {
  width: 76vw;/*山本追記*/
  margin:auto;/*山本追記*/
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .flex, .header__nav, .travel__inner, .houses__inner, .popular__container, .footer__nav, .footer__ul {
    width: 76vw;/*山本追記*/
    margin:auto;/*山本追記*/
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.purple {
  color: #904669;
}

.font-sm, .sub-title {
  font-size: 14px;
}
@media screen and (min-width: 960px) {
  .font-sm, .sub-title {
    font-size: 20px;
  }
}

.font-md, .popular__title {
  font-size: 17px;
}
@media screen and (min-width: 960px) {
  .font-md, .popular__title {
    font-size: 19px;
  }
}

.font-lr, .houses__title {
  text-align: center;
  font-size: 17px;
}
@media screen and (min-width: 960px) {
  .font-lr, .houses__title {
    text-align: center;
    font-size: 23px;
  }
}


.font-lg{
  font-size: 24px;
}
@media screen and (min-width: 960px) {
  .font-lg{
    font-size: 80px;
  }
}

.main-title {
  font-size: 20px;
  text-align: left;
  letter-spacing: 0.09rem;
  font-weight: 100;
  margin-bottom: 0;
  display: block;
}

.sub-title {
  font-size: 12px;
  text-align: left;
  letter-spacing: 0.04rem;
  color: #535353;
}
@media screen and (min-width: 960px) {
 .main-title {
   font-size: 30px;
   font-weight: 100;
  }
 .sub-title {
  letter-spacing: 0.04rem;
  }
 
}
#container {
  position: relative;
  z-index: 10;
  background: white;
  transition: transform 0.5s, box-shadow 0.5s;
}

#main-content {
  position: relative;
  z-index: 0;
}

main {
  position: relative;
  z-index: -1;
}

.header {
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: transparent;
  display: flex;
  z-index: 100;
}
.header.triggered {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav {
  justify-content: space-between;
  align-items: center;
  text-align: center;
  display: none;
}
@media screen and (min-width: 960px) {
  .header__nav {
    display: block;
  }
}
.header__ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
}
.header__li {
  margin: 10px;
}
@media screen and (min-width: 600px) {
  .header__li {
    margin-left: 30px;
    margin-right: 0;
  }
}
.header__li > a {
  color: black;
  text-decoration: none;
  text-transform: uppercase;
}
.header .logo {
  font-size: 35px;
  justify-content: center;
}
@media screen and (min-width: 600px) {
  .header .logo {
    justify-content: flex-start;
  }
}

.travel__inner {
  margin-top: 310px;
  position: relative;
  z-index: 0;
  justify-content: space-between;
  background: #eaebe678;
  padding: 15px;
}
@media screen and (min-width: 600px) {
  .travel__inner {
    margin-top: 400px;
    padding: 50px;
  }
}
@media screen and (min-width: 700px) {
  .travel__inner {
    margin-top: 550px;
  }
}
@media screen and (min-width: 800px) {
  .travel__inner {
    margin-top: 600px;
  }
}
@media screen and (min-width: 1000px) {
  .travel__inner {
    margin-top: 800px;
  }
}
@media screen and (min-width: 1280px) {
  .travel__inner {
    margin-top: 800px;
    padding: 50px 150px;
  }
}
@media screen and (min-width: 1280px) {
  .travel__inner {
    margin-top: 1000px;
  }
}
@media screen and (min-width: 1480px) {
  .travel__inner {
    margin-top: 1200px;
  }
}
@media screen and (min-width: 1680px) {
  .travel__inner {
    margin-top: 1400px;
  }
}
@media screen and (min-width: 1880px) {
  .travel__inner {
    margin-top: 1600px;
  }
}
@media screen and (min-width: 2000px) {
  .travel__inner {
    margin-top: 1800px;
  }
}
.travel__img {
  height: 300px;
  transition: box-shadow 0.5s ease 1.6s;
}
.travel__img.inview {
  box-shadow: inset 0 0 30px black;
}
@media screen and (min-width: 600px) {
  .travel__img {
    flex-basis: 47%;
  }
}
@media screen and (min-width: 960px) {
  .travel__img {
    height: 400px;
  }
}
.travel__img > img {
  position: relative;
  z-index: -1;
  opacity: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 600px) {
  .travel__texts {
    display: flex;
    align-items: center;
    flex-basis: 47%;
  }
}
.travel__texts.inview .travel__title::before {
  -webkit-animation-name: scaleX;
          animation-name: scaleX;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.travel__title {
  position: relative;
}
.travel__title::before {
  display: none;
  position: absolute;
  content: "";
  height: 1px;
  width: 100px;
  top: 50%;
  left: -120px;
  background: black;
  transform: scaleX(0);
  transform-origin: right;
}
@media screen and (min-width: 960px) {
  .travel__title::before {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .travel__description {
    margin-bottom: 40px;
  }
}

@-webkit-keyframes scaleX {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes scaleX {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@media screen and (min-width: 600px) {
  .houses__item {
    flex-basis: 50%;
  }
}
@media screen and (min-width: 960px) {
  .houses__item {
    margin-bottom: 60px;
  }
}
.houses__btn {
  text-align: center;
  flex-basis: 100%;
}

.popular__inner {
  position: relative;
}
.popular__inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 90%;
  width: 100%;
  background: #eaebe6;
}
.popular__container {
  position: relative;
  z-index: 2;
  justify-content: space-between;
}
@media screen and (min-width: 600px) {
  .popular__item {
    flex-basis: 47%;
  }
}
@media screen and (min-width: 960px) {
  .popular__item {
    flex-basis: 25%;
  }
}
@media screen and (min-width: 1280px) {
  .popular__item {
    flex-basis: 23%;
  }
}
.popular__img {
  height: 150px;
  margin-bottom: 5px;
}
@media screen and (min-width: 960px) {
  .popular__img {
    height: 335px;
  }
}
.popular__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popular__btn {
  text-align: center;
  flex-basis: 100%;
}

.footer {
  padding: 60px 0;
}
.footer__nav {
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.footer__ul {
  list-style: none;
  padding: 0;
}
.footer__li {
  margin: 10px;
}
@media screen and (min-width: 600px) {
  .footer__li {
    margin-left: 0;
    margin-right: 30px;
  }
}
.footer__li > a {
  color: #535353;
  text-decoration: none;
}
.footer > .logo {
  font-size: 38px;
  justify-content: center;
}
@media screen and (min-width: 600px) {
  .footer > .logo {
    justify-content: flex-start;
  }
}

.logo {
  font-size: 42px;
  display: flex;
}
.logo__img {
  width: 0.7em;
}
.logo__world {
  color: #904669;
}

.side {
  display: none;
  position: fixed;
  top: 70%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media screen and (min-width: 1280px) {
  .side {
    display: block;
  }
}
/*アニメーション*/
/*.side .tween-animate-title {
  color: black;
  text-decoration: none !important;
  margin: 0 40px;
  vertical-align: middle;
  letter-spacing: 2px;
}*/
.side.left {
  left: -50px;
}
.side.left.inview {
  left: 50px;
}
.side.left .side__inner {
  transform-origin: top left;
  transform: rotate(-90deg);
}
.side.right {
  right: -50px;
}
.side.right.inview {
  right: 50px;
}
.side.right .side__inner {
  transform-origin: top right;
  transform: rotate(90deg);
}

.icon {
  position: relative;
}
.icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  width: 1em;
  height: 1em;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: none;
  background-size: contain;
}
.icon.twitter::before {
  background-image: url(../images/twitter.svg);
}
.icon.fb::before {
  background-image: url(../images/facebook.svg);
}/*# sourceMappingURL=style.css.map */




/*山本追記*/
.top{
  position: relative;
}
.top_img{
  position: static;
  width: 50%;
  top: 50%;
  left: 50%;
  transform: translate(44%,-300%);
  padding: 0;
  margin: 0;
}
.simplee_explanation{
  padding-top: 80px;
}
@media screen and (max-width:950px){
  .simplee_explanation{
  padding-top: 30px;
}
}
/*@media screen and (max-width:400px){
 .simplee_explanation{
  margin-top: 250px;
  }
}*/
.simplee_explanation-box{
  margin-top: -80px;
  padding-bottom: 40px;
}
.simplee_explanation-box h2{
  font-size: 55px;
  color: #262626;
  letter-spacing: 0.09em;
  text-align: center;
}
 
.simplee_explanation-box h2::first-letter {
  font-weight: bold;
  font-size: 80px;
  color: #f9a251;
}
.top_explanation{
  text-align: center;
  font-weight: 100;
  font-size: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width:950px){
  .simplee_explanation-box{
  margin-top: -5px;
}
  .simplee_explanation-box h2{
  font-size: 30px;
  color: #262626;
  letter-spacing: 0.09em;
  text-align: center;
}
 
.simplee_explanation-box h2::first-letter {
  font-weight: bold;
  font-size: 35px;
  color: #f9a251;
}
  .top_explanation{
  font-size: 10px;
  }
}
.mitigation{
  font-size: 27px;
  text-align: center;
}
  @media screen and (max-width:900px){
  .mitigation {
    width: 70%;
}
}
@media screen and (max-width:950px){
  .mitigation {
    font-size: 20px;
    text-align: left;
    margin: auto;
    width: 57%;
}
  }
.mitigation span{
  background: linear-gradient(transparent 60%, #eab25e6e 60%);
  }
.top_simplee-img{
  margin: auto;
  width: 37%;
}
.Explanation{
  text-align: center;
}
.travel__description h2{
   font-size: 1.6rem;
   font-weight: 100;
   letter-spacing: 0.03rem;
}
@media screen and (max-width:950px){
  .travel__description h2{
   font-size: 1.3rem;
  }
}
.travel__description h2 span {
    background: linear-gradient(transparent 60%, #FFFE03 60%);
}
.houses {
  margin: auto;
  max-width: 70%;
  margin-bottom: 40px;
	position: relative;
	padding: 0.5em 0.75em;
	border: solid 1px #ffbb84;
	border-left: solid 2.5em #ffbb84;
}
.houses:before {
	position: absolute;
	font-family: "Font Awesome 5 Free";
	content: "\f0eb";
	font-weight: 900;
	color: #fff;
	padding: 0;
	left: -1.6em;
	top: 50%;
	transform: translateY(-50%);
}
/*.houses{
  padding: 15px 15px 10px;
  margin-bottom: 60px;
  width: 86vw;
  text-align: center;
  color: #494949;
  background: #fdddb561;
  border-left: solid 5px #ffaf58;
}*/
.houses_whole{
  margin: auto;
}
.heading12{
  text-align: center;
  padding-bottom: 50px;
  font-size: 14px;
}
.heading12::before {
	content: attr(data-number);
	display: inline-block;
	margin-right: 5px;
	color: #bc6f1e;
	font-size: 14px;
	border-bottom: 1px solid #f1ccab;
}
.houses_whole-img{
  width:50%;
  padding-top: 8px;
  margin: auto;
}
.category{
  display: flex;
  justify-content: center;
}
.ttl{
  text-align: left;
  letter-spacing: 0.09rem;
}
.icon img{
  border-radius: 50%;
  height: 125px;
  width: 125px;
}

.img-bg50{
  margin: 30px 30px;
}

.sub-title{
  font-size: 14px;
}
.resolution{
  margin-top: 70px;
}
/*解決吹き出し*/
.ttl {
font-weight: 500;
font-size: 22px;
position: relative;
width: 86vw;
text-align: center;
margin: auto;
background-color: #fdddb561;
padding: 10px;
color: #333;
}

.ttl::before {
content: "";
position: absolute;
border: 12px solid transparent;
border-top: 12px solid #fdddb561;
top: 100%;
left: 5%;
}

.ttl p{
margin: 0;
padding: 0;
}
.ttl_creation{
  text-align: center;
  font-weight: 200;
  padding-top: 20px;
  font-size: 15px;
}
.ttl br{
display: block;
content: "";
margin-top: -17px;
}
/* リストデザイン004 */
.list_design004{
  margin-top: 0px;
  padding-top: 10px;
  font-size: 21px;
  margin: 20px;
  padding: 35px;
  /*background-color: #f1f1f1;*/
  text-align: left;
  display: inline-block;
}
.list_design004 li {
  list-style: none;
}
.list_design004 li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  padding: 0 5px;
}

.kinds{
  text-align: center;
}
@media screen and (max-width:950px){
  .kinds ul li{
  font-size: 18px;
}
}
.kinds_img{
  margin: auto;
  margin-top: -90px;
  width: 70%;
}
.company{
  background-color: #eaebe678;
  }
.company_right{
  padding:30px;
}
.Simplee_president{
  margin-top: -20px;
}
.footer__copyright{
  text-align: center;
}
.arrow_img{
  margin: auto;
  width: 10%;
}
.box81 {
width: 76vw;
margin: 2em auto;
padding:1em 2em 2em;
background-color: #F5F7FE; /* 背景色 */
border-radius:10px;
box-shadow: 0px 1px 3px rgba(0,0,0,0.1);/*ボックス影*/
}

.box81 .box-title {
color: #b4bbce ; /* タイトル文字色 */
font-size: 18px;
font-weight: bold;
}

.box81 .box-title:before {
font-family: "Font Awesome 5 Free";
content: "\f304";
font-size: 18px;
margin: 0 3px 0 0;
font-weight: bold;
}
.box-title{
  padding-bottom: 5px;
}
.box81 p{
  padding-bottom: 5px;
}
.line{
  border-bottom: dotted 2px #87CEFA;
}
.logo_Simplee{
  margin: auto;
  width: 30%;
}
.Simplee_comment{
  text-align: center;
  color: #fca571;
  letter-spacing: 0.3rem;
  padding-bottom: 60px;
}
@media screen and (min-width:950px){
  /*こんなお悩みありませんか*/
  .houses {
    margin-bottom: 100px;
    width: 53vw;
  }
  .heading12{
  width:100%;
  text-align: center;
  font-size: 18px;
}
  .flex-container{
    display: flex;
  }
.heading12::before {
	content: attr(data-number);
	display: inline-block;
	margin-right: 5px;
	color: #bc6f1e;
	font-size: 18px;
	border-bottom: 1px solid #f1ccab;
}
  .houses_whole{
    width:75%;
  }
.houses_whole-img{
  width:75%;
  padding-top: 8px;
  margin: auto;
}
  .list_design004{
    margin-top: 10px;
  }
  .list_design004 li{
    font-size: 25px;
  }
  .sub-title{
  font-size: 17px;
}
  .pc{
    padding-top: 70px;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .kinds_group{
    width: 40%;
  }
  .kinds_img{
    width: 100%;
  }
  .resolution{
  margin-top: 100px;
}
  .ttl{
    width: 53vw;
    font-size: 34px;
  }
  .box81 {
    width: 45vw;
  }
  .logo_Simplee{
  margin: auto;
  width: 10%;
}
}

/*==================================================
　5-2-1 3本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn1{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	background:#ecb068b8;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
}

/*ボタン内側*/
.openbtn1 span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background: #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;
}

/*activeクラスが付与されると線が回転して×に*/

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

.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%;
}
/*========= ナビゲーションのためのCSS ===============*/

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

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

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

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

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

#g-nav li{
	list-style: none;
    text-align: center;
}

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

/*========= ボタンのための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: #666;
  	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%;
}

.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%;
}