@charset "UTF-8";

/* 共通 ベース base
----------------------------------------------- */
body {
  /*padding: 0 30px;*/
  color: #231815;
}
.container {
  max-width: 1540px;
  width: 90%;
  margin: 0 auto;
}
.container_s {
  max-width: 1230px;
  width: 90%;
  margin: 0 auto;
}
h2 {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 3px;
  line-height: 1.6;
}
.sec_title_area {
  margin-bottom: 80px;
}
h2.line_title {
  text-align: center;
  position: relative;
  padding: 0 50px;
}
h2.line_title::before,
h2.line_title::after {
  position: absolute;
  top: calc(50% - 3px);
  width: 35%;
  height: 3px;
  content: '';
  background: #231815;
}
h2.line_title::before {
  left: 0;
}
h2.line_title::after {
  right: 0;
}
h2.line_title img {
  width: unset;
  display: block;
  margin: 0 auto 0;
  height: 50px;
}
h2.line_title span {
  text-align: center;
  letter-spacing: 5px;
  font-size: 70%;
  font-weight: 500;
}
h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
p {
  font-size: 16px;
  line-height: 1.5;
}
.sec_p {
  font-size: 25px;
  letter-spacing: 2px;
  line-height: 2;
}
.sec_p_s {
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1.8;
}
.bg_navy {
  background-color: #1d274d;
  color: #fff;
  border-radius: 10px;
}
.small {
  font-size: 70%;
}

.btn,
.ichiran_btn {
  border: 1px solid #231815;
  max-width: 300px;
  background-color: rgba(255,255,255,0.6);
  margin-top: 80px;
}
.btn a,
.ichiran_btn a {
  font-size: 16px;
  padding: 12px 20px;
  display: block;
  letter-spacing: 2px;
  text-align: center;

  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*アニメーションの指定*/
  transition: ease .2s;

}
.btn a span,
.ichiran_btn a span {
  position: relative;
  z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #231815;
}
.btn a:hover span,
.ichiran_btn a:hover span {
  color: #fff;
}

/*== 背景が流れる（左から右） */
.btn a:before,
.ichiran_btn a:before {
  content: '';
    /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
    /*色や形状*/
  background:#231815;/*背景色*/
  width: 100%;
  height: 100%;
    /*アニメーション*/
  transition: transform .4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

/*hoverした際の形状*/
.btn a:hover:before,
.ichiran_btn a:hover:before {
  transform-origin:left top;
  transform:scale(1, 1);
}

.more_btn a {
  display: inline-block;
  text-align: center;
  border-bottom: 8px solid #231815;
  border-right: 8px solid #231815;
  position: relative;
  line-height: 0;
  transition: 0.3s;
}
.more_btn a:before {
  content: " ";
  position: absolute;
  bottom: -8px;
  left: -1px;
  width: 0;
  height: 0;
  border-width: 0 9px 9px 0px;
  border-style: solid;
  border-color: transparent;
  border-bottom-color: #fff;
}
.more_btn a:after {
  content: " ";
  position: absolute;
  top: -1px;
  right: -8px;
  width: 0;
  height: 0;
  border-width: 0px 9px 9px 0px;
  border-style: solid;
  border-color: #fff;
  border-bottom-color: transparent;
}
.more_btn a:hover, .more_btn a:active {
  /*ボタンを押したとき*/
  border-bottom: 8px solid #fff;
  border-right: 8px solid #fff;
  -webkit-transform: translate(9px,9px);
  transform: translate(9px,9px);
  transition: 0.3s;
}
/*.more_btn a:active:after, .more_btn a:active:before,
.more_btn a:hover:after, .more_btn a:hover:before {
  content: none;/*ボタンを押すと線が消える*/
  /*transition: 0.3s;
}*/

.more_btn a:hover, .more_btn a:active {
  /*ボタンを押したとき*/
  border-bottom: 3px solid #231815;
  border-right: 3px solid #231815;
  -webkit-transform: translate(3px,3px);
  transform: translate(3px,3px);
  transition: 0.3s;
}
.more_btn a:active:before,.more_btn a:hover:before {
  bottom: -3px;
  border-width: 0 3px 3px 0px;
}
.more_btn a:active:after, .more_btn a:hover:after {
  right: -3px;
  border-width: 0 3px 3px 0px;
}

.more_btn a img {
  width: 350px;
}


.mincyo {
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.bold {
  font-weight: bold;
}
.normal {
  font-weight: normal;
}

.slide_open {
  opacity: 0;
  transition: opacity .3s linear;
}
.slick-initialized .slide_open {
  opacity: 1;
}


@media only screen and (max-width: 1400px) {
  .sec_title_area h2.sec_title span.title {
    font-size: 65px;
  }
}

@media only screen and (max-width: 1280px) {
  h2.line_title img {
    height: 45px;
  }
  h3 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1024px) {
  h2 {
    font-size: 28px;
  }
  h2.line_title span {
    font-size: 20px;
  }
  h2.line_title img {
    height: 40px;
    margin: 0 auto;
  }
  h3 {
    font-size: 22px;
  }
  .sec_title_area {
    margin-bottom: 50px;
  }
  .sec_title_area h2.sec_title span.title {
    font-size: 50px;
    letter-spacing: 3px;
  }
  .sec_title_area h2.sec_title span.sub {
    font-size: 16px;
  }
  .sec_title_area p {
    font-size: 18px;
  }
  .sec_p {
    font-size: 20px;
    letter-spacing: 1px;
  }
  .sec_p_s {
    font-size: 18px;
  }
}

@media only screen and (max-width: 768px) {
  h2 {
    font-size: 22px;
  }
  h2.line_title span {
    font-size: 16px;
    letter-spacing: 5px;
  }
  h2.line_title img {
    height: 30px;
  }
  .sec_title_area h2.sec_title span.title {
    font-size: 40px;
  }
  .sec_title_area h2.sec_title span.sub {
    font-size: 13px;
  }
  h3 {
    font-size: 18px;
  }
  p {
    font-size: 14px;
    line-height: 28px;
  }
  .sec_p {
    font-size: 18px;
  }
  .sec_p_s {
    font-size: 16px;
  }
  .btn a,
  .ichiran_btn a {
    font-size: 15px;
  }
  .more_btn a img {
    width: 300px;
  }
}

@media only screen and (max-width: 479px) {
  h2 {
    font-size: 18px;
    letter-spacing: 1px;
  }
  h2.line_title span {
    font-size: 15px;
    letter-spacing: 3px;
  }
  h2.line_title img {
    height: 28px;
  }
  h2.line_title::before, h2.line_title::after {
    width: 28%;
  }
  .sec_title_area {
    margin-bottom: 30px;
  }
  .sec_title_area p {
    font-size: 15px;
  }
  h3 {
    font-size: 16px;
  }
  h4 {
    font-size: 14px;
  }
  p {
    font-size: 13px;
    line-height: 22px;
  }
  .sec_p {
    font-size: 15px;
    line-height: 1.8;
  }
  .sec_p_s {
    font-size: 13px;
    letter-spacing: 0.8px;
  }
  .btn a,
  .ichiran_btn a {
    font-size: 14px;
  }
  .half_box {
    width: 100%;
  }
  .more_btn a img {
    width: 220px;
  }
}





/* -----------------------------------------------

	 main_img

----------------------------------------------- */
#movebe_top main {
  /*margin-top: 6vw;*/
}
#movebe_top .top_main {
  position: relative;
}
#movebe_top .top_main::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  border-bottom: 12vw solid #b6d2d7;
  border-left: 100vw solid transparent;
  z-index: 1;
}
#movebe_top .top_main .main_slide {
  width: 100%;
}
#movebe_top .top_main .main_slide li img {
  width: 100%;
  /*height: 880px;*/
  height: 50vw;
  object-fit: cover;
}
#movebe_top .top_main .main_text {
  position: absolute;
  left: 0;
  bottom: 20%;
  z-index: 5;
}
#movebe_top .top_main .main_text .main_p span {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  background-color: #231815;
  letter-spacing: 3px;
  padding: 12px 50px;
  margin: 10px 0;
  display: inline-block;
}
#movebe_top .mainlogo {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 350px;
  z-index: 5;
}


@media only screen and (max-width: 1280px) {
  #movebe_top .top_main .main_text .main_p span {
    font-size: 25px;
    padding: 15px 50px;
    margin: 10px 0;
  }
  #movebe_top .mainlogo {
    width: 250px;
  }
}

@media only screen and (max-width: 1024px) {
  #movebe_top .top_main .main_text .main_p span {
    font-size: 20px;
    padding: 10px 50px;
  }
  #movebe_top .mainlogo {
    width: 200px;
  }
}


@media only screen and (max-width: 768px) {
  #movebe_top main {
    margin-top: 55px;
  }
  #movebe_top .top_main .main_text {
    bottom: 10%;
  }
  #movebe_top .top_main .main_text .main_p span {
    font-size: 3.2vw;
    padding: 0.3vw 20px;
    margin: 5px 0;
  }
  #movebe_top .mainlogo {
    width: 25vw;
    right: 2%;
    bottom: -3%;
  }
}

@media only screen and (max-width: 600px) {
  #movebe_top .top_main {
    height: auto;
  }
  #movebe_top .top_main .main_slide {
    height: 100%;
  }
  .slick-list {
    height: 100%;
  }
  .slick-track {
    height: 100%
  }
  #movebe_top .top_main .main_slide li img {
    height: 100%;
    object-fit: cover;
  }

}

@media only screen and (max-width: 479px) {
  #movebe_top .mainlogo {
    width: 30vw;
    bottom: -5%;
  }
  #movebe_top .top_main .main_text {
    bottom: 2%;
  }
  #movebe_top .top_main .main_text .main_p span {
    padding: 0.3vw 15px;
    letter-spacing: 2px;
  }
}



/* -----------------------------------------------

	 top_s1

----------------------------------------------- */
#movebe_top .top_s1 {
  background-color: #b6d2d7;
  position: relative;
  height: 50vw;
}
/*#movebe_top .top_s1::after {
  content: '';
  position: absolute;
  bottom: -230px;
  left: 0;
  border-top: 12vw solid #b6d2d7;
  border-right: 100vw solid transparent;
  z-index: 1;
}*/
#movebe_top .top_s1 .s1_img01 {
  position: absolute;
  /*content: '';*/
  left: 3vw;
  top: -2vw;
  width: 50vw;
  z-index: 2;
}
#movebe_top .top_s1 .s1_img02 {
  position: absolute;
  /*content: '';*/
  right: 3vw;
  top: -6vw;
  width: 50vw;
  z-index: 1;
}





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

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

@media only screen and (max-width: 768px) {
  #movebe_top .top_s1 {
    height: 53vw;
  }
  #movebe_top .top_s1 .s1_img01 {
    top: 0vw;
  }
  #movebe_top .top_s1 .s1_img02 {
    top: -4vw;
  }
}

@media only screen and (max-width: 479px) {
  #movebe_top .top_s1 {
    height: 100vw;
  }
  #movebe_top .top_s1 .s1_img01 {
    width: 95%;
    height: 100%;
    /*left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);*/
  }
}




/* -----------------------------------------------

	 top_s2

----------------------------------------------- */
#movebe_top .top_s2 {
  position: relative;
  /*background-color: #a29d92;*/
  /*background: repeating-linear-gradient(135deg, #b9b4a9, #b9b4a9 45px, #a29d92 45px, #a29d92 140px);*/
  background: repeating-linear-gradient(135deg, #b9b4a9, #b9b4a9 0.8%, #A29D92 0.8%, #a29d92 2.8%);
}
#movebe_top .top_s2::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  border-top: 12vw solid #b6d2d7;
  border-right: 100vw solid transparent;
  z-index: 1;
}
#movebe_top .top_s2::after {
  content: '';
  position: absolute;
  background-image: url(../images/movebe_top_s2_bg.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
}
#movebe_top .top_s2 .s2_title {
  position: absolute;
  /*content: '';*/
  left: 0;
  top: 0;
  width: 100vw;
  z-index: 2;
}
#movebe_top .top_s2 .container {
  position: relative;
  height: 265vw;
}
#movebe_top .top_s2 img {
  width: unset;
}
#movebe_top .top_s2 .s2_bg {
  text-align: right;
}
#movebe_top .top_s2 .s2_bg img {
  width: 60vw;
  margin-top: 220px;
}
#movebe_top .top_s2 .s2_box {
  z-index: 3;
}
#movebe_top .top_s2 .s2_box .s2_text_area {
  display: inline-flex;
  z-index: 3;
}
#movebe_top .top_s2 .s2_box .s2_text_area .bg_white {
  background-color: #fff;
  padding: 50px 50px 50px 80px;
  display: inline-block;
  min-width: 580px;
}
#movebe_top .top_s2 .s2_box .s2_text_area .bg_white p {
  font-size: 20px;
  line-height: 2;
}
#movebe_top .top_s2 .box01 .s2_img_area {
  position: absolute;
  left: 0;
  top: 33vw;
}
#movebe_top .top_s2 .box01 .s2_img_area img {
  width: 35vw;
}
#movebe_top .top_s2 .box01 .s2_text_area {
  position: absolute;
  right: 6vw;
  top: 37vw;
}
#movebe_top .top_s2 .point_img {
  margin-bottom: 30px;
  margin-left: 30px;
}
#movebe_top .top_s2 .box02 .s2_img_area {
  position: absolute;
  right: 0;
  top: 70vw;
}
#movebe_top .top_s2 .box02 .s2_img_area img {
  width: 38vw;
}
#movebe_top .top_s2 .box02 .s2_text_area {
  position: absolute;
  left: 0;
  top: 70vw;
}
#movebe_top .top_s2 .box02 .point02 {
  margin: 0 80px 30px auto;
}
#movebe_top .top_s2 .box03 .s2_img_area {
  position: absolute;
  left: 0;
  top: 107vw;
}
#movebe_top .top_s2 .box03 .s2_img_area img {
  width: 60vw;
}
#movebe_top .top_s2 .box03 .s2_text_area {
  position: absolute;
  right: 0;
  top: 130vw;
}
#movebe_top .top_s2 .box04 .s2_img_area {
  position: absolute;
  right: 0;
  top: 160vw;
}
#movebe_top .top_s2 .box04 .s2_img_area img {
  width: 53vw;
}
#movebe_top .top_s2 .box04 .s2_text_area {
  position: absolute;
  left: 0;
  top: 145vw;
}
#movebe_top .top_s2 .box05 .s2_img_area {
  position: absolute;
  left: 0;
  top: 197vw;
}
#movebe_top .top_s2 .box05 .s2_img_area img {
  width: 100%;
}
#movebe_top .top_s2 .box05 .s2_text_area {
  position: absolute;
  right: 6vw;
  top: 227vw;
}
#movebe_top .top_s2 .box05 .s2_text_area .point05 {
  margin-right: 30px;
}
#movebe_top .top_s2 .s2_illust01 {
  position: absolute;
  top: 53vw;
  left: 20vw;
}
#movebe_top .top_s2 .s2_illust02 {
  position: absolute;
  top: 68vw;
  left: 12vw;
}
#movebe_top .top_s2 .s2_illust03 {
  position: absolute;
  top: 122vw;
  right: 6vw;
}
#movebe_top .top_s2 .s2_illust04 {
  position: absolute;
  top: 140vw;
  left: 15vw;
}
#movebe_top .top_s2 .s2_illust05 {
  position: absolute;
  top: 196vw;
  right: 12vw;
  z-index: 3;
}
#movebe_top .top_s2 .s2_illust06 {
  position: absolute;
  bottom: 17vw;
  left: 14vw;
}



@media only screen and (max-width: 1500px) {
  #movebe_top .top_s2 .s2_bg img {
    margin-top: 180px;
  }
  #movebe_top .top_s2 img {
    width: 14vw;
  }
  #movebe_top .top_s2 .point01, #movebe_top .top_s2 .point02,
  #movebe_top .top_s2 .point03, #movebe_top .top_s2 .point04,
  #movebe_top .top_s2 .point05 {
      width: 7vw;
  }
  #movebe_top .top_s2 .box02 .point02 {
    margin: 0 250px 30px auto;
  }
  #movebe_top .top_s2 .box01 .s2_text_area {
    top: 33vw;
  }
  #movebe_top .top_s2 .box03 .s2_text_area {
    top: 123vw;
  }
  #movebe_top .top_s2 .box04 .s2_text_area {
    top: 152vw;
  }
  #movebe_top .top_s2 .s2_illust03 {
    top: 115vw;
  }
  #movebe_top .top_s2 .s2_illust04 {
    top: 145vw;
  }
}

@media only screen and (max-width: 1280px) {
  #movebe_top .top_s2 .s2_box .s2_text_area .bg_white {
    padding: 40px;
    min-width: unset;
  }
  #movebe_top .top_s2 .s2_box .s2_text_area .bg_white p {
    font-size: 18px;
    line-height: 1.6;
  }
}

@media only screen and (max-width: 1024px) {
  #movebe_top .top_s2 .s2_box .s2_text_area .bg_white p {
    font-size: 16px;
  }
  #movebe_top .top_s2 .s2_bg img {
    margin-top: 130px;
  }
}

@media only screen and (max-width: 768px) {
  #movebe_top .top_s2 {
    background: repeating-linear-gradient(135deg, #b9b4a9, #b9b4a9 0.6%, #A29D92 0.6%, #a29d92 1.8%);
  }
  #movebe_top .top_s2 .s2_box .s2_text_area .bg_white {
    background-color: rgba(255,255,255,0.9);
    padding: 25px 30px;
  }
  #movebe_top .top_s2 .s2_box .s2_text_area .bg_white p {
    font-size: 14px;
  }
  #movebe_top .top_s2 .s2_box .s2_text_area .bg_white h3 {
    font-size: 16px;
  }
  #movebe_top .top_s2 .s2_bg img {
    margin-top: 100px;
  }
  #movebe_top .top_s2 .box03 .s2_text_area {
    top: 117vw;
  }
  #movebe_top .top_s2 .s2_illust02 {
    left: 5vw;
  }
  #movebe_top .top_s2 .s2_illust03 {
    z-index: 3;
    top: 111vw;
    right: 0vw;
  }
  #movebe_top .top_s2 .s2_illust06 {
    left: 4vw;
  }
  #movebe_top .top_s2 .point_img {
    margin-bottom: 10px;
  }
  #movebe_top .top_s2 .box02 .point02 {
    margin: 0 160px 10px auto;
  }
}

@media only screen and (max-width: 650px) {
  #movebe_top .top_s2 .container {
    height: unset;
    width: 100%;
    padding-bottom: 100px;
  }
  #movebe_top .top_s2 .s2_box .s2_text_area .bg_white .pc,
  #movebe_top .top_s2 .s2_box .s2_text_area .bg_white .tb {
    display: none;
  }
  #movebe_top .top_s2 .s2_box {
    background-size: 70% !important;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    background-position: top left;
  }
  #movebe_top .top_s2 .s2_box .s2_img_area,
  #movebe_top .top_s2 .s2_bg img {
    display: none;
  }
  #movebe_top .top_s2 .s2_box .s2_text_area {
    top: unset !important;
    bottom: 0 !important;
    left: unset !important;
    right: unset !important;
  }
  #movebe_top .top_s2 .s2_box .s2_text_area .bg_white {
    width: 85%;
    margin: 0 auto;
  }
  #movebe_top .top_s2 .s2_box .sp_reletive {
    position: relative;
  }
  #movebe_top .top_s2 .point_img,
  #movebe_top .top_s2 .box02 .point02,
  #movebe_top .top_s2 .s2_text_area .point05 {
    position: absolute;
    right: 15vw;
    top: -5vw;
    width: 70px;
    margin: 0 !important;
  }
  #movebe_top .top_s2 .s2_bg {
    background-image: url(../images/movebe_top_s2_mainimg.png);
    background-repeat: no-repeat;
    background-size: 90%;
    background-position: right;
    height: 80vw;
  }
  #movebe_top .top_s2 .box01 {
    background-image: url(../images/movebe_top_s2_img01.png);
    margin-top: -30vw;
    height: 80vw;
  }
  #movebe_top .top_s2 .box02 {
    background-image: url(../images/movebe_top_s2_img02.png);
    background-position: top right;
    background-size: 60% !important;
    height: 93vw;
  }
  #movebe_top .top_s2 .box03 {
    background-image: url(../images/movebe_top_s2_img03.png);
    height: 60vw;
  }
  #movebe_top .top_s2 .box04 {
    background-image: url(../images/movebe_top_s2_img04.png);
    background-position: top right;
    height: 73vw;
  }
  #movebe_top .top_s2 .box05 {
    background-image: url(../images/movebe_top_s2_img05.png);
    background-size: 100% !important;
    height: 70vw;
  }
  #movebe_top .top_s2 img {
    width: 18vw;
  }
  #movebe_top .top_s2 .s2_illust01 {
    top: 18vw;
    left: 65vw;
  }
  #movebe_top .top_s2 .s2_illust02 {
    top: 35vw;
    left: 25vw;
  }
  #movebe_top .top_s2 .s2_illust02 {
    top: 35vw;
    left: 25vw;
  }
  #movebe_top .top_s2 .s2_illust03 {
    top: 8vw;
    right: 0vw;
  }
  #movebe_top .top_s2 .s2_illust04 {
    top: 10vw;
    left: 5vw;
  }
  #movebe_top .top_s2 .s2_illust05 {
    top: 2vw;
  }
  #movebe_top .top_s2 .s2_illust06 {
    bottom: -10vw;
    left: 76vw;
  }
}

@media only screen and (max-width: 479px) {
  #movebe_top .top_s2 .s2_box .s2_text_area .bg_white {
    padding: 35px 20px 20px 20px;
  }
  #movebe_top .top_s2 .s2_box .s2_text_area .bg_white h3 {
    margin-bottom: 10px;
  }
  #movebe_top .top_s2 .s2_box .s2_text_area .bg_white p {
    font-size: 13px;
  }
  #movebe_top .top_s2 .box02 {
    background-size: 70% !important;
  }
  #movebe_top .top_s2 .point_img,
  #movebe_top .top_s2 .box02 .point02,
  #movebe_top .top_s2 .s2_text_area .point05 {
    width: 55px;
    top: -8vw;
  }
  #movebe_top .top_s2 img {
    width: 22vw;
  }
  #movebe_top .top_s2 .box01 {
    height: 95vw;
  }
  #movebe_top .top_s2 .box02 {
    height: 113vw;
  }
  #movebe_top .top_s2 .box03 {
    height: 70vw;
  }
  #movebe_top .top_s2 .box04 {
    height: 88vw;
  }
  #movebe_top .top_s2 .box05 {
    height: 95vw;
  }
  #movebe_top .top_s2 .s2_illust02 {
    left: 6vw;
  }
  #movebe_top .top_s2 .s2_illust03 {
    top: -4vw;
  }
}

@media only screen and (max-width: 400px) {
  #movebe_top .top_s2 .box01 {
    height: 105vw;
  }
  #movebe_top .top_s2 .box02 {
    height: 132vw;
  }
  #movebe_top .top_s2 .box03 {
    height: 80vw;
  }
  #movebe_top .top_s2 .box04 {
    height: 105vw;
  }
  #movebe_top .top_s2 .box05 {
    height: 112vw;
  }
}





/* -----------------------------------------------

	 top_s3

----------------------------------------------- */
#movebe_top .top_s3 {
  background-color: #fbf4e6;
  padding: 100px 0 300px;
  position: relative;
  text-align: center;
}
#movebe_top .top_s3::after {
  content: '';
  position: absolute;
  background-image: url(../images/movebe_top_s3_bg.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}
#movebe_top .top_s3 .sec_title_area img {
  width: 250px;
  margin: 0 20px 20px 0;
}
.sec_title_area .line_sub {
  border-top: 2px solid #231815;
  border-bottom: 2px solid #231815;
  padding: 15px 20px;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
}
#movebe_top .top_s3 .sec_p {
  margin-bottom: 80px;
}


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

@media only screen and (max-width: 1024px) {
  #movebe_top .top_s3 {
    padding: 100px 0 170px;
  }
  #movebe_top .top_s3 .sec_title_area img {
    width: 180px;
  }
}

@media only screen and (max-width: 768px) {
  #movebe_top .top_s3 {
    padding: 80px 0 130px;
  }
  #movebe_top .top_s3 .s3_img {
    width: 80%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 479px) {
  #movebe_top .top_s3 {
    padding: 50px 0 100px;
  }
  #movebe_top .top_s3 .sec_p {
    margin-bottom: 50px;
  }
  #movebe_top .top_s3 .sec_title_area .line_sub {
    font-size: 16px;
    padding: 10px;
  }
  #movebe_top .top_s3 .sec_title_area .flex {
    -webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
    margin-bottom: 20px;
  }
  #movebe_top .top_s3 .sec_title_area img {
    width: 120px;
    margin: 0 auto 20px;
  }
  #movebe_top .top_s3 .s3_img {
    width: 100%;
  }
}




/* -----------------------------------------------

	 top_s4

----------------------------------------------- */
#movebe_top .top_s4 {
  padding: 100px 0;
  text-align: center;
}
.works_list {
  margin: 50px 0 80px;
  gap: 4%;
}
.works_list .works_box {
  background-color: #fff;
  padding: 20px;
  box-shadow: 3px 3px 10px #ccc;
  width: 22%;
  margin-bottom: 50px;
}
.works_list .works_box .eyecatch {
  height: 15vw;
  width: 100%;
  margin-bottom: 10px;
}
.works_list .works_box .eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.works_list .works_box p {
  font-size: 15px;
  text-align: left;
}
.works_list .works_box p.ft {
  position: relative;
}
.works_list .works_box p.ft::after {
  content: '▶';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 20px;
}
.works_list .works_box .works_title {
  font-weight: bold;
  font-size: 18px;
  border-bottom: 1px solid rgba(35,24,21,0.5);
  padding: 5px 0;
  margin-bottom: 20px;
}





@media only screen and (max-width: 1280px) {
  .works_list .works_box {
    width: 31%;
  }
}

@media only screen and (max-width: 1024px) {
  .works_list .works_box {
    width: 47%;
  }
  .works_list .works_box .eyecatch {
    height: 32vw;
  }
}

@media only screen and (max-width: 768px) {
  #movebe_top .top_s4 {
    padding: 80px 0;
  }
  .works_list {
    margin: 50px 0 40px;
  }
  .works_list .works_box {
    padding: 20px;
  }
  .works_list .works_box p.ft::after {
    font-size: 16px;
  }
  .works_list .works_box .works_title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .works_list .works_box p {
    font-size: 13px;
  }
}

@media only screen and (max-width: 479px) {
  #movebe_top .top_s4 {
    padding: 50px 0;
  }
  .works_list {
    margin: 30px 0;
  }
  .works_list .works_box {
    padding: 12px;
    width: 48%;
    margin-bottom: 30px;
  }
  .works_list .works_box .works_title {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0;
    margin-bottom: 5px;
  }
  .works_list .works_box p {
    font-size: 11px;
  }
  .works_list .works_box p.ft::after {
    font-size: 13px;
  }
}





/* -----------------------------------------------

	 top_s5

----------------------------------------------- */
#movebe_top .top_s5 {
  padding: 100px 0;
  position: relative;
}
#movebe_top .top_s5::after {
  content: '';
  position: absolute;
  background-image: url(../images/movebe_top_s6_bg.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 72px;
}
#movebe_top .top_s5 .sec_p_s {
  margin-bottom: 80px;
}
#movebe_top .top_s5 .top_s5_box {
  background-repeat: no-repeat;
  background-size: 100%;
  /*height: 620px;*/
  max-width: 1540px;
  width: 90%;
  margin: 0 auto 80px;
  padding: 80px;
}
#movebe_top .top_s5 .pickup01 {
  background-image: url(../images/movebe_top_s5_bg01.png);
}
#movebe_top .top_s5 .pickup02 {
  background-image: url(../images/movebe_top_s5_bg02.png);
}
#movebe_top .top_s5 .top_s5_box p {
  line-height: 2.2;
}
#movebe_top .top_s5 .flex {
  width: 75%;
  gap: 15px;
  margin-top: 30px;
}
#movebe_top .top_s5 .flex img {
  width: 32%;
}
#movebe_top .top_s5 .btn_area {
  max-width: 400px;
  width: 90%;
  margin: 50px auto;
}
#movebe_top .top_s5 .btn_area .bg_navy {
  text-align: center;
  display: block;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
}



@media only screen and (max-width: 1280px) {
  #movebe_top .top_s5 .sec_p_s {
    width: 90%;
    margin: 0 auto 80px;
  }
  #movebe_top .top_s5 .flex {
    margin-top: 20px;
  }
  #movebe_top .top_s5 .top_s5_box {
    height: auto;
    padding: 30px 60px;
  }
  #movebe_top .top_s5 .top_s5_box p {
    line-height: 1.8;
  }
}

@media only screen and (max-width: 1024px) {
  #movebe_top .top_s5 .top_s5_box {
    background-position: center;
    background-size: contain;
    width: 96%;
    margin: 0 auto 50px;
  }
  #movebe_top .top_s5 .flex {
    width: 80%;
  }
}

@media only screen and (max-width: 768px) {
  #movebe_top .top_s5 {
    padding: 80px 0;
  }
  #movebe_top .top_s5 .sec_p_S {
    margin: 0 auto 50px;
  }
  #movebe_top .top_s5 .top_s5_box {
    height: 63vw;
    padding: 6vw 30px;
  }
  #movebe_top .top_s5 .pickup01 {
    background-image: url(../images/movebe_top_s5_bg01_sp.png);
  }
  #movebe_top .top_s5 .pickup02 {
    background-image: url(../images/movebe_top_s5_bg02_sp.png);
  }
  #movebe_top .top_s5 .flex {
    width: 100%;
    margin-top: 50px;
  }
  #movebe_top .top_s5 .flex img {
    width: 30%;
  }
  #movebe_top .top_s5 .top_s5_box h3 {
    margin-bottom: 10px;
  }
  #movebe_top .top_s5 .top_s5_box p {
    line-height: 1.5;
  }
}

@media only screen and (max-width: 600px) {
  #movebe_top .top_s5 .flex {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 479px) {
  #movebe_top .top_s5 {
    padding: 50px 0;
  }
  #movebe_top .top_s5 .top_s5_box {
    padding: 6vw 20px;
    margin: 0 auto 30px;
  }
  #movebe_top .top_s5 .flex {
    margin-top: 5%;
    gap: 1.2%;
  }
  #movebe_top .top_s5 .flex img {
    width: 32.5%;
  }
  #movebe_top .top_s5 .btn_area {
    margin: 30px auto;
  }
  #movebe_top .top_s5 .btn_area .bg_navy {
    font-size: 16px;
  }
}

@media only screen and (max-width: 400px) {
  #movebe_top .top_s5 .top_s5_box {
    padding: 5vw 15px;
  }
}


/* -----------------------------------------------

	 top_s6

----------------------------------------------- */
#movebe_top .top_s6 {
  padding: 150px 0 100px;
  position: relative;
  background-color: #B8B3A9;
}
#movebe_top .top_s6 .flow_area {
  padding: 0 15%;
}
#movebe_top .top_s6 .flow_area .flow_box {
  display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  gap: 8%;
  margin-bottom: 2%;
}
#movebe_top .top_s6 .flow_area .flow_box p.kome {
  margin-top: 5px;
}
#movebe_top .top_s6 .flow_area .flow02 {
  margin-left: 10%;
}
#movebe_top .top_s6 .flow_area .flow_box .flow_img {
  width: 280px;
  position: relative;
  z-index: 10;
}
#movebe_top .top_s6 .flow_area .flow_box .flow_img img {

}
#movebe_top .top_s6 .flow_area .flow_box .flow_img::after {
  content: '';
  position: absolute;
  border-left: solid 8px #F2EE71;
  height: 160px;
}
#movebe_top .top_s6 .flow_area .flow_box:last-child .flow_img::after {
  display: none;
}
#movebe_top .top_s6 .flow_area .flow01 .flow_img::after {
  right: 50px;
  bottom: -130px;
  transform: rotate(-30deg);
}
#movebe_top .top_s6 .flow_area .flow02 .flow_img::after {
  left: 50px;
  bottom: -130px;
  transform: rotate(30deg);
}
#movebe_top .top_s6 .flow_area .flow_box .flow_text {
  z-index: 10;
}
#movebe_top .top_s6 .flow_area .flow_box .flow_text h3 {
  color: #fff;
  background-color: #221814;
  text-align: center;
  font-size: 30px;
  padding: 0 80px;
  display: inline-block;
}
#movebe_top .top_s6 .s6_illust01 {
  width: unset;
  position: absolute;
  top: 10%;
  right: 22%;
  z-index: 0;
}
#movebe_top .top_s6 .s6_illust02 {
  width: unset;
  position: absolute;
  top: 35%;
  right: 20%;
  z-index: 0;
}
#movebe_top .top_s6 .s6_illust03 {
  width: unset;
  position: absolute;
  top: 73%;
  left: 8%;
  z-index: 0;
}
#movebe_top .top_s6 .s6_illust04 {
  width: unset;
  position: absolute;
  top: 83%;
  right: 20%;
  z-index: 0;
}




@media only screen and (max-width: 1500px) {
  #movebe_top .top_s6 .flow_area {
    padding: 0 5%;
  }
  #movebe_top .top_s6 .s6_illust01, #movebe_top .top_s6 .s6_illust02,
  #movebe_top .top_s6 .s6_illust03, #movebe_top .top_s6 .s6_illust04 {
    width: 18%;
  }
  #movebe_top .top_s6 .s6_illust03 {
    left: 3%;
  }
}

@media only screen and (max-width: 1280px) {
  #movebe_top .top_s6 {
    padding: 100px 0;
  }
  #movebe_top .top_s6 .flow_area .flow_box{
    gap: 5%;
  }
  #movebe_top .top_s6 .flow_area .flow_box .flow_img {
    width: 250px;
  }
  #movebe_top .top_s6 .flow_area .flow_box .flow_text h3 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 1024px) {
  #movebe_top .top_s6 .flow_area {
    padding: 0 3%;
  }
  #movebe_top .top_s6 .flow_area .flow_box .flow_img {
    width: 200px;
  }
  #movebe_top .top_s6 .flow_area .flow01 .flow_img::after {
    right: 20px;
  }
  #movebe_top .top_s6 .flow_area .flow02 .flow_img::after {
    left: 20px;
  }
  #movebe_top .top_s6 .flow_area .flow_box .flow_text h3 {
    font-size: 25px;
  }
}


@media only screen and (max-width: 768px) {
  #movebe_top .top_s6 {
    padding: 80px 0;
  }
  #movebe_top .top_s6 .flow_area .flow_box {
    gap: 3%;
  }
  #movebe_top .top_s6 .flow_area .flow_box .flow_img {
    width: 150px;
  }
  #movebe_top .top_s6 .flow_area .flow_box .flow_img::after {
    border-left: solid 5px #F2EE71;
    height: 100px;
  }
  #movebe_top .top_s6 .flow_area .flow01 .flow_img::after {
    right: 30px;
    bottom: -80px;
  }
  #movebe_top .top_s6 .flow_area .flow02 .flow_img::after {
    left: 30px;
    bottom: -80px;
  }
  #movebe_top .top_s6 .flow_area .flow_box .flow_text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    padding: 0 30px;
  }
  #movebe_top .top_s6 .flow_area .flow_box .flow_text .sec_p {
    line-height: 1.8;
    font-size: 16px;
  }
}

@media only screen and (max-width: 690px) {
  #movebe_top .top_s6 .flow_area .flow_box .flow_img {
    width: 120px;
  }
  #movebe_top .top_s6 .flow_area .flow_box .flow_img::after {
    border-left: solid 4px #F2EE71;
    height: 65px;
  }
  #movebe_top .top_s6 .flow_area .flow01 .flow_img::after {
    right: 25px;
    bottom: -50px;
  }
  #movebe_top .top_s6 .flow_area .flow02 .flow_img::after {
    left: 25px;
    bottom: -50px;
  }
  #movebe_top .top_s6 .flow_area .flow_box .flow_text h3 {
    font-size: 18px;
  }
  #movebe_top .top_s6 .flow_area .flow_box .flow_text .sec_p {
    line-height: 1.6;
    font-size: 14px;
  }
  #movebe_top .top_s6 .flow_area .flow_box .flow_text .kome {
    font-size: 11px;
  }
}

@media only screen and (max-width: 479px) {
  #movebe_top .top_s6 {
    padding: 50px 0 80px;
  }
  #movebe_top .top_s6 .flow_area {
    padding: 0 4%;
  }
  #movebe_top .top_s6 .flow_area .flow02 {
    margin-left: 0;
  }
  #movebe_top .top_s6 .flow_area .flow_box {
    -webkit-box-align: start;
  	-ms-flex-align: start;
  	align-items: flex-start;
    margin-bottom: 30px;
  }
  #movebe_top .top_s6 .flow_area .flow_box .flow_img {
    width: 100px;
  }
  #movebe_top .top_s6 .flow_area .flow_box .flow_img::after {
    display: none;
  }
  #movebe_top .top_s6 .flow_area .flow_box .flow_text {
    width: 75%;
  }
  #movebe_top .top_s6 .flow_area .flow_box .flow_text h3 {
    font-size: 14px;
    padding: 0 20px;
  }
  #movebe_top .top_s6 .flow_area .flow_box .flow_text .kome {
    display: none;
  }
  #movebe_top .top_s6 .flow_area .flow_box .flow_text .sec_p_s {
    font-size: 12.5px;
    letter-spacing: -1px;
  }
  #movebe_top .top_s6 .s6_illust01 {
    top: 8%;
    right: 5%;
  }
  #movebe_top .top_s6 .s6_illust02 {
    top: 30%;
    right: 5%;
  }
  #movebe_top .top_s6 .s6_illust03 {
    top: 67%;
    left: unset;
    right: 10%;
    width: 28%;
  }
  #movebe_top .top_s6 .s6_illust04 {
    top: 80%;
    right: 8%;
  }
}






/* -----------------------------------------------

	 top_s7

----------------------------------------------- */
#movebe_top .top_s7 .bg {
  background-color: #B8B3A9;
  position: relative;
  line-height: 0;
}
#movebe_top .top_s7 .s7_text {
  width: 38%;
  position: absolute;
  right: 0;
  bottom: 10%;
  text-align: center;
}
#movebe_top .top_s7 .s7_text h2.line_title::before,
#movebe_top .top_s7 .s7_text h2.line_title::after {
  display: none;
}
#movebe_top .top_s7 .s7_text h2.line_title img {
  max-width: 500px;
  width: 100%;
  height: auto;
}
#movebe_top .top_s7 .s7_text .more_btn {
  margin-top: 50px;
}
#movebe_top .top_s7 .s7_text .more_btn a:before {
  border-bottom-color: #d4cfc4;
}
#movebe_top .top_s7 .s7_text .more_btn a:after {
  border-color: #d4cfc4;
  border-bottom-color: transparent;
}
#movebe_top .top_s7 .bg_w {
  padding: 100px 0;
  text-align: center;
}
#movebe_top .top_s7 .bg_w .more_btn {
  margin-top: 50px;
}

@media only screen and (max-width: 1280px) {
  #movebe_top .top_s7 .bg_w .sec_p {
    width: 90%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1024px) {
  #movebe_top .top_s7 .s7_text .more_btn a img {
    width: 250px;
  }
}

@media only screen and (max-width: 900px) {
  #movebe_top .top_s7 .s7_text .more_btn a img {
    width: 220px;
  }
}

@media only screen and (max-width: 768px) {
  #movebe_top .top_s7 .bg_w {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 650px) {
  #movebe_top .top_s7 .s7_text {
    width: 50%;
    bottom: -5%;
  }
  #movebe_top .top_s7 .s7_text .more_btn a:before {
    border-bottom-color: #a3a09b;
  }
}

@media only screen and (max-width: 479px) {
  #movebe_top .top_s7 .s7_text {
    width: 100%;
  }
  #movebe_top .top_s7 .s7_text h2.line_title img {
    max-width: unset;
    height: 28px;
    width: auto;
  }
  #movebe_top .top_s7 .s7_text .more_btn {
    margin-top: 120px;
  }
  #movebe_top .top_s7 .bg_w {
    padding: 50px 0;
  }
}




/* -----------------------------------------------

	 top_s8

----------------------------------------------- */
#movebe_top .top_s8 {
  padding: 80px 0 150px;
}
#movebe_top .top_s8 .map {
  width: 50%;
}
#movebe_top .top_s8 .map iframe {
  width: 100%;
  height: 550px;
}
#movebe_top .top_s8 .address {
  width: 50%;
  padding: 0 5%;
}
#movebe_top .top_s8 .address dl dt, #movebe_top .top_s8 .address dl dd {
  font-size: 25px;
  margin: 15px 0;
}
#movebe_top .top_s8 .address dl dt {
  width: 20%;
  margin-right: 5% !important;
  text-align: center;
  padding: 5px 0;
}
#movebe_top .top_s8 .address dl dd {
  width: 75%;
}
#movebe_top .top_s8 .address p {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  line-height: 2;
  padding: 30px 0;
  border-radius: 50px;
  width: 80%;
  margin-top: 50px;
}






@media only screen and (max-width: 1280px) {
  #movebe_top .top_s8 .map {
    width: 45%;
  }
  #movebe_top .top_s8 .address {
    width: 55%;
    padding: 0 3%;
  }
  #movebe_top .top_s8 .address p {
    width: 100%;
    font-size: 22px;
    line-height: 1.8;
  }
  #movebe_top .top_s8 .address dl dt, #movebe_top .top_s8 .address dl dd {
    font-size: 22px;
  }
  #movebe_top .top_s8 .address dl dt {
    width: 25%;
  }
  #movebe_top .top_s8 .address dl dd {
    width: 70%;
  }
}

@media only screen and (max-width: 1024px) {
  #movebe_top .top_s8 {
    padding: 80px 0 100px;
  }
  #movebe_top .top_s8 .map iframe {
    height: 450px;
  }
  #movebe_top .top_s8 .address p {
    font-size: 20px;
    margin-top: 30px;
    padding: 20px 0;
    border-radius: 40px;
  }
  #movebe_top .top_s8 .address dl dt, #movebe_top .top_s8 .address dl dd {
    font-size: 20px;
  }
}

@media only screen and (max-width: 768px) {
  #movebe_top .top_s8 .map {
    width: 100%;
    margin-bottom: 30px;
  }
  #movebe_top .top_s8 .map iframe {
    height: 350px;
  }
  #movebe_top .top_s8 .address {
    width: 100%;
  }
  #movebe_top .top_s8 .address p {
    font-size: 18px;
  }
  #movebe_top .top_s8 .address dl dt, #movebe_top .top_s8 .address dl dd {
    font-size: 18px;
  }
}

@media only screen and (max-width: 479px) {
  #movebe_top .top_s8 {
    padding: 50px 0;
  }
  #movebe_top .top_s8 .address p {
    font-size: 15px;
    padding: 10px 0;
    border-radius: 20px;
  }
  #movebe_top .top_s8 .address dl dt, #movebe_top .top_s8 .address dl dd {
    font-size: 15px;
    margin: 10px 0;
  }
}




/* -----------------------------------------------

	 *******

----------------------------------------------- */

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

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

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

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